diff --git a/docs/api/alerting/list_rule_types.asciidoc b/docs/api/alerting/list_rule_types.asciidoc index 77ca8601a6e8..98016c8cf82f 100644 --- a/docs/api/alerting/list_rule_types.asciidoc +++ b/docs/api/alerting/list_rule_types.asciidoc @@ -4,7 +4,11 @@ List rule types ++++ -Retrieve a list of alerting rule types. +Retrieve a list of alerting rule types that the user is authorized to access. + +Each rule type includes a list of consumer features. Within these features, users are authorized to perform either `read` or `all` operations on rules of that type. This helps determine which rule types users can read, but not create or modify. + +NOTE: Some rule types are limited to specific features. These rule types are not available when <> in <>. [[list-rule-types-api-request]] ==== Request diff --git a/docs/developer/getting-started/monorepo-packages.asciidoc b/docs/developer/getting-started/monorepo-packages.asciidoc index 86f9f7562434..217bb0354934 100644 --- a/docs/developer/getting-started/monorepo-packages.asciidoc +++ b/docs/developer/getting-started/monorepo-packages.asciidoc @@ -62,7 +62,9 @@ yarn kbn watch-bazel === List of Already Migrated Packages to Bazel - @elastic/datemath +- @elastic/safer-lodash-set - @kbn/apm-utils +- @kbn/babel-code-parser - @kbn/babel-preset - @kbn/config-schema - @kbn/std diff --git a/docs/developer/plugin-list.asciidoc b/docs/developer/plugin-list.asciidoc index ac84fe65895a..7d7d2c124687 100644 --- a/docs/developer/plugin-list.asciidoc +++ b/docs/developer/plugin-list.asciidoc @@ -343,6 +343,7 @@ Failure to have auth enabled in Kibana will make for a broken UI. UI-based error |{kib-repo}blob/{branch}/x-pack/plugins/cloud/README.md[cloud] |The cloud plugin adds cloud specific features to Kibana. +The client-side plugin configures following values: |{kib-repo}blob/{branch}/x-pack/plugins/console_extensions/README.md[consoleExtensions] diff --git a/package.json b/package.json index b21ad0021656..6af5c256c57f 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ "dependencies": { "@elastic/apm-rum": "^5.6.1", "@elastic/apm-rum-react": "^1.2.5", - "@elastic/charts": "28.2.0", + "@elastic/charts": "29.0.0", "@elastic/datemath": "link:bazel-bin/packages/elastic-datemath/npm_module", "@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@^8.0.0-canary.4", "@elastic/ems-client": "7.13.0", @@ -109,7 +109,7 @@ "@elastic/numeral": "^2.5.0", "@elastic/react-search-ui": "^1.5.1", "@elastic/request-crypto": "1.1.4", - "@elastic/safer-lodash-set": "link:packages/elastic-safer-lodash-set", + "@elastic/safer-lodash-set": "link:bazel-bin/packages/elastic-safer-lodash-set/npm_module", "@elastic/search-ui-app-search-connector": "^1.5.0", "@elastic/ui-ace": "0.2.3", "@hapi/boom": "^9.1.1", @@ -437,7 +437,7 @@ "@elastic/makelogs": "^6.0.0", "@istanbuljs/schema": "^0.1.2", "@jest/reporters": "^26.6.2", - "@kbn/babel-code-parser": "link:packages/kbn-babel-code-parser", + "@kbn/babel-code-parser": "link:bazel-bin/packages/kbn-babel-code-parser/npm_module", "@kbn/babel-preset": "link:bazel-bin/packages/kbn-babel-preset/npm_module", "@kbn/cli-dev-mode": "link:packages/kbn-cli-dev-mode", "@kbn/dev-utils": "link:packages/kbn-dev-utils", diff --git a/packages/BUILD.bazel b/packages/BUILD.bazel index 5c3172a6c636..7f5182e90710 100644 --- a/packages/BUILD.bazel +++ b/packages/BUILD.bazel @@ -4,7 +4,9 @@ filegroup( name = "build", srcs = [ "//packages/elastic-datemath:build", + "//packages/elastic-safer-lodash-set:build", "//packages/kbn-apm-utils:build", + "//packages/kbn-babel-code-parser:build", "//packages/kbn-babel-preset:build", "//packages/kbn-config-schema:build", "//packages/kbn-std:build", diff --git a/packages/elastic-datemath/BUILD.bazel b/packages/elastic-datemath/BUILD.bazel index bc0c1412ef5f..f3eb4548088c 100644 --- a/packages/elastic-datemath/BUILD.bazel +++ b/packages/elastic-datemath/BUILD.bazel @@ -54,7 +54,7 @@ ts_project( js_library( name = PKG_BASE_NAME, - srcs = [], + srcs = NPM_MODULE_EXTRA_FILES, deps = [":tsc"] + DEPS, package_name = PKG_REQUIRE_NAME, visibility = ["//visibility:public"], @@ -62,7 +62,6 @@ js_library( pkg_npm( name = "npm_module", - srcs = NPM_MODULE_EXTRA_FILES, deps = [ ":%s" % PKG_BASE_NAME, ] diff --git a/packages/elastic-safer-lodash-set/BUILD.bazel b/packages/elastic-safer-lodash-set/BUILD.bazel new file mode 100644 index 000000000000..cba719ee4f0e --- /dev/null +++ b/packages/elastic-safer-lodash-set/BUILD.bazel @@ -0,0 +1,65 @@ +load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm") + +PKG_BASE_NAME = "elastic-safer-lodash-set" +PKG_REQUIRE_NAME = "@elastic/safer-lodash-set" + +SOURCE_FILES = glob( + [ + "fp/**/*", + "lodash/**/*", + "index.js", + "set.js", + "setWith.js", + ], + exclude = [ + "**/*.d.ts" + ], +) + +TYPE_FILES = glob([ + "fp/**/*.d.ts", + "index.d.ts", + "set.d.ts", + "setWith.d.ts", +]) + +SRCS = SOURCE_FILES + TYPE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "package.json", + "README.md", +] + +DEPS = [ + "@npm//lodash", +] + +js_library( + name = PKG_BASE_NAME, + srcs = NPM_MODULE_EXTRA_FILES + [ + ":srcs", + ], + deps = DEPS, + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [ + ":%s" % PKG_BASE_NAME, + ] +) + +filegroup( + name = "build", + srcs = [ + ":npm_module", + ], + visibility = ["//visibility:public"], +) diff --git a/packages/elastic-safer-lodash-set/tsconfig.json b/packages/elastic-safer-lodash-set/tsconfig.json index 6517e5c60ee0..5a29c6ff2dd8 100644 --- a/packages/elastic-safer-lodash-set/tsconfig.json +++ b/packages/elastic-safer-lodash-set/tsconfig.json @@ -1,7 +1,7 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "tsBuildInfoFile": "../../build/tsbuildinfo/packages/elastic-safer-lodash-set" + "incremental": false, }, "include": [ "**/*", diff --git a/packages/kbn-apm-config-loader/package.json b/packages/kbn-apm-config-loader/package.json index d198ee57c619..b9dc324ec5e7 100644 --- a/packages/kbn-apm-config-loader/package.json +++ b/packages/kbn-apm-config-loader/package.json @@ -9,8 +9,5 @@ "build": "../../node_modules/.bin/tsc", "kbn:bootstrap": "yarn build", "kbn:watch": "yarn build --watch" - }, - "dependencies": { - "@elastic/safer-lodash-set": "link:../elastic-safer-lodash-set" } } \ No newline at end of file diff --git a/packages/kbn-apm-utils/BUILD.bazel b/packages/kbn-apm-utils/BUILD.bazel index 63adf2b77b51..335494bea45f 100644 --- a/packages/kbn-apm-utils/BUILD.bazel +++ b/packages/kbn-apm-utils/BUILD.bazel @@ -53,7 +53,7 @@ ts_project( js_library( name = PKG_BASE_NAME, - srcs = [], + srcs = NPM_MODULE_EXTRA_FILES, deps = [":tsc"] + DEPS, package_name = PKG_REQUIRE_NAME, visibility = ["//visibility:public"], @@ -61,7 +61,6 @@ js_library( pkg_npm( name = "npm_module", - srcs = NPM_MODULE_EXTRA_FILES, deps = [ ":%s" % PKG_BASE_NAME, ] diff --git a/packages/kbn-babel-code-parser/BUILD.bazel b/packages/kbn-babel-code-parser/BUILD.bazel new file mode 100644 index 000000000000..3c811f0bd09f --- /dev/null +++ b/packages/kbn-babel-code-parser/BUILD.bazel @@ -0,0 +1,71 @@ +load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm") +load("@npm//@babel/cli:index.bzl", "babel") + +PKG_BASE_NAME = "kbn-babel-code-parser" +PKG_REQUIRE_NAME = "@kbn/babel-code-parser" + +SOURCE_FILES = glob( + [ + "src/**/*", + ], + exclude = [ + "**/*.test.*" + ], +) + +SRCS = SOURCE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "package.json", + "README.md", +] + +DEPS = [ + "//packages/kbn-babel-preset", + "@npm//@babel/parser", + "@npm//@babel/traverse", + "@npm//lodash", +] + +babel( + name = "target", + data = [ + ":srcs", + ".babelrc", + ] + DEPS, + output_dir = True, + args = [ + "./%s/src" % package_name(), + "--out-dir", + "$(@D)", + "--quiet" + ], +) + +js_library( + name = PKG_BASE_NAME, + srcs = NPM_MODULE_EXTRA_FILES, + deps = [":target"] + DEPS, + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [ + ":%s" % PKG_BASE_NAME, + ] +) + +filegroup( + name = "build", + srcs = [ + ":npm_module", + ], + visibility = ["//visibility:public"], +) diff --git a/packages/kbn-babel-code-parser/package.json b/packages/kbn-babel-code-parser/package.json index a5e05da6f8ee..da55565c6076 100755 --- a/packages/kbn-babel-code-parser/package.json +++ b/packages/kbn-babel-code-parser/package.json @@ -8,10 +8,5 @@ "repository": { "type": "git", "url": "https://github.com/elastic/kibana/tree/master/packages/kbn-babel-code-parser" - }, - "scripts": { - "build": "../../node_modules/.bin/babel src --out-dir target", - "kbn:bootstrap": "yarn build --quiet", - "kbn:watch": "yarn build --watch" } } diff --git a/packages/kbn-babel-preset/BUILD.bazel b/packages/kbn-babel-preset/BUILD.bazel index 13542ed6e73a..06b788010bdf 100644 --- a/packages/kbn-babel-preset/BUILD.bazel +++ b/packages/kbn-babel-preset/BUILD.bazel @@ -38,7 +38,7 @@ DEPS = [ js_library( name = PKG_BASE_NAME, - srcs = [ + srcs = NPM_MODULE_EXTRA_FILES + [ ":srcs", ], deps = DEPS, @@ -48,7 +48,6 @@ js_library( pkg_npm( name = "npm_module", - srcs = NPM_MODULE_EXTRA_FILES, deps = [ ":%s" % PKG_BASE_NAME, ] diff --git a/packages/kbn-config/package.json b/packages/kbn-config/package.json index 9bf491e30087..1611da9aa60d 100644 --- a/packages/kbn-config/package.json +++ b/packages/kbn-config/package.json @@ -10,7 +10,6 @@ "kbn:bootstrap": "yarn build" }, "dependencies": { - "@elastic/safer-lodash-set": "link:../elastic-safer-lodash-set", "@kbn/logging": "link:../kbn-logging" }, "devDependencies": { diff --git a/packages/kbn-optimizer/limits.yml b/packages/kbn-optimizer/limits.yml index 1d1938749413..2a7a02b8e7f2 100644 --- a/packages/kbn-optimizer/limits.yml +++ b/packages/kbn-optimizer/limits.yml @@ -9,7 +9,7 @@ pageLoadAssetSize: charts: 195358 cloud: 21076 console: 46091 - core: 413500 + core: 414000 crossClusterReplication: 65408 dashboard: 374194 dashboardEnhanced: 65646 diff --git a/packages/kbn-tinymath/BUILD.bazel b/packages/kbn-tinymath/BUILD.bazel index ae029c88774e..2596a30ea2ef 100644 --- a/packages/kbn-tinymath/BUILD.bazel +++ b/packages/kbn-tinymath/BUILD.bazel @@ -45,7 +45,7 @@ peggy( js_library( name = PKG_BASE_NAME, - srcs = [ + srcs = NPM_MODULE_EXTRA_FILES + [ ":srcs", ":grammar" ], @@ -56,7 +56,6 @@ js_library( pkg_npm( name = "npm_module", - srcs = NPM_MODULE_EXTRA_FILES, deps = [ ":%s" % PKG_BASE_NAME, ] diff --git a/src/core/server/http/http_config.test.ts b/src/core/server/http/http_config.test.ts index 2a140388cc18..56095336d970 100644 --- a/src/core/server/http/http_config.test.ts +++ b/src/core/server/http/http_config.test.ts @@ -280,6 +280,34 @@ test('accepts any type of objects for custom headers', () => { expect(() => httpSchema.validate(obj)).not.toThrow(); }); +test('forbids the "location" custom response header', () => { + const httpSchema = config.schema; + const obj = { + customResponseHeaders: { + location: 'string', + Location: 'string', + lOcAtIoN: 'string', + }, + }; + expect(() => httpSchema.validate(obj)).toThrowErrorMatchingInlineSnapshot( + `"[customResponseHeaders]: The following custom response headers are not allowed to be set: location, Location, lOcAtIoN"` + ); +}); + +test('forbids the "refresh" custom response header', () => { + const httpSchema = config.schema; + const obj = { + customResponseHeaders: { + refresh: 'string', + Refresh: 'string', + rEfReSh: 'string', + }, + }; + expect(() => httpSchema.validate(obj)).toThrowErrorMatchingInlineSnapshot( + `"[customResponseHeaders]: The following custom response headers are not allowed to be set: refresh, Refresh, rEfReSh"` + ); +}); + describe('with TLS', () => { test('throws if TLS is enabled but `redirectHttpFromPort` is equal to `port`', () => { const httpSchema = config.schema; diff --git a/src/core/server/http/http_config.ts b/src/core/server/http/http_config.ts index 9d0008e1c401..1f8fd95d6905 100644 --- a/src/core/server/http/http_config.ts +++ b/src/core/server/http/http_config.ts @@ -26,6 +26,9 @@ const hostURISchema = schema.uri({ scheme: ['http', 'https'] }); const match = (regex: RegExp, errorMsg: string) => (str: string) => regex.test(str) ? undefined : errorMsg; +// The lower-case set of response headers which are forbidden within `customResponseHeaders`. +const RESPONSE_HEADER_DENY_LIST = ['location', 'refresh']; + const configSchema = schema.object( { name: schema.string({ defaultValue: () => hostname() }), @@ -70,6 +73,16 @@ const configSchema = schema.object( securityResponseHeaders: securityResponseHeadersSchema, customResponseHeaders: schema.recordOf(schema.string(), schema.any(), { defaultValue: {}, + validate(value) { + const forbiddenKeys = Object.keys(value).filter((headerName) => + RESPONSE_HEADER_DENY_LIST.includes(headerName.toLowerCase()) + ); + if (forbiddenKeys.length > 0) { + return `The following custom response headers are not allowed to be set: ${forbiddenKeys.join( + ', ' + )}`; + } + }, }), host: schema.string({ defaultValue: 'localhost', diff --git a/src/dev/precommit_hook/casing_check_config.js b/src/dev/precommit_hook/casing_check_config.js index 2c9dfbe6fcc1..3aed49b5015b 100644 --- a/src/dev/precommit_hook/casing_check_config.js +++ b/src/dev/precommit_hook/casing_check_config.js @@ -139,7 +139,6 @@ export const TEMPORARILY_IGNORED_PATHS = [ 'test/functional/apps/management/exports/_import_objects-conflicts.json', 'x-pack/legacy/plugins/index_management/public/lib/editSettings.js', 'x-pack/legacy/plugins/license_management/public/store/reducers/licenseManagement.js', - 'x-pack/plugins/monitoring/public/components/sparkline/__mocks__/plugins/xpack_main/jquery_flot.js', 'x-pack/plugins/monitoring/public/icons/health-gray.svg', 'x-pack/plugins/monitoring/public/icons/health-green.svg', 'x-pack/plugins/monitoring/public/icons/health-red.svg', @@ -150,28 +149,4 @@ export const TEMPORARILY_IGNORED_PATHS = [ 'x-pack/plugins/reporting/server/export_types/common/assets/fonts/roboto/Roboto-Medium.ttf', 'x-pack/plugins/reporting/server/export_types/common/assets/fonts/roboto/Roboto-Regular.ttf', 'x-pack/plugins/reporting/server/export_types/common/assets/img/logo-grey.png', - 'x-pack/test/functional/es_archives/monitoring/beats-with-restarted-instance/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/beats-with-restarted-instance/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/logstash-pipelines/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/logstash-pipelines/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/multi-basic/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/multi-basic/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-basic-beats/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-basic-beats/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-green-gold/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-green-gold/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-green-platinum/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-green-platinum/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-green-trial-two-nodes-one-cgrouped/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-green-trial-two-nodes-one-cgrouped/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-red-platinum/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-red-platinum/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-three-nodes-shard-relocation/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-three-nodes-shard-relocation/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-basic/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-basic/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum--with-10-alerts/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum--with-10-alerts/mappings.json', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum/data.json.gz', - 'x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum/mappings.json', ]; diff --git a/src/plugins/console/public/application/components/console_menu.tsx b/src/plugins/console/public/application/components/console_menu.tsx index 6c5eb8646c58..1abbcfc2fdeb 100644 --- a/src/plugins/console/public/application/components/console_menu.tsx +++ b/src/plugins/console/public/application/components/console_menu.tsx @@ -8,6 +8,8 @@ import React, { Component } from 'react'; +import { NotificationsSetup } from 'src/core/public'; + import { EuiIcon, EuiContextMenuPanel, EuiContextMenuItem, EuiPopover } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n/react'; @@ -17,7 +19,7 @@ interface Props { getCurl: () => Promise; getDocumentation: () => Promise; autoIndent: (ev: React.MouseEvent) => void; - addNotification?: (opts: { title: string }) => void; + notifications: NotificationsSetup; } interface State { @@ -42,25 +44,30 @@ export class ConsoleMenu extends Component { }); }; - copyAsCurl() { - this.copyText(this.state.curlCode); - const { addNotification } = this.props; - if (addNotification) { - addNotification({ + async copyAsCurl() { + const { notifications } = this.props; + try { + await this.copyText(this.state.curlCode); + notifications.toasts.add({ title: i18n.translate('console.consoleMenu.copyAsCurlMessage', { defaultMessage: 'Request copied as cURL', }), }); + } catch (e) { + notifications.toasts.addError(e, { + title: i18n.translate('console.consoleMenu.copyAsCurlFailedMessage', { + defaultMessage: 'Could not copy request as cURL', + }), + }); } } - copyText(text: string) { - const textField = document.createElement('textarea'); - textField.innerText = text; - document.body.appendChild(textField); - textField.select(); - document.execCommand('copy'); - textField.remove(); + async copyText(text: string) { + if (window.navigator?.clipboard) { + await window.navigator.clipboard.writeText(text); + return; + } + throw new Error('Could not copy to clipboard!'); } onButtonClick = () => { @@ -107,7 +114,7 @@ export class ConsoleMenu extends Component { { this.closePopover(); this.copyAsCurl(); diff --git a/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor.tsx b/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor.tsx index 541ad8b0563a..c24243555060 100644 --- a/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor.tsx +++ b/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor.tsx @@ -232,7 +232,7 @@ function EditorUI({ initialTextValue }: EditorProps) { autoIndent={(event) => { autoIndent(editorInstanceRef.current!, event); }} - addNotification={({ title }) => notifications.toasts.add({ title })} + notifications={notifications} /> diff --git a/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor_output.tsx b/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor_output.tsx index 3d05bc14a68d..23c1c515cc9f 100644 --- a/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor_output.tsx +++ b/src/plugins/console/public/application/containers/editor/legacy/console_editor/editor_output.tsx @@ -9,6 +9,12 @@ import { EuiScreenReaderOnly } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; import React, { useEffect, useRef } from 'react'; + +// Ensure the modes we might switch to dynamically are available +import 'brace/mode/text'; +import 'brace/mode/json'; +import 'brace/mode/yaml'; + import { expandLiteralStrings } from '../../../../../shared_imports'; import { useEditorReadContext, @@ -19,11 +25,25 @@ import { createReadOnlyAceEditor, CustomAceEditor } from '../../../../models/leg import { subscribeResizeChecker } from '../subscribe_console_resize_checker'; import { applyCurrentSettings } from './apply_editor_settings'; +const isJSONContentType = (contentType?: string) => + Boolean(contentType && contentType.indexOf('application/json') >= 0); + +/** + * Best effort expand literal strings + */ +const safeExpandLiteralStrings = (data: string): string => { + try { + return expandLiteralStrings(data); + } catch (e) { + return data; + } +}; + function modeForContentType(contentType?: string) { if (!contentType) { return 'ace/mode/text'; } - if (contentType.indexOf('application/json') >= 0) { + if (isJSONContentType(contentType)) { return 'ace/mode/json'; } else if (contentType.indexOf('application/yaml') >= 0) { return 'ace/mode/yaml'; @@ -58,16 +78,21 @@ function EditorOutputUI() { const editor = editorInstanceRef.current!; if (data) { const mode = modeForContentType(data[0].response.contentType); - editor.session.setMode(mode); editor.update( data - .map((d) => d.response.value as string) - .map(readOnlySettings.tripleQuotes ? expandLiteralStrings : (a) => a) - .join('\n') + .map((result) => { + const { value, contentType } = result.response; + if (readOnlySettings.tripleQuotes && isJSONContentType(contentType)) { + return safeExpandLiteralStrings(value as string); + } + return value; + }) + .join('\n'), + mode ); } else if (error) { - editor.session.setMode(modeForContentType(error.response.contentType)); - editor.update(error.response.value as string); + const mode = modeForContentType(error.response.contentType); + editor.update(error.response.value as string, mode); } else { editor.update(''); } diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/default_value.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/default_value.mdx new file mode 100644 index 000000000000..5e03d6ad1652 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/default_value.mdx @@ -0,0 +1,96 @@ +--- +id: formLibCoreDefaultValue +slug: /form-lib/core/default-value +title: Default value +summary: Initiate a field with the correct value +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +There are multiple places where you can define the default value of a field. By "default value" we are saying "the initial value" of a field. Once the field is initiated it has its own internal state and can't be controlled. + +## Order of precedence + +1. As a prop on the `` component +2. In the **form** `defaultValue` config passed to `useForm({ defaultValue: { ... } })` +3. In the **field** `defaultValue` config parameter (either passed as prop to `` prop or declared inside a form schema) +4. If no default value is found above, it defaults to `""` (empty string) + +### As a prop on `` + +This takes over any other `defaultValue` defined elsewhere. What you provide as prop is what you will have as default value for the field. Remember that the `` **is not** a controlled component, so changing the `defaultValue` prop to another value does not have any effect. + +```js +// Here we manually set the default value + +``` + +### In the form `defaultValue` config passed to `useForm()` + +The above solution works well for very small forms, but with larger form it is not very convenient to manually add the default value of each field. + +```js +// Let's imagine some data coming from the server +const fetchedData = { + user: { + firstName: 'John', + lastName: 'Snow', + } +} + +// We need to manually write each connection, which is not convenient + + +``` + +It is much easier to provide the `defaultValue` object (probably some data that we have fetched from the server) at the form level + +```js +const { form } = useForm({ defaultValue: fetchedData }); + +// And the defaultValue for each field will be automatically mapped to its paths + + +``` + +### In the field `defaultValue` config parameter of the field config + +When you are creating a new resource, the form is empty and there is no data coming from the server to map. You still might want to define a default value for your fields. + +```js +interface Props { + fetchedData?: { foo: boolean } +} + +export const MyForm = ({ fetchedData }: Props) => { + // fetchedData can be "undefined" or an object. + // If it is undefined, then the config.defaultValue will be used + const { form } = useForm({ defaultValue: fetchedData }); + + return ( + + ); +} +``` + +Or the same but using a form schema + +```js +const schema = { + // Field config for the path "foo" declared below + foo: { + defaultValue: true, + }, +}; + +export const MyComponent = ({ fetchedData }: Props) => { + // 1. If "fetchedData" is not undefined **and** there is a value at the "foo" path, use it + // 2. otherwise, if there is a schema with a config at the "foo" path, read its "defaultValue" + // 3. otherwise use an "" (empty string) + const { form } = useForm({ schema, defaultValue: fetchedData }); + + return ( + + ); +} +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/field_hook.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/field_hook.mdx new file mode 100644 index 000000000000..c7be88c4336a --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/field_hook.mdx @@ -0,0 +1,188 @@ +--- +id: formLibCoreFieldHook +slug: /form-lib/core/field-hook +title: Field hook +summary: You don't manually create them but you'll get all the love from them +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +When you use the `` component you receive back a `field` hook object that you can connect to your React components. + +This hook has the following properties and handlers: + +## Properties + +### path + +**Type:** `string` + +The field `path`. + +### label + +**Type:** `string` + +The field `label` provided in the config. + +### labelAppend + +**Type:** `string | ReactNode` + +The field `labelAppend` provided in the config. + +### helpText + +**Type:** `string | ReactNode` + +The field `helpText` provided in the config. + +### type + +**Type:** `string` + +The field `type` provided in the config. + +### value + +**Type:** `T` + +The field state value. + +### errors + +**Type:** `ValidationError[]` + +An array of possible validation errors. Each error has a required `message` property and any other meta data returned by your validation(s). + +### isValid + +**Type:** `boolean` + +Flag that indicates if the field is valid. + +### isPristine + +**Type:** `boolean` + +Flag that indicates if the field is pristine (if it hasn't been modified by the user). + +### isValidating + +**Type:** `boolean` + +Flag that indicates if the field is being validated. It is set to `true` when the value changes, and back to `false` right after all the validations have executed. If all your validations are synchronous, this state is always `false`. + +### isValidated + +**Type:** `boolean` + +Flag that indicates if this field has run at least once its validation(s). The validations are run when the field values changes or, if the field value has not changed, when we call `form.submit()` or `form.validate()`. + +### isChangingValue + +**Type:** `boolean` + +Flag that indicates if the field value is changing. If you have set the [`valueChangeDebounceTime`](use_field.md#valuechangedebouncetime) to `0`, then this state is the same as the `isValidating` state. But if you have increased the `valueChangeDebounceTime` time, then you will have a minimum value changing time. This is useful if you want to display your validation errors after a certain amount of time has passed. + +## Handlers + +### setValue() + +**Arguments:** `value: T | (prevValue: T) => T` +**Returns:** `void` + +Handler to set the value of the field. +You can either pass the value directly or provide a callback that will receive the previous field value and you will have to return the next value. + +### onChange() + +**Arguments:** `event: React.ChangeEvent` +**Returns:** `void` + +Use the `onChange` helper to directly hook into the forms fields inputs `onChange` prop without having to extract the event value and call `setValue()` on the field. + +```js +// Instead of this + + {({ setValue }) => { + return setValue(e.target.value)} /> + }} + + +// You can use the "onChange" handler + + {({ onChange }) => { + return + }} + +``` + +### setErrors() + +**Arguments:** `ValidationError[]` +**Returns:** `void` + +Handler to set the errors of the field. + +### clearErrors() + +**Arguments:** `type?: string | string[]` +**Returns:** `void` + +Handler to clear the errors of the field. You can optionally provide the type of error to clear. +See an example of typed validation when . + +### getErrorsMessages() + +**Arguments:** `options?: { validationType?: string; errorCode?: string }` +**Returns:** `string | null` + +Returns a concatenated string with all the error messages if the field has errors, or `null` otherwise. + +You can optionally provide an error code or a validation type to narrow down the errors you want to receive back. + +**Note:** You can add error code to your errors by adding a `code` property to your validation errors. + +```js +const nameValidator = ({ value }) => { + if (value.startsWith('.')) => { + return { + message: "The name can't start with a dot (.)", + code: 'ERR_NAME_FORMAT', + }; + } +}; +``` + +### validate() + +**Arguments:** `options?: { formData?: any; value?: T; validationType?: string; }` +**Returns:** `FieldValidateResponse | Promise` + +Validate the field by calling all the validations declared in its config. Optionally you can provide an options object with the following properties: + +* `formData` - The form data +* `value` - The value to validate +* `validationType` - The validation type to run against the value + +You rarely need to manually call this method as it is automatically done for you whenever the field value changes. + +**Important:** Calling `validate()` **does not update** the form `isValid` state and is only meant to get the field validity at a point in time. + +#### Example where you might need this method: + +The user changes the value inside one of your components and you receive this value in an `onChange` handler. Before updating the field value with `setValue()`, you want to validate this value and maybe prevent the field `value` to be updated at all. + +### reset() + +**Arguments:** `options?: { resetValue?: boolean; defaultValue?: T }` +**Returns:** `T | undefined` + +Resets the field to its initial state. It accepts an optional configuration object: + +- `resetValue` (default: `true`). Flag to indicate if we want to not only reset the field state (`errors`, `isPristine`...) but also the field value. If set to `true`, it will put back the default value passed to the field, or to the form, or declared on the field config (in that order). + +- `defaultValue`. In some cases you might not want to reset the field to the default value initiallly provided. In this case you can provide a new `defaultValue` value when resetting. + +If you provided a new `defaultValue`, you will receive back this value after it has gone through any possible `deserializer(s)` defined for that field. If you didn't provide a default value `undefined` is returned. diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/form_component.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/form_component.mdx new file mode 100644 index 000000000000..df479b5c72f3 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/form_component.mdx @@ -0,0 +1,79 @@ +--- +id: formLibCoreFormComponent +slug: /form-lib/core/form-component +title:
+summary: The boundary of your form +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +Once you have created , you can wrap your form with the `` component. + +This component accepts the following props. + +## Props + +### form (required) + +**Type:** `FormHook` + +The form hook you've created with `useForm()`. + +```js +const MyFormComponent = () => { + const { form } = useForm(); + + return ( + + ... + + ); +}; +``` + +### FormWrapper + +**Type:** `React.ComponentType` +**Default:**: `EuiForm` + +This is the component that will wrap your form fields. By default it renders the `` component. + +Any props that you pass to the `
` component, except the `form` hook, will be forwarded to that component. + +```js +const MyFormComponent = () => { + const { form } = useForm(); + + // "isInvalid" and "error" are 2 props from + return ( + + ... + + ); +}; +``` + +By default, `` wraps the form with a `
` element. In some cases semantic HTML is preferred: wrapping your form with the `
` element. This also allows the user to submit the form by hitting the "ENTER" key inside a field. + +**Important:** Make sure to **not** declare the FormWrapper inline on the prop but outside of your component. + +```js +// Create a wrapper component with the element +const FormWrapper = (props: any) => ; + +export const MyFormComponent = () => { + const { form } = useForm(); + + // Hitting the "ENTER" key in a textfield will submit the form. + const submitForm = async () => { + const { isValid, data } = await form.submit(); + ... + }; + + return ( + + ... +
+ ); +}; +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/form_hook.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/form_hook.mdx new file mode 100644 index 000000000000..d66c0d867c27 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/form_hook.mdx @@ -0,0 +1,214 @@ +--- +id: formLibCoreFormHook +slug: /form-lib/core/form-hook +title: Form hook +summary: The heart of the lib; It manages your fields so you don't have to +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +When you call `useForm()` you receive back a `form` hook object. +This object has the following properties and handlers + +## Properties + +### isSubmitted + +**Type:** `boolean` + +Flag that indicates if the form has been submitted at least once. It is set to `true` when we call . + +**Note:** If you have a dynamic form where fields are removed and added, the `isSubmitted` is set to `false` whenever a new field is added, as in such case the user has a new form in front of him. + +### isSubmitting + +**Type:** `boolean` + +Flag that indicates if the form is being submitted. When we submit the form, if you have provided an in the config, it might take some time to resolve (e.g. an HTTP request being made). This flag will be set to `true` until the Promise resolves. + +### isValid + +**Type:** `boolean | undefined` + +Flag that indicates if the form is valid. It can have three values: +* `true` +* `false` +* `undefined` + +When the form first renders, its validity is neither `true` nor `false`. It is `undefined`, we don't know its validity. It could be valid if none of the fields are required or invalid if some field is required. + +Each time a field value changes, it is validated. When **all** fields have changed (are dirty), then only the `isValid` is either `true` or `false`, as at this stage we know the form validity. Of course we will probably need to know the validity of the form without updating each field one by one. There are two ways of doing that: + +* calling `form.submit()` + +```js +export const MyComponent = () => { + const { form } = useForm(); + + const onClickSubmit = async () => { + // We validate all the form fields and get its "isValid" state (true|false) + const { isValid, data } = await form.submit(); + + if (isValid) { + // ... + } + }; + + return ( +
+ ... + + {form.isValid === false && ( +
Only show this message if the form validity is "false".
+ )} +
+ ); +} +``` + +* calling the `validate()` handler on the form. As you can see in the example below, as we don't use the `form.submit()`, we have to manually declare and update the `isSubmitting` and `isSubmitted` states. + +**Note:** It is usually better to use `form.submit()`, but you might need at some stage to know the form validity without updating its `isSubmitted` state, and that's what `validate()` is for. + +```js +export const MyComponent = ({ onFormUpdate }: Props) => { + const [isSubmitted, setIsSubmitted] = useState(false); + const [isSubmitting, setIsSubmitting] = useState(false); + + const { form } = useForm(); + + const onClickSubmit = async () => { + setIsSubmitted(true); + setIsSubmitting(true); + + // If the "isValid" state is "undefined" (=== not all the fields are dirty), + // call validate() to run validation on all the fields. + const isValid = form.isValid ?? (await form.validate()); + setIsSubmitting(false); + + if (isValid) { + console.log('Form data:', form.getFormData()); + } + }; + + const hasErrors = isSubmitted && form.isValid === false; + + return ( +
+ + + + + {hasErrors &&
Form is invalid.
} + + ); +}; +``` + +### id + +**Type:** `string` + +The form id. If none was provided, "default" will be returned. + +## Handlers + +### submit() + +**Returns:** `Promise<{ data: T | {}, isValid: boolean }>` + +This handler submits the form and returns its data and validity. If the form is not valid, the data will be `null` as only valid data is passed through the `serializer(s)` before being returned. + +```js +const { data, isValid } = await form.submit(); +``` + +### validate() + +**Returns:** `Promise` + +Use this handler to get the validity of the form. + +```js +const isFormValid = await form.validate(); +``` + +### getFields() + +**Returns:** `{ [path: string]: FieldHook }` + +Access any field on the form. + +```js +const { name: nameField } = form.getFields(); +``` + +### getFormData() + +**Arguments:** `options?: { unflatten?: boolean }` +**Returns:** `T | R` + +Return the form data. Accepts an optional `options` with an `unflatten` parameter (defaults to `true`). If you are only interested in the raw form data, pass `unflatten: false` to the handler. + +```js +const formData = form.getFormData(); + +const rawFormData = form.getFormData({ unflatten: false }); +``` + +### getErrors() + +**Returns:** `string[]` + +Returns an array of all errors in the form. + +```js +const errors = form.getErrors(); +``` + +### reset() + +**Arguments:** `options?: { resetValues?: boolean; defaultValue?: any }` + +Resets the form to its initial state. It accepts an optional configuration object: + +- `resetValues` (default: `true`). Flag to indicate if we want to not only reset the form state (`isValid`, `isSubmitted`...) but also the field values. If set to `true` all form values will be reset to their default value. + +- `defaultValue`. In some cases you might not want to reset the form to the default value initially provided to the form (probably because it is data that came from the server and you want a clean form). In this case you can provide a new `defaultValue` object when resetting. + +```js +// Reset to the defaultValue object passed to the form +// If none was provided, reset to the field config defaultValue. +form.reset(); + +// Reset to the default value declared on the **field config** defaultValue +form.reset({ defaultValue: {} }); + +// You can keep some current field value and the rest will come from the **field config** defaultValue. +form.reset({ defaultValue: { type: 'SomeValueToKeep' } }); +``` + +### setFieldValue() + +**Arguments:** `fieldName: string, value: unknown` + +Sets a field value imperatively. + +```js +form.setFieldValue('name', 'John'); +``` + +### setFieldErrors() + +**Arguments:** `fieldName: string, errors: ValidationError[]` + +Sets field errors imperatively. + +```js +form.setFieldErrors('name', [{ message: 'There is an error in the field' }]); +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/fundamentals.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/fundamentals.mdx new file mode 100644 index 000000000000..4c16bed017b0 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/fundamentals.mdx @@ -0,0 +1,81 @@ +--- +id: formLibCoreFundamentals +slug: /form-lib/core/fundamentals +title: Fundamentals +summary: Let's understand the basics +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +The core exposes the main building blocks (hooks and components) needed to build your form. + +It is important to note that the core **is not** responsible for rendering UI. Its responsibility is to return form and fields **state and handlers** that you can connect to React components. The core of the form lib is agnostic of any UI rendering the form. + +In Kibana we work with [the EUI component library](https://elastic.github.io/eui) so we have created that wrap EUI form input components. With these components, connection with the form lib is already done for you. + +## Main building blocks + +The three required components to build a form are: + +- hook to declare a new +- component that will wrap your form and create a context for it +- component to declare a + +Let's see them in action before going into details + +```js +import { useForm, Form, UseField } from 'src/plugins/es_ui_shared/public'; + +export const UserForm = () => { + const { form } = useForm(); // 1 + + return ( +
// 2 + // 3 + + + + + ); +}; +``` + +1. We use the `useForm` hook to declare a new form. +2. We then wrap our form with the `
` component, providing the `form` that we have just created. +3. Finally, we declared two fields with the `` component, providing a unique `path` for each one of them. + +If you were to run this code in the browser and click on the "Submit" button nothing would happen as we haven't defined any handler to execute when submitting the form. Let's do that now along with providing a `UserFormData` interface to the form, which we will get back in our `onSubmit` handler. + +```js +import { useForm, Form, UseField, FormConfig } from 'src/plugins/es_ui_shared/public'; + +interface UserFormData { + name: string; + lastName: string; +} + +export const UserForm = () => { + const onFormSubmit: FormConfig['onSubmit'] = async (data, isValid) => { + console.log("Is form valid:", isValid); + if (!isValid) { + // Maybe show a callout? + return; + } + + console.log("Form data:", data); + }; + + const { form } = useForm({ onSubmit: onFormSubmit }); + + return ( + + ... + + + ); +}; +``` + +Great! We have our first working form. No state to worry about, just a simple declarative way to build our fields. + +Those of you who are attentive might have noticed that the above form _does_ render the fields in the UI although we said earlier that the core of the form lib is not responsible for any UI rendering. This is because the `` has a fallback mechanism to render an `` and hook to the field `value` and `onChange`. Unless you have styled your `input` elements and don't require other field types like `checkbox` or `select`, you will probably want to how the the `` renders. We will see that in a future section. diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/use_array.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/use_array.mdx new file mode 100644 index 000000000000..b92880fdf806 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/use_array.mdx @@ -0,0 +1,85 @@ +--- +id: formLibCoreUseArray +slug: /form-lib/core/use-array +title: +summary: The perfect companion to generate dynamic fields +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +Use the `` component whenever you want to let the user add or remove fields in your form. Those fields will always be part of an array. Either an array of _values_, or an array of _objects_. +If you need those dynamic fields to be returned differently, you can [use a `serializer`](use_field.md#serializer) to transform the array. +There are no limits to how nested arrays and fields can be. + +```js +// You can simply generate a list of string values +const myFormData = { + tags: ['value1', 'value2', 'value3']; +}; + +// Or you can generate more complex objects +const myFormData = { + book: { // path: "book" + title: 'My book', // path: "book.title" + tags: [ // path: "book.tags" + { + label: 'Tag 1', // path: "book.tags[0].label + value: 'tag_1', // path: "book.tags[0].value + colors: [ // path: "book.tags[0].colors + 'green', // path: "book.tags[0].colors[0] + 'yellow' // path: "book.tags[0].colors[1] + ] + } + ] + } +} +``` + +**Note:** Have a on how to use ``. + +This component accepts the following props (the only required prop is the `path`). + +## Props + +### path (required) + +**Type:** `string` + +The array path. It can be any valid [`lodash.set()` path](https://lodash.com/docs/#set). + +### initialNumberOfItems + +**Type:** `number` +**Default:** `1` + +Define the number of items you want to have by default in the array. It is only used when there are no `defaultValue` found for the array. If there is a default value found, the number of items will be the length of that array. + +Those items are not fields yet, they are objects that you will receive back in the child function. + +### validations + +**Type:** `FieldConfig['validations']` + +Array of validations to run whenever an item is added or removed. This is that you define on the field config. The `value` that you receive is the `items` passed down to the child function (see below). + +### readDefaultValueOnForm + +**Type:** `boolean` +**Default:** `true` + +Flag to indicate if you want to read the array value from . + +### children + +**Type:** `(formFieldArray: FormArrayField) => JSX.Element` + +The children of `` is a function child which receives the form array field. You are then responsible to return a JSX element from that function. + +The `FormArrayField` that you get back in the function has the following properties: + +* `items` - The array items you can iterate on +* `error` - A string with possible validation error messages concatenated. It is `null` if there are no errors +* `addItem()` - Handler to add a new item to the array +* `removeItem(id: number)` - Handler to remove an item from the array +* `moveItem(source: number, destination: number)` - Handler to reorder items +* `form` - The `FormHook` object diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/use_field.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/use_field.mdx new file mode 100644 index 000000000000..b1d70d05c8d2 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/use_field.mdx @@ -0,0 +1,397 @@ +--- +id: formLibCoreUseField +slug: /form-lib/core/use-field +title: +summary: Drop it anywhere in your
and see the magic happen +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +To declare a field in the form you use the `` component. + +This component accepts the following props (the only required prop is the `path`). + +## Props + +### path (required) + +**Type:** `string` + +The field path. It can be any valid [`lodash.set()` path](https://lodash.com/docs/#set). + +```js + + + + +// The above 3 fields will output the following object + +{ + user: { + name: 'John', + email: 'john@elastic.co', + }, + city: 'Paris' +} +``` + +### defaultValue + +**Type:** `any` + +An optional default value for the field. This will be the initial value of the field. The component is not controlled so updating this prop does not have any effect on the field. + +**Note:** You can define the field `defaultValue` in different places (). + +### config + +**Type:** `FieldConfig` + +The field configuration. + +**Note**: In some cases it makes more sense to declare all your form fields configuration inside a that you pass to the form. This will unclutter your JSX. + +```js +// It is a good habit to keep the configuration outside the component +// as in most case it is static and so this will avoid unnecessary re-renders. +const nameConfig: FieldConfig = { + label: 'Name', + validations: [ ... ], +}; + +export const MyFormComponent = { + const { form } = useForm(;) + return ( + + + + ); +}; +``` + +This configuration has the following parameters. + +#### label + +**Type:** `string` + +A label for the field. + +#### labelAppend + +**Type:** `string | ReactNode` + +A second label for the field. + +When `` is paired with one of that wrap the EUI form fields, this prop is forwarded to the `` `labelAppend` prop. As per [the EUI docs](https://elastic.github.io/eui/#/forms/form-layouts): _it adds an extra node to the right of the form label without being contained inside the form label. Good for things like documentation links._ + +#### helpText + +**Type:** `string | ReactNode` + +A help text for the field. + +#### type + +**Type:** `string` + +Specify a type for your field. It can be any string, but if you decide to use the `` helper component, then defining one of the `FIELD_TYPES` will automatically render the correct field for you. + +```js +import { Form, UseField, Field, FIELD_TYPES } from ''; + +const nameConfig = { + label: 'Name', + type: FIELD_TYPES.TEXT, +}; + +const showSettingsConfig = { + label: 'Show advanced settings', + type: FIELD_TYPES.TOGGLE, +}; + +export const MyFormComponent = () => { + const { form } = useForm(); + + // We use the same "Field" component to render both fields + // but as their "type" differs, they will render different UI fields. + return ( +
+ + + + ); +}; +``` + +The above example could be written a bit simpler with a form schema and . + +```js +import { Form, getUseField, Field, FIELD_TYPES } from ''; + +const schema = { + name: { + label: 'Name', + type: FIELD_TYPES.TEXT, + }, + showSettings: { + label: 'Show advanced settings', + type: FIELD_TYPES.TOGGLE, + } +}; + +const UseField = getUseField({ component: Field }); + +export const MyFormComponent = () => { + const { form } = useForm({ schema }); + + return ( +
+ + + + ); +}; +``` + +#### validations + +**Type:** `ValidationConfig[]` + +An array of validation to run against the field value. Although it would be possible to have a single validation that does multiple checks, it often makes the code clearer to have single purpose validation that return a single error if there is one. + +If any of the validation fails, the other validations don't run unless (`false` by default) is set to `true`. + +**Note:** There are already many . Check if there isn't already one for your use case before writing your own. + +The `ValidationConfig` accepts the following parameters: + +##### validator (Required) + +**Type:** `ValidationFunc` +**Arguments:** `data: ValidationFuncArg` +**Returns:** `ValidationError | void | Promise | Promise` + +A validator function to execute. It can be synchronous or asynchronous. + +**Note:** Have a look a for different use cases. + +This function receives a data argument with the following properties: + +* `value` - The field value +* `path` - The field path being validated +* `form.getFormData` - A handler to build the form data +* `form.getFields` - A handler to access the form fields +* `formData` - The raw form data +* `errors` - An array of any previous validation errors + +##### type + +**Type:** `string` + +A specific type for the validation. . + +##### isBlocking + +**Type:** `boolean` +**Default:** `true` + +By default all validation are blockers, which means that if they fail, the field `isValid` state is set to `false`. There might be some cases where you don't want the form to be invalid when a fied validation fails. + +For example: when we add an item to the ComboBox array, we don't want to block the UI and set the field (array) as invalid if the item is invalid. We won't add the item to the array but the field is still valid. For that we will pass `isBlocking: false` to the validation on the array item. + +##### exitOnFail + +**Type:** `boolean` +**Default:** `true` + +By default, when any of the validation fails, the following validation are not executed. If you still want to execute the following validation(s), set the `exitOnFail` to `false`. + +#### deserializer + +**Type:** `SerializerFunc` + +If the type of a field value differs from the type provided as `defaultValue` you can use a `deserializer` to transform the value. This handler is executedo once to initialize the field `value` state. + +```js +// The country field select options +const countries = [{ + value: 'us', + label: 'USA', +}, { + value: 'es', + label: 'Spain', +}]; + +const countryConfig = { + label: 'Country', + deserializer: (defaultValue: string) => { + // We return the object our field expects. + return countries.find(country => country.value === defaultValue); + } +}; + +export const MyFormComponent = () => { + const fetchedData = { + // The server returns a string, but our field expects + // an object with a "value" and "label" property. + country: 'es', + }; + + const { form } = useForm({ defaultValue: fetchedData }); + + return ( +
+ + + ) +} +``` + +#### serializer + +**Type:** `SerializerFunc` + +This is the reverse process of the `deserializer`. It is only executed when getting the form data (with `form.submit()` or `form.getFormData()`). + +```js +// Continuing the example above + +const countryConfig = { + label: 'Country', + deserializer: (defaultValue: string) => { + return countries.find(country => country.value === defaultValue); + }, + serializer: (fieldValue: { value: string; label: string }) => { + return fieldValue.value; + }, +}; +``` + +#### formatters + +**Type:** `FormatterFunc[]` + +If you need to format the field value each time it changes you can use a formatter for that. You can provide as many formatters as needed. + +**Note:** Only use formatters when you need to change visually how the field value appears in the UI. If you only need the transformed value when submitting the form, it is better to use a `serializer` for that. + +Each `FormatterFunc` receives 2 arguments: + +* `value` - The field value +* `formData` - The form data + +```js +const nameConfig = { + formatters: [(value: string) => { + // Capitalize the field value on each key stroke + return value.toUppercase(); + }], +}; +``` + +#### fieldsToValidateOnChange + +**Type:** `string[]` - An array of field paths +**Default:** `[]` + +By default when a field value changes, it is the only field that is validated. In some cases you might also want to run the validation on another field that is linked. + +Don't forget to include the current field path if you update this settings, unless you specifically do not want to run the validations on the current field. + +```js +const field1Config = { + fieldsToValidateOnChange: ['field1', 'field2'], +}; + +const field2Config = { + fieldsToValidateOnChange: ['field2', 'field1'], +}; +``` + +#### valueChangeDebounceTime + +**Type:** `number` + +The minimum time to update the `isChanging` field state. . + +### component + +**Type:** `FunctionComponent` + +The component to render. This component will receive the `field` hook object as props plus any other props that you pass in `componentProps` (see below). + +**Note:** You can see examples on how this prop is used in . + +### componentProps + +**Type:** `{ [prop: string]: any }` + +If you provide a `component` you can pass here any prop you want to forward to this component. + +### readDefaultValueOnForm + +**Type:** `boolean` +**Default:** true + +By default if you don't provide a `defaultValue` prop to ``, it will try to read the default value on . If you want to prevent this behaviour you can set `readDefaultValueOnForm` to false. This can be usefull for dynamic fields, as . + +### onChange + +**Type:** `(value:T) => void` + +With this handler you can listen to the field value changes. in the "Listening to changes" page. + +### onError + +**Type:** `(errors: string[] | null) => void` + +Callback that will be called whenever the field validity changes. When `null` is returned it means that the field is valid. + +### children + +**Type:** `(field: FieldHook) => JSX.Element` + +The (optional) children of `` is a function child which receives the . You are then responsible to return a JSX element from that function. + + +## Helpers + +### `getUseField()` + +**Arguments:** `props: UseFieldProps` + +In some cases you might find yourself declaring the exact same prop on `` for all your fields. (e.g. using the [the `Field` component](../helpers/components#field) everywhere). + +You can use the `getUseField` helper to get a `` component with predefined props values. + +```js +const UseField = getUseField({ component: Field }); + +const MyFormComponent = () => { + ... + return ( +
+ {/*You now can use it in your JSX without specifying the component anymore */} + + + ); +}; +``` + + +## Typescript value type + +You can provide the value type (`unknown` by default) on the component. + +```js + path="name" defaultValue="mustBeAString" /> +``` + +This has implication on the field config provided that has to have the same type. + +```js +const nameConfig:FieldConfig = { ... }; + + path="name" config={nameConfig} /> +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/use_form_data.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/use_form_data.mdx new file mode 100644 index 000000000000..17276f41b3da --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/use_form_data.mdx @@ -0,0 +1,65 @@ +--- +id: formLibCoreUseFormData +slug: /form-lib/core/use-form-data +title: useFormData() +summary: Get fields value updates from anywhere +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +**Returns:** `[rawFormData, () => T]` + +Use the `useFormData` hook to access and react to form field value changes. The hook accepts an optional options object. + +Have a look at the examples on how to use this hook in . + +## Options + +### form + +**Type:** `FormHook` + +The form hook object. It is only required to provide the form hook object in your **root form component**. + +```js +const RootFormComponent = () => { + // root form component, where the form object is declared + const { form } = useForm(); + const [formData] = useFormData({ form }); + + return ( +
+ + + ); +}; + +const ChildComponent = () => { + const [formData] = useFormData(); // no need to provide the form object + return ( +
...
+ ); +}; +``` + +### watch + +**Type:** `string | string[]` + +This option lets you define which field(s) to get updates from. If you don't specify a `watch` option, you will get updates when any form field changes. This will trigger a re-render of your component. If you want to only get update when a specific field changes you can pass it in the `watch`. + +```js +// Only get update whenever the "type" field changes +const [{ type }] = useFormData({ watch: 'type' }); + +// Only get update whenever either the "type" or the "subType" field changes +const [{ type, subType }] = useFormData({ watch: ['type', 'subType'] }); +``` + +## Return + +As you have noticed, you get back an array from the hook. The first element of the array is form data and the second argument is a handler to get the **serialized** form data if needed. + +```js +const [formData, getSerializedData] = useFormData(); +``` \ No newline at end of file diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/use_form_hook.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/use_form_hook.mdx new file mode 100644 index 000000000000..21c77afd6dbc --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/use_form_hook.mdx @@ -0,0 +1,263 @@ +--- +id: formLibCoreUseForm +slug: /form-lib/core/use-form +title: useForm() +summary: The only hook you'll need to declare a new form +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +**Returns:** [`FormHook`](form_hook.md) + +Use the `useForm` hook to declare a new form object. As we have seen in the , you can use it without any additional configuration. It does accept an optional `config` object with the following configuration (all parameters are optional). + +## Configuration + +### onSubmit(data, isValid) + +**Arguments:** `data: T, isValid: boolean` +**Returns:** `Promise` + +The `onSubmit` handler is executed when calling `form.submit()`. It receives the form data and a boolean for the validity of the form. +When the form is submitted its `isSubmitting` state will be set to `true` and then back to `false` after the `onSubmit` handler has finished running. This can be useful to update the state of the submit button while saving the form to the server for example. + +```js +interface MyFormData { + name: string; +} + +const onFormSubmit = async (data: MyFormData, isValid: boolean): Promise => { + // "form.isSubmitting" is set to "true" + + if (!isValid) { + // Maybe show a callout + return; + } + // Do anything with the data + await myApiService.createResource(data); + + // "form.isSubmitting" is set to "false". +} +const { form } = useForm({ onSubmit: onFormSubmit }); + +// JSX + +``` + +### defaultValue + +**Type:** `Record` + +The `defaultValue` is an object that you provide to give the initial value for your fields. + +**Note:** There are multiple places where you can define the default value of a field, . + +```js +const fetchedData = { firstName: 'John' }; +const { form } = useForm({ defaultValue: fetchedData }); +``` + +### schema + +**Type:** `Record` + +Instead of manually providing a `config` object to each ``, in some cases it is more convenient to provide a schema to the form with the fields configuration at the desired paths. + +```js +interface MyForm { + user: { + firstName: string; + lastName: string; + } +} + +const schema: Schema { + user: { + firstName: { + defaultValue: '', + ... // other config + }, + lastName: { + defaultValue: '', + ... + }, + isAdmin: { + defaultValue: false, + } + } +}; + +export const MyComponent = () => { + const { form } = useForm({ schema }); + + // No need to provide the "config" prop on each field, + // it will be read from the schema + return ( +
+ + + + + ); +} +``` + +### deserializer + +When you provide a `defaultValue` to the form, you might want to parse the object and modify it (e.g. add an extra field just for the UI). You would use a `deserializer` to do that. This handler receives the `defaultValue` provided and return a new object with updated fields default values. +**Note:** It is recommended to keep this pure function _outside_ your component and not declare it inline on the hook. + +```js +import { Form, useForm, useFormData, Field, FIELD_TYPES, FormDataProvider } from ''; + +// Data coming from the server +const fetchedData = { + name: 'John', + address: { + street: 'El Camino Real #350' + } +} + +// We want to have a toggle in the UI to display the address _if_ there is one. +// Otherwise the toggle value is "false" and no address is displayed. +const deserializer = (defaultValue) => { + return { + ...defaultValue, + // We add an extra toggle field + showAddress: defaultValue.hasOwnProperty('address'), + }; +} + +export const MyComponent = ({ fetchedData }: Props) => { + const { form } = useForm({ + defaultValue: fetchedData, + deserializer + }); + const [{ showAddress }] = useFormData({ form, watch: 'showAddress' }); + + // We can now use our "showAddress" internal field in the UI + return ( +
+ + + {/* Show the street address when the toggle is "true" */} + {showAddress ? : null} + + + + ) +} +``` + +### serializer + +Serializer is the inverse process of the deserializer. It is executed when we build the form data (when calling `form.submit()` for example). +**Note:** As with the `deserializer`, it is recommended to keep this pure function _outside_ your component and not declare it inline on the hook. + +If we run the example above for the `deserializer`, and we click on the "Submit" button, we would get this in the console + +``` +Form data: { + address: { + street: 'El Camino Real #350' + }, + name: 'John', + showAddress: true +} +``` + +We don't want to surface the internal `showAddress` field. Let's use a `serializer` to remove it. + +```js + +const deserializer = (value) => { + ... +}; + + // Remove the showAddress field from the outputted data +const serializer = (value) => { + const { showAddress, ...rest } = value; + return rest; +} + +export const MyComponent = ({ fetchedData }: Props) => { + const { form } = useForm({ + defaultValue: fetchedData, + deserializer, + serializer, + }); + + ... + +}; +``` + +Much better, now when we submit the form, the internal UI fields are not leaked outside when building the form object. + +### id + +**Type:** `string` + +You can optionally give an id to the form, that will be attached to the `form` object you receive. This can be useful for debugging purpose when you have multiple forms on the page. + +### options + +**Type:** `{ valueChangeDebounceTime?: number; stripEmptyFields?: boolean }` + +#### valueChangeDebounceTime + +**Type:** `number` (ms) +**Default:** 500 + +When a field value changes, for example when we hit a key inside a text field, its `isChangingValue` state is set to `true`. Then, after all the validations have run for the field, the `isChangingValue` state is back to `false`. The time it take between those two state changes depends on the time it takes to run the validations. If the validations are all synchronous, the time will be `0`. If there are some asynchronous validations, (e.g. making an HTTP request to validate the value on the server), the "value change" duration will be the time it takes to run all the async validations. + +With this option, you can define the minimum time you'd like to have between the two state change, so the `isChangingValue` state will stay `true` for at least the amount of milliseconds defined here. This is useful for example if you want to display possible errors on the field after a minimum of time has passed since the last value change. + +This setting **can be overriden** on a per-field basis, providing a `valueChangeDebounceTime` in its config object. + +```js +const { form } = useForm({ options: { valueChangeDebounceTime: 300 } }); + +return ( + path="name"> + {(field) => { + let isInvalid = false; + let errorMessage = null; + + if (!field.isChangingValue) { + // Only update this derived state after 300ms of the last key stroke + isInvalid = field.errors.length > 0; + errorMessage = isInvalid ? field.errors[0].message : null; + } + + return ( +
+ + {isInvalid &&
{errorMessage}
} +
+ ); + }} +
+); +``` + +#### stripEmptyFields + +**Type:** `boolean` +**Default:** `true` + +With this option you can decide if you want empty string value to be returned by the form. + +```js +// stripEmptyFields: true (default) +{ + "firstName": "John" +} + +// stripEmptyFields: false +{ + "firstName": "John", + "lastName": "", + "role": "" +} +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/core/use_multi_fields.mdx b/src/plugins/es_ui_shared/static/forms/docs/core/use_multi_fields.mdx new file mode 100644 index 000000000000..2a16b8e878be --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/core/use_multi_fields.mdx @@ -0,0 +1,97 @@ +--- +id: formLibCoreUseMultiFields +slug: /form-lib/core/use-multi-fields +title: +summary: Because sometimes you need more than one field +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +You might find yourself at some point wanting to hook multiple fields to a component because that component accepts multiple values. In that case you will have to nest multiple `` with their child function, which is not very elegant. + +```js + + {maxValueField => { + return ( + + {minValueField => { + return ( + { + minValueField.setValue(minValue); + maxValueField.setValue(maxValue); + }} + /> + ) + }} + + ) + }} + +``` + +You can use `` to provide any number of fields and you will get them back in a single child function. + +```js +const fields = { + min: { + // Any prop you would normally pass to + path: 'minValue', + config: { + ... + } + }, + max: { + path: 'maxValue', + }, +}; + + + {({ min, max }) => { + return ( + { + min.setValue(minValue); + max.setValue(maxValue); + }} + /> + ); + }} + +``` + +## Props + +### fields (required) + +**Type:** `{ [fieldId: string]: UseFieldProps }` + +A map of field id to `` props. The id does not have to match the field path, it will simply help you identify the fields that you get back in the child function. + +### children + +**Type:** `(fields: { fieldId: string: FieldHook }) => JSX.Element` + +The children of `` is a function child which receives a map of field id to FieldHook. You are then responsible to return a JSX element from that function. + +## Typescript value type + +You can provide the field value type for each field (`unknown` by default) on the component. + +```js +interface Fields { + min: number; + max: number; +} + +// You are then required to provide those exact 2 fields in the "fields" prop + fields={{ min: { ... }, max: { ... } }}> + ... + +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/examples/dynamic_fields.mdx b/src/plugins/es_ui_shared/static/forms/docs/examples/dynamic_fields.mdx new file mode 100644 index 000000000000..f2525d5a16fb --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/examples/dynamic_fields.mdx @@ -0,0 +1,276 @@ +--- +id: formLibExampleDynamicFields +slug: /form-lib/examples/dynamic-fields +title: Dynamic fields +summary: Let the user add any number of fields on the fly +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +## Basic + +Dynamic fields are fields that the user can add or remove. Those fields will end up in an array of _values_ or an array of _objects_, it's up to you. To work with dynamic fields in your form you use the component. + +Let's imagine a form that lets a user enter dynamic items to a list. + +```js +export const DynamicFields = () => { + const todoList = { + items: [ + { + title: 'Title 1', + subTitle: 'Subtitle 1', + }, + { + title: 'Title 2', + subTitle: 'Subtitle 2', + }, + ], + }; + const { form } = useForm({ defaultValue: todoList }); + + const submitForm = () => { + console.log(form.getFormData()); + }; + + return ( +
+ + {({ items, addItem, removeItem }) => { + return ( + <> + {items.map((item) => ( + + + + + + + + + removeItem(item.id)} + iconType="minusInCircle" + aria-label="Remove item" + style={{ marginTop: '28px' }} + /> + + + ))} + + Add item + + + + ); + }} + + + + + Submit + + + ); +}; +``` + +## Validation + +If you need to validate the number of items in the array, you can provide a `validations` prop to the ``. If, for example, we require at least one item to be added to the list, we can either: + +* Hide the "Remove" button when there is only one item +* Add a `validations` prop + +The first one is easy, let's look at the second option: + +```js +const itemsValidations = [ + { + validator: ({ value }: { value: Array<{ title: string; subtitle: string }> }) => { + if (value.length === 0) { + return { + message: 'You need to add at least one item', + }; + } + }, + }, +]; + +const { emptyField } = fieldValidators; +const textFieldValidations = [{ validator: emptyField("The field can't be empty.") }]; + +export const DynamicFieldsValidation = () => { + const { form } = useForm(); + + const submitForm = async () => { + const { isValid, data } = await form.submit(); + + if (isValid) { + console.log(data); + } + }; + + return ( +
+ + {({ items, addItem, removeItem, error, form: { isSubmitted } }) => { + const isInvalid = error !== null && isSubmitted; + return ( + <> + + <> + {items.map((item) => ( + + + + + + + + + removeItem(item.id)} + iconType="minusInCircle" + aria-label="Remove item" + style={{ marginTop: '28px' }} + /> + + + ))} + + + + Add item + + + + ); + }} + + + + + Submit + + + ); +}; +``` + +## Reorder array items + +```js +export const DynamicFieldsReorder = () => { + const { form } = useForm(); + + const submitForm = async () => { + const { data } = await form.submit(); + console.log(data); + }; + + return ( +
+ + {({ items, addItem, removeItem, moveItem }) => { + const onDragEnd = ({ source, destination }: DropResult) => { + if (source && destination) { + moveItem(source.index, destination.index); + } + }; + + return ( + <> + + + + {items.map((item, idx) => { + return ( + + {(provided) => { + return ( + + +
+ +
+
+ + + + + + + + removeItem(item.id)} + iconType="minusInCircle" + aria-label="Remove item" + style={{ marginTop: '28px' }} + /> + +
+ ); + }} +
+ ); + })} +
+
+
+ + Add item + + + + ); + }} +
+ + + + Submit + + + ); +}; +``` \ No newline at end of file diff --git a/src/plugins/es_ui_shared/static/forms/docs/examples/fields_composition.mdx b/src/plugins/es_ui_shared/static/forms/docs/examples/fields_composition.mdx new file mode 100644 index 000000000000..260908f94a79 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/examples/fields_composition.mdx @@ -0,0 +1,167 @@ +--- +id: formLibExampleFieldsComposition +slug: /form-lib/examples/fields-composition +title: Fields composition +summary: Be DRY and compose your form +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +If your form does not have a fix set of fields (single interface) and you need to add/remove fields dynamically, you can leverage the power of field composition with the form lib. It let's you swap fields in your form whenever needed. Any field that **is not in the DOM** is automatically cleared when unmounting and its value won't be returned in the form data. +If you _do_ need to keep a field value, but hide the field in the UI, then you need to use CSS (`
...
`) + +Imagine you're building an app that lets people buy a car online. You want to build a form that lets the user select the model of the car (`sedan`, `golf cart`, `clown mobile`), and based on their selection you'll show a different form for configuring the selected model's options. + +Those are the 3 car configurations that the form can output: + +```js +// sedan +{ + model: 'sedan', + used: true, + plate: 'UIES2021', // unique config for this car +}; + +// golf cart +{ + model: 'golf_cart', + used: false, + forRent: true, // unique config for this car +}; + +// clown mobile +{ + model: 'clown_mobile', + used: true, + miles: 1.0, // unique config for this car +} +``` + +Let's create one component for each car that will expose its unique parameter(s). Those components won't have to render the `model` and the `used` form fields as they are common to all three cars and we will put them at the root level of the form. + +```js +// sedan_car.tsx + +const plateConfig = { + label: 'Plate number', +}; + +export const SedanCar = () => { + return ( + <> + + + ); +}; +``` + +```js +// golf_cart_car.tsx + +const forRentConfig = { + label: 'The cart is for rent', + defaultValue: true, +}; + +export const GolfCartCar = () => { + return ( + <> + + + ); +}; +``` + +```js +// clown_mobile_car.tsx + +const milesConfig = { + label: 'Current miles', + defaultValue: 1.0, + serializer: parseFloat, +}; + +export const ClownMobileCar = () => { + return ( + <> + + + ); +}; +``` + +And finally, let's build our form which will swap those components according to the selected car `model`. + +```js +import { UsedParameter } from './used_parameter'; +import { SedanCar } from './sedan_car'; +import { GolfCartCar } from './golf_cart_car'; +import { ClownMobileCar } from './clown_mobile_car'; + +const modelToComponentMap: { [key: string]: React.FunctionComponent } = { + sedan: SedanCar, + golfCart: GolfCartCar, + clownMobile: ClownMobileCar, +}; + +// We create a schema so we don't need to manually add the config +// to the component through props +const formSchema = { + model: { + label: 'Car model', + defaultValue: 'sedan', + }, + used: { + label: 'Car has been used', + defaultValue: false, + } +}; + +const modelOptions = [ + { + text: 'sedan', + }, + { + text: 'golfCart', + }, + { + text: 'clownMobile', + }, +]; + +export const CarConfigurator = () => { + const { form } = useForm({ schema: formSchema }); + const [{ model }] = useFormData<{ model: string }>({ form, watch: 'model' }); + + const renderCarConfiguration = () => { + // Select the car configuration according to the chosen model. + const CarConfiguration = modelToComponentMap[model]; + return ; + }; + + const submitForm = () => { + console.log(form.getFormData()); + }; + + return ( +
+ + + + {model !== undefined ? renderCarConfiguration() : null} + + + + + Submit + + + ); +}; +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/examples/listening_to_changes.mdx b/src/plugins/es_ui_shared/static/forms/docs/examples/listening_to_changes.mdx new file mode 100644 index 000000000000..c99184f5a5c0 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/examples/listening_to_changes.mdx @@ -0,0 +1,214 @@ +--- +id: formLibExampleListeningToChanges +slug: /form-lib/examples/listening-to-changes +title: Listening to changes +summary: React to changes deep down the tree +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +## Basic + +### Access the form data from the root component + +You can access the form data by using the hook. This hook has an optional `form` option that you only have to provide if you need to access the data in the **root** component. + +```js +// From the root component (where the "form" is declared) +export const MyComponent = () => { + const { form } = useForm(); + + const [formData] = useFormData({ form }); + + return ( +
+ + + {JSON.stringify(formData)} + + ); +}; +``` +### Access the form data from a child component + +To access the form data from inside a child component you also use the `useFormData()` hook, but this time you don't need to provide the `form` as it is read from context. + +```js +const FormFields = () => { + const [formData] = useFormData(); + + return ( + <> + + + {JSON.stringify(formData)} + + ) +}; + +export const MyComponent = () => { + const { form } = useForm(); + + return ( +
+ + + ); +}; +``` + +## Listen to specific form fields changes + +In some cases you only want to listen to some field change and don't want to trigger a re-render of your component for every field value change in your form. You can specify a **watch** (`string | string[]`) parameter for that. + +```js +export const ReactToSpecificFields = () => { + const { form } = useForm(); + + // Only listen for changes from the "showAddress" toggle + const [{ showAddress }] = useFormData({ form, watch: 'showAddress' }); + + return ( +
+ {/* Changing the "name" field won't trigger a re-render */} + + + + {showAddress && ( + <> +

800 W El Camino Real #350

+ + )} + + ); +}; +``` + +## Using the `onChange` handler + +Sometimes the good old `onChange` handler is all you need to react to a form field value change (instead of reading the form data and adding a `useEffect` to react to it). + +```js +export const OnChangeHandler = () => { + const { form } = useForm(); + + const onNameChange = (value: string) => { + console.log(value); + }; + + return ( +
+ + + ); +}; +``` + +## Forward the form state to a parent component + +If your UX requires to submit the form in a parent component (e.g. because that's where your submit button is located), you will need a way to access the form validity and the form data outside your form component. Unless your parent component needs to be aware of every field value change in the form (which should rarely be needed), you don't want to use the `useFormData()` hook and forward the data from there. This would create unnecessary re-renders. Instead it is better to forward the `getFormData()` handler on the form. + +This pattern is useful when, for example, the form is inside one of the steps of multi-step wizard and the button to go "next" is thus outside the scope of the component where the form is declared. + +```js +interface MyForm { + name: string; +} + +interface FormState { + isValid: boolean | undefined; + validate(): Promise; + getData(): MyForm; +} + +const schema: FormSchema = { + name: { + validations: [ + { + validator: ({ value }) => { + if (value === 'John') { + return { message: `The username "John" already exists` }; + } + }, + }, + ], + }, +}; + +interface Props { + defaultValue: MyForm; + onChange(formState: FormState): void; +} + +const MyForm = ({ defaultValue, onChange }: Props) => { + const { form } = useForm({ defaultValue, schema }); + const { isValid, validate, getFormData } = form; + + // getFormData() is a stable reference that is not mutated when the form data change. + // This means that it does not trigger a re-render on each form data change. + useEffect(() => { + const updatedFormState = { isValid, validate, getData: getFormData }; + + // Forward the state to the parent + onChange(updatedFormState); + }, [onChange, isValid, validate, getFormData]); + + return ( +
+ + + ); +}; + +export const ForwardFormStateToParent = () => { + // This would probably come from the server + const formDefaultValue: MyForm = { + name: 'John', + }; + + // As the parent component does not know anything about the form until the form calls an onChange(), + // we initially set the validate() and getData() to return the default state. + const initialState = { + isValid: true, + validate: async () => true, + getData: () => formDefaultValue, + }; + + const [formState, setFormState] = useState(initialState); + + const sendForm = useCallback(async () => { + // The form isValid state will stay "undefined" until either: + // - all the fields are dirty + // - we call the form "validate()" or "submit()" methods + + // This is why we first check if it is undefined and if it is, we call the validate() method + // which will validate **only** the fields that haven't been validated yet. + const isValid = formState.isValid ?? (await formState.validate()); + if (!isValid) { + // Show a callout somewhere... + return; + } + + console.log('Form data', formState.getData()); + }, [formState]); + + return ( + <> +

My form

+ + + Submit + + + ); +}; +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/examples/serializers_deserializers.mdx b/src/plugins/es_ui_shared/static/forms/docs/examples/serializers_deserializers.mdx new file mode 100644 index 000000000000..393711b393e0 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/examples/serializers_deserializers.mdx @@ -0,0 +1,104 @@ +--- +id: formLibExampleSerializersDeserializers +slug: /form-lib/examples/serializers-deserializers +title: Serializers & Deserializers +summary: No need for a 1:1 map of your API with your form fields, be creative! +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +Forms help users edit data. This data is often persisted, for example saved in Elasticsearch. When it's persisted, the shape of the data typically reflects the concerns of the domain or the persistence medium. When it's edited in a form, the shape of the data reflects different concerns, such as UI state. Data is **deserialized** from its persisted shape to its form-editable shape and **serialized** from its form-editable shape to its persisted shape. + +With that in mind, you can pass the following handlers to the form + +* **deserializer**: A function that converts the persisted shape to the form-editable shape. +* **serializer**: A function that converts the form-editable shape to the persisted shape. + +Let's see it through an example. + +```js +// This is the persisted shape of our data +interface MyForm { + name: string; + customLabel: string; +} + +// This is the internal fields we will need in our form +interface MyFormUI { + name: string; + customLabel: string; + showAdvancedSettings: boolean; +} + +const formDeserializer = ({ name, customLabel }: MyForm): MyFormUI => { + // Show the advanced settings if a custom label is provided + const showAdvancedSettings = Boolean(customLabel); + + return { + name, + customLabel, + showAdvancedSettings, + }; +}; + +const formSerializer = ({ name, customLabel }: MyFormUI): MyForm => { + // We don't forward the "showAdvancedSettings" field + return { name, customLabel }; +}; + + +const schema: FormSchema = { + name: { label: 'Name' }, + customLabel: { label: 'CustomLabel' }, + showAdvancedSettings: { + label: 'Show advanced settings', + defaultValue: false, + }, +}; + +export const SerializersAndDeserializers = () => { + // Data coming from the server + const fetchedData: MyForm = { + name: 'My resource', + customLabel: 'My custom label', + }; + + const { form } = useForm({ + defaultValue: fetchedData, + schema, + deserializer: formDeserializer, + serializer: formSerializer, + }); + + const [{ showAdvancedSettings }] = useFormData({ + form, + watch: ['showAdvancedSettings'], + }); + + const submitForm = async () => { + const { isValid, data } = await form.submit(); + if (isValid) { + console.log(data); + } + }; + + return ( +
+ + + + + + {/* We don't remove it from the DOM as we would lose the value entered in the field. */} +
+ +
+ + + + Submit + + + ); +}; +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/examples/style_fields.mdx b/src/plugins/es_ui_shared/static/forms/docs/examples/style_fields.mdx new file mode 100644 index 000000000000..db7c98772edd --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/examples/style_fields.mdx @@ -0,0 +1,66 @@ +--- +id: formLibExampleStyleFields +slug: /form-lib/examples/styles-fields +title: Style fields +summary: Customize your fields however you want +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +The `` is a render prop component that returns a . +You can then connect its states and handlers to any UI. + +```js +export const MyComponent = () => { + const { form } = useForm(); + + // Notice how we have typed the value of the field with ...> + return ( +
+ path="firstname" config={{ label: 'First name' }}> + {(field) => { + const { + isChangingValue, + errors, + label, + helpText, + value, + onChange, + isValidating + } = field; + + const isInvalid = !isChangingValue && errors.length > 0; + const errorMessage = !isChangingValue && errors.length ? errors[0].message : null; + + return ( + + + + ); + }} + + + ); +}; +``` + +## Using the `component` prop + +The above example can be simplified by extracting the children into its own component and by using the `component` prop on ``. +The component will receive the `field` hook as a prop and any other props you pass to `componentProps`. + +```js + +``` + +**Note:** Before creating your own reusable component have a look at which handle most of the form inputs of [the EUI framework](https://elastic.github.io/eui). \ No newline at end of file diff --git a/src/plugins/es_ui_shared/static/forms/docs/examples/validation.mdx b/src/plugins/es_ui_shared/static/forms/docs/examples/validation.mdx new file mode 100644 index 000000000000..bbd89d707e4f --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/examples/validation.mdx @@ -0,0 +1,274 @@ +--- +id: formLibExampleValidation +slug: /form-lib/examples/validation +title: Validation +summary: Don't let invalid data leak out of your form! +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +## Basic + +```js +import React from 'react'; +import { + useForm, + Form, + UseField, + FieldConfig, +} from ''; + +interface MyForm { + name: string; +} + +const nameConfig: FieldConfig = { + validations: [ + { + validator: ({ value }) => { + if (value.trim() === '') { + return { + message: 'The name cannot be empty.', + }; + } + }, + }, + // ... + // You can add as many validations as you need. + + // It is a good practice to keep validators single purposed, + // and compose them in the "validations" array. + // This way if any other field has the same validation we can easily + // copy it over or extract it and import it in multiple places. + ], +}; + +export const MyComponent = () => { + const { form } = useForm(); + + return ( +
+ path="name" config={nameConfig}> + {(field) => { + const isInvalid = !field.isChangingValue && field.errors.length > 0; + const errorMessage = !isChangingValue && errors.length ? errors[0].message : null; + + return ( + + + + ); + }} + + + ); +}; +``` + +**Note:** Before creating your own validator, verify that it does not exist already in our . + +## Asynchronous validation + +You can mix synchronous and asynchronous validations. Although it is usually better to first declare the synchronous one(s), this way if any of those fail, the asynchronous validation is not executed. + +In the example below, if you enter "bad" in the field, the asynchronous validation will fail. + +```js +const nameConfig: FieldConfig = { + validations: [ + { + validator: emptyField('The name cannot be empty,'), + }, + { + validator: indexNameField(i18n), + }, + { + validator: ({ value }) => { + return new Promise((resolve) => { + setTimeout(() => { + if (value === 'bad') { + resolve({ message: 'This index already exists' }); + } + resolve(); + }, 2000); + }); + }, + }, + ], +}; +``` + +### Cancel asynchronous validation + +If you need to cancel the previous asynchronous validation before calling the new one, you can do it by adding a `cancel()` handler to the Promise returned. + +**Note:** Make sure **to not** use an `async/await` validator function when returning your Promise, or the `cancel` handler will be stripped out. + +```js +const nameConfig: FieldConfig = { + validations: [ + { + validator: ({ value }) => { + let isCanceled = false; + const promise: Promise & { cancel?(): void } = new Promise((resolve) => { + setTimeout(() => { + if (isCanceled) { + console.log('This promise has been canceled, skipping'); + return resolve(); + } + + if (value === 'bad') { + resolve({ message: 'This index already exists' }); + } + resolve(); + }, 2000); + }); + + promise.cancel = () => { + isCanceled = true; + }; + + return promise; + }, + }, + ], +}; + +export const CancelAsyncValidation = () => { + const { form } = useForm(); + return ( +
+ path="name" config={nameConfig}> + {(field) => { + const isInvalid = !field.isChangingValue && field.errors.length > 0; + return ( + <> + + {isInvalid &&
{field.getErrorsMessages()}
} + + ); + }} + + + ); +}; +``` + +## Validating arrays of items + +When validating an array of items we might have to handle **two types of validations**: one to make sure the array is valid (e.g. it is not empty or it contains X number of items), and another one to make sure that each item in the array is valid. + +To solve that problem, you can give a `type` to a validation to distinguish between different validations. + +Let's go through an example. Imagine that we have a form field to enter "tags" (an array of string). The array cannot be left empty and the tags cannot contain the "?" and "/" characters. + +The form field `value` is an array of string, and the default validation(s) (those without a `type` defined) will run against this **array**. For the validation of the items we will use a **typed** validation. + +**Note:** Typed validation are not executed when the field value changes, we need to manually validate the field with `field.validate(...)`. + +```js +const tagsConfig: FieldConfig = { + defaultValue: [], + validations: [ + // Validator for the Array + { validator: emptyField('You need to add at least one tag') }, + { + // Validator for the items + validator: containsCharsField({ + message: ({ charsFound }) => { + return `Remove the char ${charsFound.join(', ')} from the field.`; + }, + chars: ['?', '/'], + }), + // We give a custom type to this validation. + // This validation won't be executed when the field value changes + // (when items are added or removed from the array). + // This means that we will need to manually call: + // field.validate({ validationType: 'arrayItem' }) + // to run this validation. + type: 'arrayItem', + }, + ], +}; + +export const MyComponent = () => { + const onSubmit: FormConfig['onSubmit'] = async (data, isValid) => { + console.log('Is form valid:', isValid); + console.log('Form data', data); + }; + + const { form } = useForm({ onSubmit }); + + return ( +
+ path="tags" config={tagsConfig}> + {(field) => { + // Check for error messages on **both** the default validation and the "arrayItem" type + const errorMessage = + field.getErrorsMessages() ?? field.getErrorsMessages({ validationType: 'arrayItem' }); + + const onCreateOption = (value: string) => { + const { isValid } = field.validate({ + value: value, + validationType: 'arrayItem', // Validate **only** this validation type against the value provided + }) as { isValid: boolean }; + + if (!isValid) { + // Reject the user's input. + return false; + } + + // Add the tag to the array + field.setValue([...field.value, value]); + }; + + const onChange = (options: EuiComboBoxOptionOption[]) => { + field.setValue(options.map((option) => option.label)); + }; + + const onSearchChange = (value: string) => { + if (value !== undefined) { + // Clear immediately the "arrayItem" validation type + field.clearErrors('arrayItem'); + } + }; + + return ( + <> + ({ label: v }))} + onCreateOption={onCreateOption} + onChange={onChange} + onSearchChange={onSearchChange} + fullWidth + /> + {!field.isValid &&
{errorMessage}
} + + + ); + }} + + + ); +}; +``` + +Great, but that's **a lot** of code for a simple tags field input. Fortunatelly the `` helper component takes care of all the heavy lifting for us. . diff --git a/src/plugins/es_ui_shared/static/forms/docs/helpers/components.mdx b/src/plugins/es_ui_shared/static/forms/docs/helpers/components.mdx new file mode 100644 index 000000000000..1b35e41a9873 --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/helpers/components.mdx @@ -0,0 +1,172 @@ +--- +id: formLibHelpersComponents +slug: /form-lib/helpers/components +title: Components +summary: Build complex forms the easy way +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +The core of the form lib is UI agnostic. It can be used with any React UI library to render the form fields. + +At Elastic we use [the EUI framework](https://elastic.github.io/eui). We created components that connect our `FieldHook` to the `` and its corresponding EUI field. + +You can import these components and pass them to the `component` prop on your ``. + +```js +import { Form, useForm, UseField, TextField, ToggleField } from ''; + +export const MyFormComponent = () => { + const { form } = useForm(); + + return ( +
+ + + + ); +}; +``` + +As you can see it is very straightforward. If there are any validation error(s) on those fields, they will be correctly set on the underlying ``, as well as the field `value`, `onChange` handler, label, helpText... + +## Fields components + +This is the list of component we currently have. This list might grow in the future if we see the need to support additional fields. + +* TextField +* TextAreaField +* NumericField +* CheckBoxField +* ToggleField +* ComboBoxField* +* JsonEditorField +* SelectField +* SuperSelectField +* MultiSelectField +* RadioGroupField +* RangeField + +(*) Currently the `` only support the free form entry of items (e.g a list of "tags" that the user enters). This means that it does not work (yet) **with predefined selections** to chose from. + +## `euiFieldProps` + +Those helper components have been set to a default state that cover most of our use cases. You can override those defaults by passing new props to the `euiFieldProps`. + +```js + prop override + } + }} +/> +``` + +## `Field` + +There is a special `` component that you can use if you prefer. If you use this component, it will check and map to the corresponding component in the list above. If the type does not match any known component, a `` component is rendered. + +It is recommended to use the available `FIELD_TYPES` constant to indicate the type of a field in the `FieldConfig`. + +```js +const schema: FormSchema = { + name: { + label: 'Name', + type: FIELD_TYPES.TEXT + }, + isAdmin: { + label: 'User is admin', + type: FIELD_TYPES.CHECKBOX, + }, + country: { + label: 'Country, + type: FIELD_TYPES.SELECT, + } +}; + +export const MyFormComponent = () => { + const { form } = useForm({ schema }); + + // You now can use the component everywhere + return ( +
+ + + + + ); +}; +``` + +The above example can be simplified one step further with . + +```js +const schema: FormSchema = { + name: { + label: 'Name', + type: FIELD_TYPES.TEXT + }, + ... +}; + +const UseField = getUseField({ prop: Field }); + +// Nice and tidy form component :) +export const MyFormComponent = () => { + const { form } = useForm({ schema }); + + return ( +
+ + + + + ); +}; +``` +## Examples +### ComboBoxField + +The ComboBox has the particualrity of sometimes requiring **two validations**. One for the array and one for the items of the array. In the example below you can see how easy it is to generate an array of tags (`string[]`) in your form thanks to the `` helper component. + +```js +const tagsConfig: FieldConfig = { + defaultValue: [], + validations: [ + // Validate that the array is not empty + { validator: emptyField('You need to add at least one tag')}, + { + // Validate each item about to be added to the combo box + validator: containsCharsField({ + message: ({ charsFound }) => { + return `Remove the char ${charsFound.join(', ')} from the field.`; + }, + chars: ['?', '/'], + }), + // We use a typed validation to validate the array items + // Make sure to use the "ARRAY_ITEM" constant + type: VALIDATION_TYPES.ARRAY_ITEM, + }, + ], +}; + +export const ValidationWithTypeComboBoxField = () => { + const onSubmit: FormConfig['onSubmit'] = async (data, isValid) => { + console.log('Is form valid:', isValid); + console.log('Form data', data); + }; + + const { form } = useForm({ onSubmit }); + + return ( +
+ path="tags" config={tagsConfig} component={ComboBoxField} /> + + + ); +}; +``` diff --git a/src/plugins/es_ui_shared/static/forms/docs/helpers/validators.mdx b/src/plugins/es_ui_shared/static/forms/docs/helpers/validators.mdx new file mode 100644 index 000000000000..aba2d6dffb1b --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/helpers/validators.mdx @@ -0,0 +1,46 @@ +--- +id: formLibHelpersValidators +slug: /form-lib/helpers/validators +title: Validators +summary: Build complex forms the easy way +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +As you have seen in the `` configuration, the validations are objects with attached to them. + +After building many forms, we have realized that we are often doing the same validation on a field: is the field empty? does it contain a character not allowed?, does it start with an invalid character? is it valid JSON? ... + +So instead of reinventing the wheel on each form we have exported to most common validators as reusable function that you can use directly in your field validations. Some validator might expose directly the handler to validate, some others expose a function that you need to call with some parameter and you will receive the validator back. + +```js +import { fieldValidators } from ''; + +const { emptyField } = fieldValidators; + +// Some validator expose a function that you need to call to receive the validator handler +const nameConfig: FieldConfig = { + validations: [{ + validator: emptyField('Your custom error message'), + }, { + validator: containsCharsField({ + chars: ' ', + message: 'Spaces are not allowed in a component template name.', + }) + }], +}; +``` + +We have validators for valid + +* index pattern name +* JSON +* URL +* number +* string start with char +* string contains char +* ... + +Before your write your own validator, check (thanks to Typescript suggestions in your IDE) what is already exposed from the `fieldValidators` object. + +And if need to build your own validator and you think that it is common enough for other forms, make a contribution to the form lib and open a PR to add it to our list! diff --git a/src/plugins/es_ui_shared/static/forms/docs/welcome.mdx b/src/plugins/es_ui_shared/static/forms/docs/welcome.mdx new file mode 100644 index 000000000000..2d1156f403bf --- /dev/null +++ b/src/plugins/es_ui_shared/static/forms/docs/welcome.mdx @@ -0,0 +1,30 @@ +--- +id: formLibWelcome +slug: /form-lib/welcome +title: Welcome +summary: Build complex forms the easy way +tags: ['forms', 'kibana', 'dev'] +date: 2021-04-14 +--- + +## Presentation + +The form library helps us build forms efficiently by providing a system whose main task is (1) to abstract away the state management of fields values and validity and (2) running validations on the fields when their values change. + +The system is composed of **three parts**: + +* +* +* + +## Motivation + +In the Elasticsearch UI team we build many forms. Many many forms! :blush: For each of them, we used to manually declare the form state, write validation functions, call them on certain events and then update the form state. We were basically re-inventing the wheel for each new form we built. It took our precious dev time to re-think the approach each time, but even more problematic: it meant that each of our form was built slightly differently. Maintaining those forms meant that we needed to remember how the state was being updated on a specific form and how its validation worked. This was far from efficient... + +We needed a system in place that took care of the repetitive task of managing a form state and validating its value, so we could dedicate more time doing what we love: **build amazing UX for our users!**. + +The form lib was born. + +## When shoud I use the form lib? + +As soon as you have a form with 3+ fields and some validation that you need to run on any of those fields, the form lib can help you reduce the boilerplate and the time to get your form running. Of course, the more you use it, the more addicted you will get! :smile: diff --git a/x-pack/package.json b/x-pack/package.json index 0c0924b51264..c09db6748312 100644 --- a/x-pack/package.json +++ b/x-pack/package.json @@ -35,7 +35,6 @@ "@kbn/test": "link:../packages/kbn-test" }, "dependencies": { - "@elastic/safer-lodash-set": "link:../packages/elastic-safer-lodash-set", "@kbn/i18n": "link:../packages/kbn-i18n", "@kbn/interpreter": "link:../packages/kbn-interpreter", "@kbn/ui-framework": "link:../packages/kbn-ui-framework" diff --git a/x-pack/plugins/alerting/public/alert_api.test.ts b/x-pack/plugins/alerting/public/alert_api.test.ts index 152097d084eb..023ea255e1c4 100644 --- a/x-pack/plugins/alerting/public/alert_api.test.ts +++ b/x-pack/plugins/alerting/public/alert_api.test.ts @@ -78,25 +78,6 @@ describe('loadAlertType', () => { expect(await loadAlertType({ http, id: 'test-another' })).toEqual(alertType); }); - - test('should throw if required alertType is missing', async () => { - http.get.mockResolvedValueOnce([ - { - id: 'test-another', - name: 'Test Another', - actionVariables: [], - actionGroups: [{ id: 'default', name: 'Default' }], - defaultActionGroupId: 'default', - minimumLicenseRequired: 'basic', - recoveryActionGroup: RecoveredActionGroup, - producer: 'alerts', - }, - ]); - - expect(loadAlertType({ http, id: 'test' })).rejects.toMatchInlineSnapshot( - `[Error: Alert type "test" is not registered.]` - ); - }); }); describe('loadAlert', () => { diff --git a/x-pack/plugins/alerting/public/alert_api.ts b/x-pack/plugins/alerting/public/alert_api.ts index d1213c80b95b..f3faa65a4b38 100644 --- a/x-pack/plugins/alerting/public/alert_api.ts +++ b/x-pack/plugins/alerting/public/alert_api.ts @@ -6,7 +6,6 @@ */ import { HttpSetup } from 'kibana/public'; -import { i18n } from '@kbn/i18n'; import { LEGACY_BASE_ALERT_API_PATH } from '../common'; import type { Alert, AlertType } from '../common'; @@ -20,21 +19,11 @@ export async function loadAlertType({ }: { http: HttpSetup; id: AlertType['id']; -}): Promise { - const maybeAlertType = ((await http.get( +}): Promise { + const alertTypes = (await http.get( `${LEGACY_BASE_ALERT_API_PATH}/list_alert_types` - )) as AlertType[]).find((type) => type.id === id); - if (!maybeAlertType) { - throw new Error( - i18n.translate('xpack.alerting.loadAlertType.missingAlertTypeError', { - defaultMessage: 'Alert type "{id}" is not registered.', - values: { - id, - }, - }) - ); - } - return maybeAlertType; + )) as AlertType[]; + return alertTypes.find((type) => type.id === id); } export async function loadAlert({ diff --git a/x-pack/plugins/alerting/public/plugin.ts b/x-pack/plugins/alerting/public/plugin.ts index 5ca3c0af2680..025467d92a6a 100644 --- a/x-pack/plugins/alerting/public/plugin.ts +++ b/x-pack/plugins/alerting/public/plugin.ts @@ -30,14 +30,19 @@ export class AlertingPublicPlugin implements Plugin - this.alertNavigationRegistry!.register( - consumer, - await loadAlertType({ http: core.http, id: alertType }), - handler - ); + ) => { + const alertType = await loadAlertType({ http: core.http, id: alertTypeId }); + if (!alertType) { + // eslint-disable-next-line no-console + console.log( + `Unable to register navigation for alert type "${alertTypeId}" because it is not registered on the server side.` + ); + return; + } + this.alertNavigationRegistry!.register(consumer, alertType, handler); + }; const registerDefaultNavigation = async (consumer: string, handler: AlertNavigationHandler) => this.alertNavigationRegistry!.registerDefault(consumer, handler); @@ -54,6 +59,14 @@ export class AlertingPublicPlugin implements Plugin { @@ -21,23 +21,19 @@ export const getTickHash = (columns: PointSeriesColumns, rows: DatatableRow[]) = }; if (get(columns, 'x.type') === 'string') { - sortBy(rows, ['x']) - .reverse() - .forEach((row) => { - if (!ticks.x.hash[row.x]) { - ticks.x.hash[row.x] = ticks.x.counter++; - } - }); + rows.forEach((row) => { + if (!ticks.x.hash[row.x]) { + ticks.x.hash[row.x] = ticks.x.counter++; + } + }); } if (get(columns, 'y.type') === 'string') { - sortBy(rows, ['y']) - .reverse() - .forEach((row) => { - if (!ticks.y.hash[row.y]) { - ticks.y.hash[row.y] = ticks.y.counter++; - } - }); + rows.reverse().forEach((row) => { + if (!ticks.y.hash[row.y]) { + ticks.y.hash[row.y] = ticks.y.counter++; + } + }); } return ticks; diff --git a/x-pack/plugins/canvas/public/functions/plot/index.ts b/x-pack/plugins/canvas/public/functions/plot/index.ts index 47b9212bbc4c..c0c73c3a21bc 100644 --- a/x-pack/plugins/canvas/public/functions/plot/index.ts +++ b/x-pack/plugins/canvas/public/functions/plot/index.ts @@ -81,8 +81,7 @@ export function plotFunctionFactory( fn: (input, args) => { const seriesStyles: { [key: string]: SeriesStyle } = keyBy(args.seriesStyle || [], 'label') || {}; - - const sortedRows = sortBy(input.rows, ['x', 'y', 'color', 'size', 'text']); + const sortedRows = input.rows; const ticks = getTickHash(input.columns, sortedRows); const font = args.font ? getFontSpec(args.font) : {}; diff --git a/x-pack/plugins/cloud/README.md b/x-pack/plugins/cloud/README.md index 13172e0a6ddc..3fe0b3c8b841 100644 --- a/x-pack/plugins/cloud/README.md +++ b/x-pack/plugins/cloud/README.md @@ -1,3 +1,11 @@ # `cloud` plugin The `cloud` plugin adds cloud specific features to Kibana. +The client-side plugin configures following values: +- `isCloudEnabled = true` for both ESS and ECE deployments +- `cloudId` is the ID of the Cloud deployment Kibana is running on +- `baseUrl` is the URL of the Cloud interface, for Elastic Cloud production environment the value is `https://cloud.elastic.co` +- `deploymentUrl` is the URL of the specific Cloud deployment Kibana is running on, the value is already concatenated with `baseUrl` +- `profileUrl` is the URL of the Cloud user profile page, the value is already concatenated with `baseUrl` +- `organizationUrl` is the URL of the Cloud account (& billing) page, the value is already concatenated with `baseUrl` +- `cname` value is the same as `baseUrl` on ESS but can be customized on ECE diff --git a/x-pack/plugins/cloud/public/plugin.test.ts b/x-pack/plugins/cloud/public/plugin.test.ts new file mode 100644 index 000000000000..5a66e6cf9c52 --- /dev/null +++ b/x-pack/plugins/cloud/public/plugin.test.ts @@ -0,0 +1,190 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { nextTick } from '@kbn/test/jest'; +import { coreMock } from 'src/core/public/mocks'; +import { homePluginMock } from 'src/plugins/home/public/mocks'; +import { securityMock } from '../../security/public/mocks'; +import { CloudPlugin } from './plugin'; + +describe('Cloud Plugin', () => { + describe('#start', () => { + function setupPlugin({ + roles = [], + simulateUserError = false, + }: { roles?: string[]; simulateUserError?: boolean } = {}) { + const plugin = new CloudPlugin( + coreMock.createPluginInitializerContext({ + id: 'cloudId', + base_url: 'https://cloud.elastic.co', + deployment_url: '/abc123', + profile_url: '/profile/alice', + organization_url: '/org/myOrg', + }) + ); + const coreSetup = coreMock.createSetup(); + const homeSetup = homePluginMock.createSetupContract(); + const securitySetup = securityMock.createSetup(); + if (simulateUserError) { + securitySetup.authc.getCurrentUser.mockRejectedValue(new Error('Something happened')); + } else { + securitySetup.authc.getCurrentUser.mockResolvedValue( + securityMock.createMockAuthenticatedUser({ + roles, + }) + ); + } + + plugin.setup(coreSetup, { home: homeSetup, security: securitySetup }); + + return { coreSetup, securitySetup, plugin }; + } + + it('registers help support URL', async () => { + const { plugin } = setupPlugin(); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + expect(coreStart.chrome.setHelpSupportUrl).toHaveBeenCalledTimes(1); + expect(coreStart.chrome.setHelpSupportUrl.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + "https://support.elastic.co/", + ] + `); + }); + + it('registers a custom nav link for superusers', async () => { + const { plugin } = setupPlugin({ roles: ['superuser'] }); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + await nextTick(); + + expect(coreStart.chrome.setCustomNavLink).toHaveBeenCalledTimes(1); + expect(coreStart.chrome.setCustomNavLink.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + Object { + "euiIconType": "arrowLeft", + "href": "https://cloud.elastic.co/abc123", + "title": "Manage this deployment", + }, + ] + `); + }); + + it('registers a custom nav link when there is an error retrieving the current user', async () => { + const { plugin } = setupPlugin({ simulateUserError: true }); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + await nextTick(); + + expect(coreStart.chrome.setCustomNavLink).toHaveBeenCalledTimes(1); + expect(coreStart.chrome.setCustomNavLink.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + Object { + "euiIconType": "arrowLeft", + "href": "https://cloud.elastic.co/abc123", + "title": "Manage this deployment", + }, + ] + `); + }); + + it('does not register a custom nav link for non-superusers', async () => { + const { plugin } = setupPlugin({ roles: ['not-a-superuser'] }); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + await nextTick(); + + expect(coreStart.chrome.setCustomNavLink).not.toHaveBeenCalled(); + }); + + it('registers user profile links for superusers', async () => { + const { plugin } = setupPlugin({ roles: ['superuser'] }); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + await nextTick(); + + expect(securityStart.navControlService.addUserMenuLinks).toHaveBeenCalledTimes(1); + expect(securityStart.navControlService.addUserMenuLinks.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + Array [ + Object { + "href": "https://cloud.elastic.co/profile/alice", + "iconType": "user", + "label": "Profile", + "order": 100, + "setAsProfile": true, + }, + Object { + "href": "https://cloud.elastic.co/org/myOrg", + "iconType": "gear", + "label": "Account & Billing", + "order": 200, + }, + ], + ] + `); + }); + + it('registers profile links when there is an error retrieving the current user', async () => { + const { plugin } = setupPlugin({ simulateUserError: true }); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + await nextTick(); + + expect(securityStart.navControlService.addUserMenuLinks).toHaveBeenCalledTimes(1); + expect(securityStart.navControlService.addUserMenuLinks.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + Array [ + Object { + "href": "https://cloud.elastic.co/profile/alice", + "iconType": "user", + "label": "Profile", + "order": 100, + "setAsProfile": true, + }, + Object { + "href": "https://cloud.elastic.co/org/myOrg", + "iconType": "gear", + "label": "Account & Billing", + "order": 200, + }, + ], + ] + `); + }); + + it('does not register profile links for non-superusers', async () => { + const { plugin } = setupPlugin({ roles: ['not-a-superuser'] }); + + const coreStart = coreMock.createStart(); + const securityStart = securityMock.createStart(); + plugin.start(coreStart, { security: securityStart }); + + await nextTick(); + + expect(securityStart.navControlService.addUserMenuLinks).not.toHaveBeenCalled(); + }); + }); +}); diff --git a/x-pack/plugins/cloud/public/plugin.ts b/x-pack/plugins/cloud/public/plugin.ts index 8ca4f7711811..8ba0dfdc8b08 100644 --- a/x-pack/plugins/cloud/public/plugin.ts +++ b/x-pack/plugins/cloud/public/plugin.ts @@ -7,7 +7,7 @@ import { CoreSetup, CoreStart, Plugin, PluginInitializerContext } from 'src/core/public'; import { i18n } from '@kbn/i18n'; -import { SecurityPluginStart } from '../../security/public'; +import { AuthenticatedUser, SecurityPluginSetup, SecurityPluginStart } from '../../security/public'; import { getIsCloudEnabled } from '../common/is_cloud_enabled'; import { ELASTIC_SUPPORT_LINK } from '../common/constants'; import { HomePublicPluginSetup } from '../../../../src/plugins/home/public'; @@ -25,6 +25,7 @@ export interface CloudConfigType { interface CloudSetupDependencies { home?: HomePublicPluginSetup; + security?: Pick; } interface CloudStartDependencies { @@ -44,13 +45,14 @@ export interface CloudSetup { export class CloudPlugin implements Plugin { private config!: CloudConfigType; private isCloudEnabled: boolean; + private authenticatedUserPromise?: Promise; constructor(private readonly initializerContext: PluginInitializerContext) { this.config = this.initializerContext.config.get(); this.isCloudEnabled = false; } - public setup(core: CoreSetup, { home }: CloudSetupDependencies) { + public setup(core: CoreSetup, { home, security }: CloudSetupDependencies) { const { id, cname, @@ -68,6 +70,10 @@ export class CloudPlugin implements Plugin { } } + if (security) { + this.authenticatedUserPromise = security.authc.getCurrentUser().catch(() => null); + } + return { cloudId: id, cname, @@ -82,19 +88,47 @@ export class CloudPlugin implements Plugin { public start(coreStart: CoreStart, { security }: CloudStartDependencies) { const { deployment_url: deploymentUrl, base_url: baseUrl } = this.config; coreStart.chrome.setHelpSupportUrl(ELASTIC_SUPPORT_LINK); - if (baseUrl && deploymentUrl) { - coreStart.chrome.setCustomNavLink({ - title: i18n.translate('xpack.cloud.deploymentLinkLabel', { - defaultMessage: 'Manage this deployment', - }), - euiIconType: 'arrowLeft', - href: getFullCloudUrl(baseUrl, deploymentUrl), - }); - } - if (security && this.isCloudEnabled) { - const userMenuLinks = createUserMenuLinks(this.config); - security.navControlService.addUserMenuLinks(userMenuLinks); - } + const setLinks = (authorized: boolean) => { + if (!authorized) return; + + if (baseUrl && deploymentUrl) { + coreStart.chrome.setCustomNavLink({ + title: i18n.translate('xpack.cloud.deploymentLinkLabel', { + defaultMessage: 'Manage this deployment', + }), + euiIconType: 'arrowLeft', + href: getFullCloudUrl(baseUrl, deploymentUrl), + }); + } + + if (security && this.isCloudEnabled) { + const userMenuLinks = createUserMenuLinks(this.config); + security.navControlService.addUserMenuLinks(userMenuLinks); + } + }; + + this.checkIfAuthorizedForLinks() + .then(setLinks) + // In the event of an unexpected error, fail *open*. + // Cloud admin console will always perform the actual authorization checks. + .catch(() => setLinks(true)); + } + + /** + * Determines if the current user should see links back to Cloud. + * This isn't a true authorization check, but rather a heuristic to + * see if the current user is *likely* a cloud deployment administrator. + * + * At this point, we do not have enough information to reliably make this determination, + * but we do know that all cloud deployment admins are superusers by default. + */ + private async checkIfAuthorizedForLinks() { + // Security plugin is disabled + if (!this.authenticatedUserPromise) return true; + // Otherwise check roles. If user is not defined due to an unexpected error, then fail *open*. + // Cloud admin console will always perform the actual authorization checks. + const user = await this.authenticatedUserPromise; + return user?.roles.includes('superuser') ?? true; } } diff --git a/x-pack/plugins/cloud/server/plugin.ts b/x-pack/plugins/cloud/server/plugin.ts index 6abfb864d1cd..fea8be9f934e 100644 --- a/x-pack/plugins/cloud/server/plugin.ts +++ b/x-pack/plugins/cloud/server/plugin.ts @@ -10,6 +10,7 @@ import { CoreSetup, Logger, Plugin, PluginInitializerContext } from 'src/core/se import { CloudConfigType } from './config'; import { registerCloudUsageCollector } from './collectors'; import { getIsCloudEnabled } from '../common/is_cloud_enabled'; +import { parseDeploymentIdFromDeploymentUrl } from './utils'; interface PluginsSetup { usageCollection?: UsageCollectionSetup; @@ -17,6 +18,7 @@ interface PluginsSetup { export interface CloudSetup { cloudId?: string; + deploymentId?: string; isCloudEnabled: boolean; apm: { url?: string; @@ -40,6 +42,7 @@ export class CloudPlugin implements Plugin { return { cloudId: this.config.id, + deploymentId: parseDeploymentIdFromDeploymentUrl(this.config.deployment_url), isCloudEnabled, apm: { url: this.config.apm?.url, diff --git a/x-pack/plugins/cloud/server/utils.test.ts b/x-pack/plugins/cloud/server/utils.test.ts new file mode 100644 index 000000000000..00e7de7336c7 --- /dev/null +++ b/x-pack/plugins/cloud/server/utils.test.ts @@ -0,0 +1,20 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { parseDeploymentIdFromDeploymentUrl } from './utils'; + +describe('parseDeploymentIdFromDeploymentUrl', () => { + it('should return undefined if there is no deploymentUrl configured', () => { + expect(parseDeploymentIdFromDeploymentUrl()).toBeUndefined(); + }); + + it('should return the deploymentId if this is a valid deployment url', () => { + expect(parseDeploymentIdFromDeploymentUrl('deployments/uuid-deployment-1')).toBe( + 'uuid-deployment-1' + ); + }); +}); diff --git a/x-pack/plugins/cloud/server/utils.ts b/x-pack/plugins/cloud/server/utils.ts new file mode 100644 index 000000000000..635f0e83f79e --- /dev/null +++ b/x-pack/plugins/cloud/server/utils.ts @@ -0,0 +1,13 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export function parseDeploymentIdFromDeploymentUrl(deploymentUrl?: string) { + if (!deploymentUrl) { + return; + } + return deploymentUrl.split('/').pop(); +} diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/empty_state.test.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/empty_state.test.tsx new file mode 100644 index 000000000000..f1382bb5972b --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/empty_state.test.tsx @@ -0,0 +1,27 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { shallow } from 'enzyme'; + +import { EuiEmptyPrompt, EuiButton } from '@elastic/eui'; + +import { EmptyState } from './'; + +describe('EmptyState', () => { + it('renders', () => { + const wrapper = shallow() + .find(EuiEmptyPrompt) + .dive(); + + expect(wrapper.find('h2').text()).toEqual('Create your first synonym set'); + expect(wrapper.find(EuiButton).prop('href')).toEqual( + expect.stringContaining('/synonyms-guide.html') + ); + }); +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/empty_state.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/empty_state.tsx new file mode 100644 index 000000000000..2eb6643bda50 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/empty_state.tsx @@ -0,0 +1,52 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { EuiPanel, EuiEmptyPrompt, EuiButton } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; + +import { DOCS_PREFIX } from '../../../routes'; + +import { SynonymIcon } from './'; + +export const EmptyState: React.FC = () => { + return ( + + + {i18n.translate('xpack.enterpriseSearch.appSearch.engine.synonyms.empty.title', { + defaultMessage: 'Create your first synonym set', + })} + + } + body={ +

+ {i18n.translate('xpack.enterpriseSearch.appSearch.engine.synonyms.empty.description', { + defaultMessage: + 'Synonyms relate queries with similar context or meaning together. Use them to guide users to relevant content.', + })} +

+ } + actions={ + + {i18n.translate('xpack.enterpriseSearch.appSearch.engine.synonyms.empty.buttonLabel', { + defaultMessage: 'Read the synonyms guide', + })} + + } + /> +
+ ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/index.ts b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/index.ts new file mode 100644 index 000000000000..8a2bf1c0d2f7 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/index.ts @@ -0,0 +1,10 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { SynonymIcon } from './synonym_icon'; +export { SynonymCard } from './synonym_card'; +export { EmptyState } from './empty_state'; diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_card.test.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_card.test.tsx new file mode 100644 index 000000000000..ef24e206ed68 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_card.test.tsx @@ -0,0 +1,38 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { shallow } from 'enzyme'; + +import { EuiCard, EuiButton } from '@elastic/eui'; + +import { SynonymCard, SynonymIcon } from './'; + +describe('SynonymCard', () => { + const MOCK_SYNONYM_SET = { + id: 'syn-1234567890', + synonyms: ['lorem', 'ipsum', 'dolor', 'sit', 'amet'], + }; + + const wrapper = shallow() + .find(EuiCard) + .dive(); + + it('renders with the first synonym as the title', () => { + expect(wrapper.find('h2').text()).toEqual('lorem'); + }); + + it('renders a synonym icon for each subsequent synonym', () => { + expect(wrapper.find(SynonymIcon)).toHaveLength(4); + }); + + it('renders a manage synonym button', () => { + wrapper.find(EuiButton).simulate('click'); + // TODO: expect open modal action + }); +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_card.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_card.tsx new file mode 100644 index 000000000000..77363306527c --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_card.tsx @@ -0,0 +1,45 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { EuiCard, EuiFlexGroup, EuiFlexItem, EuiText, EuiButton } from '@elastic/eui'; + +import { MANAGE_BUTTON_LABEL } from '../../../../shared/constants'; + +import { SynonymSet } from '../types'; + +import { SynonymIcon } from './'; + +export const SynonymCard: React.FC = (synonymSet) => { + const [firstSynonym, ...remainingSynonyms] = synonymSet.synonyms; + + return ( + + + {} /* TODO */}>{MANAGE_BUTTON_LABEL} + + + } + > + + {remainingSynonyms.map((synonym) => ( +
+ {synonym} +
+ ))} +
+
+ ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_icon.test.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_icon.test.tsx new file mode 100644 index 000000000000..8120532fbd6f --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_icon.test.tsx @@ -0,0 +1,19 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { shallow } from 'enzyme'; + +import { SynonymIcon } from './'; + +describe('SynonymIcon', () => { + it('renders', () => { + const wrapper = shallow(); + expect(wrapper.hasClass('euiIcon')).toBe(true); + }); +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_icon.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_icon.tsx new file mode 100644 index 000000000000..f76b8be818c4 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/components/synonym_icon.tsx @@ -0,0 +1,26 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { i18n } from '@kbn/i18n'; + +export const SynonymIcon: React.FC = ({ ...props }) => ( + + + +); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/constants.ts b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/constants.ts index cbbd1e631b7e..2cb50b6cba1b 100644 --- a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/constants.ts +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/constants.ts @@ -7,6 +7,15 @@ import { i18n } from '@kbn/i18n'; +import { DEFAULT_META } from '../../../shared/constants'; + +export const SYNONYMS_PAGE_META = { + page: { + ...DEFAULT_META.page, + size: 12, // Use a multiple of 3, since synonym cards are in rows of 3 + }, +}; + export const SYNONYMS_TITLE = i18n.translate( 'xpack.enterpriseSearch.appSearch.engine.synonyms.title', { defaultMessage: 'Synonyms' } diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/index.ts b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/index.ts index 177bc5eade0f..4b9de7ef9060 100644 --- a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/index.ts +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/index.ts @@ -7,3 +7,4 @@ export { SYNONYMS_TITLE } from './constants'; export { Synonyms } from './synonyms'; +export { SynonymsLogic } from './synonyms_logic'; diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.test.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.test.tsx index e093442f77b7..11692a1542c4 100644 --- a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.test.tsx @@ -5,17 +5,123 @@ * 2.0. */ +import { setMockValues, setMockActions, rerender } from '../../../__mocks__'; +import '../../../__mocks__/shallow_useeffect.mock'; import '../../__mocks__/engine_logic.mock'; import React from 'react'; import { shallow } from 'enzyme'; +import { EuiPageHeader, EuiButton, EuiPagination } from '@elastic/eui'; + +import { Loading } from '../../../shared/loading'; + +import { SynonymCard, EmptyState } from './components'; + import { Synonyms } from './'; describe('Synonyms', () => { + const MOCK_SYNONYM_SET = { + id: 'syn-1234567890', + synonyms: ['a', 'b', 'c'], + }; + + const values = { + synonymSets: [MOCK_SYNONYM_SET, MOCK_SYNONYM_SET, MOCK_SYNONYM_SET], + meta: { page: { current: 1 } }, + dataLoading: false, + }; + const actions = { + loadSynonyms: jest.fn(), + onPaginate: jest.fn(), + }; + + beforeEach(() => { + jest.clearAllMocks(); + setMockValues(values); + setMockActions(actions); + }); + it('renders', () => { - shallow(); - // TODO: Check for Synonym cards, Synonym modal + const wrapper = shallow(); + + expect(wrapper.find(SynonymCard)).toHaveLength(3); + // TODO: Check for synonym modal + }); + + it('renders a create action button', () => { + const wrapper = shallow() + .find(EuiPageHeader) + .dive() + .children() + .dive(); + + wrapper.find(EuiButton).simulate('click'); + // TODO: Expect open modal action + }); + + it('renders an empty state if no synonyms exist', () => { + setMockValues({ ...values, synonymSets: [] }); + const wrapper = shallow(); + + expect(wrapper.find(EmptyState)).toHaveLength(1); + }); + + describe('loading', () => { + it('renders a loading state on initial page load', () => { + setMockValues({ ...values, synonymSets: [], dataLoading: true }); + const wrapper = shallow(); + + expect(wrapper.find(Loading)).toHaveLength(1); + }); + + it('does not render a full loading state after initial page load', () => { + setMockValues({ ...values, synonymSets: [MOCK_SYNONYM_SET], dataLoading: true }); + const wrapper = shallow(); + + expect(wrapper.find(Loading)).toHaveLength(0); + }); + }); + + describe('API & pagination', () => { + it('loads synonyms on page load and on pagination', () => { + const wrapper = shallow(); + expect(actions.loadSynonyms).toHaveBeenCalledTimes(1); + + setMockValues({ ...values, meta: { page: { current: 5 } } }); + rerender(wrapper); + expect(actions.loadSynonyms).toHaveBeenCalledTimes(2); + }); + + it('automatically paginations users back a page if they delete the only remaining synonym on the page', () => { + setMockValues({ ...values, meta: { page: { current: 5 } }, synonymSets: [] }); + shallow(); + + expect(actions.onPaginate).toHaveBeenCalledWith(4); + }); + + it('does not paginate backwards if the user is on the first page (should show the state instead)', () => { + setMockValues({ ...values, meta: { page: { current: 1 } }, synonymSets: [] }); + const wrapper = shallow(); + + expect(actions.onPaginate).not.toHaveBeenCalled(); + expect(wrapper.find(EmptyState)).toHaveLength(1); + }); + + it('handles off-by-one shenanigans between EuiPagination and our API', () => { + setMockValues({ + ...values, + meta: { page: { total_pages: 10, current: 1 } }, + }); + const wrapper = shallow(); + const pagination = wrapper.find(EuiPagination); + + expect(pagination.prop('pageCount')).toEqual(10); + expect(pagination.prop('activePage')).toEqual(0); + + pagination.simulate('pageClick', 4); + expect(actions.onPaginate).toHaveBeenCalledWith(5); + }); }); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.tsx b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.tsx index 0b1827166091..59bd501f5468 100644 --- a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms.tsx @@ -5,23 +5,86 @@ * 2.0. */ -import React from 'react'; +import React, { useEffect } from 'react'; -import { EuiPageHeader, EuiPageContentBody } from '@elastic/eui'; +import { useValues, useActions } from 'kea'; + +import { + EuiPageHeader, + EuiButton, + EuiPageContentBody, + EuiSpacer, + EuiFlexGrid, + EuiFlexItem, + EuiPagination, +} from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; import { FlashMessages } from '../../../shared/flash_messages'; import { SetAppSearchChrome as SetPageChrome } from '../../../shared/kibana_chrome'; +import { Loading } from '../../../shared/loading'; import { getEngineBreadcrumbs } from '../engine'; +import { SynonymCard, EmptyState } from './components'; import { SYNONYMS_TITLE } from './constants'; +import { SynonymsLogic } from './'; + export const Synonyms: React.FC = () => { + const { loadSynonyms, onPaginate } = useActions(SynonymsLogic); + const { synonymSets, meta, dataLoading } = useValues(SynonymsLogic); + const hasSynonyms = synonymSets.length > 0; + + useEffect(() => { + loadSynonyms(); + }, [meta.page.current]); + + useEffect(() => { + // If users delete the only synonym set on the page, send them back to the previous page + if (!hasSynonyms && meta.page.current !== 1) { + onPaginate(meta.page.current - 1); + } + }, [synonymSets]); + + if (dataLoading && !hasSynonyms) return ; + return ( <> - + {} /* TODO */}> + {i18n.translate( + 'xpack.enterpriseSearch.appSearch.engine.synonyms.createSynonymSetButtonLabel', + { defaultMessage: 'Create a synonym set' } + )} + , + ]} + /> - TODO + + + {hasSynonyms ? ( + <> + + {synonymSets.map(({ id, synonyms }) => ( + + + + ))} + + + onPaginate(pageIndex + 1)} + /> + + ) : ( + + )} + ); }; diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms_logic.test.ts b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms_logic.test.ts new file mode 100644 index 000000000000..2497787a55f1 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms_logic.test.ts @@ -0,0 +1,125 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { LogicMounter, mockHttpValues, mockFlashMessageHelpers } from '../../../__mocks__'; +import '../../__mocks__/engine_logic.mock'; + +import { nextTick } from '@kbn/test/jest'; + +import { SYNONYMS_PAGE_META } from './constants'; + +import { SynonymsLogic } from './'; + +describe('SynonymsLogic', () => { + const { mount } = new LogicMounter(SynonymsLogic); + const { http } = mockHttpValues; + const { flashAPIErrors } = mockFlashMessageHelpers; + + const MOCK_SYNONYMS_RESPONSE = { + meta: { + page: { + current: 1, + size: 12, + total_results: 1, + total_pages: 1, + }, + }, + results: [ + { + id: 'some-synonym-id', + synonyms: ['hello', 'world'], + }, + ], + }; + + const DEFAULT_VALUES = { + dataLoading: true, + synonymSets: [], + meta: SYNONYMS_PAGE_META, + }; + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('has expected default values', () => { + mount(); + expect(SynonymsLogic.values).toEqual(DEFAULT_VALUES); + }); + + describe('actions', () => { + describe('onSynonymsLoad', () => { + it('should set synonyms and meta state, & dataLoading to false', () => { + mount(); + + SynonymsLogic.actions.onSynonymsLoad(MOCK_SYNONYMS_RESPONSE); + + expect(SynonymsLogic.values).toEqual({ + ...DEFAULT_VALUES, + synonymSets: MOCK_SYNONYMS_RESPONSE.results, + meta: MOCK_SYNONYMS_RESPONSE.meta, + dataLoading: false, + }); + }); + }); + + describe('onPaginate', () => { + it('should set meta.page.current state', () => { + mount(); + + SynonymsLogic.actions.onPaginate(3); + + expect(SynonymsLogic.values).toEqual({ + ...DEFAULT_VALUES, + meta: { page: { ...DEFAULT_VALUES.meta.page, current: 3 } }, + }); + }); + }); + }); + + describe('listeners', () => { + describe('loadSynonyms', () => { + it('should set dataLoading state', () => { + mount({ dataLoading: false }); + + SynonymsLogic.actions.loadSynonyms(); + + expect(SynonymsLogic.values).toEqual({ + ...DEFAULT_VALUES, + dataLoading: true, + }); + }); + + it('should make an API call and set synonyms & meta state', async () => { + http.get.mockReturnValueOnce(Promise.resolve(MOCK_SYNONYMS_RESPONSE)); + mount(); + jest.spyOn(SynonymsLogic.actions, 'onSynonymsLoad'); + + SynonymsLogic.actions.loadSynonyms(); + await nextTick(); + + expect(http.get).toHaveBeenCalledWith('/api/app_search/engines/some-engine/synonyms', { + query: { + 'page[current]': 1, + 'page[size]': 12, + }, + }); + expect(SynonymsLogic.actions.onSynonymsLoad).toHaveBeenCalledWith(MOCK_SYNONYMS_RESPONSE); + }); + + it('handles errors', async () => { + http.get.mockReturnValueOnce(Promise.reject('error')); + mount(); + + SynonymsLogic.actions.loadSynonyms(); + await nextTick(); + + expect(flashAPIErrors).toHaveBeenCalledWith('error'); + }); + }); + }); +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms_logic.ts b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms_logic.ts new file mode 100644 index 000000000000..a55fcf83a5f8 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/synonyms_logic.ts @@ -0,0 +1,79 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { kea, MakeLogicType } from 'kea'; + +import { Meta } from '../../../../../common/types'; +import { flashAPIErrors } from '../../../shared/flash_messages'; +import { HttpLogic } from '../../../shared/http'; +import { updateMetaPageIndex } from '../../../shared/table_pagination'; +import { EngineLogic } from '../engine'; + +import { SYNONYMS_PAGE_META } from './constants'; +import { SynonymSet, SynonymsApiResponse } from './types'; + +interface SynonymsValues { + dataLoading: boolean; + synonymSets: SynonymSet[]; + meta: Meta; +} + +interface SynonymsActions { + loadSynonyms(): void; + onSynonymsLoad(response: SynonymsApiResponse): SynonymsApiResponse; + onPaginate(newPageIndex: number): { newPageIndex: number }; +} + +export const SynonymsLogic = kea>({ + path: ['enterprise_search', 'app_search', 'synonyms_logic'], + actions: () => ({ + loadSynonyms: true, + onSynonymsLoad: ({ results, meta }) => ({ results, meta }), + onPaginate: (newPageIndex) => ({ newPageIndex }), + }), + reducers: () => ({ + dataLoading: [ + true, + { + loadSynonyms: () => true, + onSynonymsLoad: () => false, + }, + ], + synonymSets: [ + [], + { + onSynonymsLoad: (_, { results }) => results, + }, + ], + meta: [ + SYNONYMS_PAGE_META, + { + onSynonymsLoad: (_, { meta }) => meta, + onPaginate: (state, { newPageIndex }) => updateMetaPageIndex(state, newPageIndex), + }, + ], + }), + listeners: ({ actions, values }) => ({ + loadSynonyms: async () => { + const { meta } = values; + const { http } = HttpLogic.values; + const { engineName } = EngineLogic.values; + + try { + const response = await http.get(`/api/app_search/engines/${engineName}/synonyms`, { + query: { + 'page[current]': meta.page.current, + 'page[size]': meta.page.size, + }, + }); + actions.onSynonymsLoad(response); + } catch (e) { + flashAPIErrors(e); + } + }, + }), +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/types.ts b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/types.ts new file mode 100644 index 000000000000..2f6da766a6d5 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/app_search/components/synonyms/types.ts @@ -0,0 +1,18 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Meta } from '../../../../../common/types'; + +export interface SynonymSet { + id: string; + synonyms: string[]; +} + +export interface SynonymsApiResponse { + results: SynonymSet[]; + meta: Meta; +} diff --git a/x-pack/plugins/fleet/public/applications/fleet/components/package_icon.tsx b/x-pack/plugins/fleet/public/applications/fleet/components/package_icon.tsx index e7fd1da394bb..cb0b02527f75 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/components/package_icon.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/components/package_icon.tsx @@ -14,18 +14,7 @@ import { usePackageIconType } from '../hooks'; export const PackageIcon: React.FunctionComponent< UsePackageIconType & Omit -> = ({ size = 's', packageName, version, icons, tryApi, ...euiIconProps }) => { +> = ({ packageName, version, icons, tryApi, ...euiIconProps }) => { const iconType = usePackageIconType({ packageName, version, icons, tryApi }); - return ( - - // this collides with some EuiText (+img) CSS from the EuiIcon component - // which makes the button large, wide, and poorly layed out - // override those styles until the bug is fixed or we find a better approach - style={{ margin: 'unset', width: 'unset' }} - size={size} - type={iconType} - {...euiIconProps} - /> - ); + return ; }; diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/agent_policy_package_badges.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/agent_policy_package_badges.tsx index dcc87b0032d7..cff0dc55515c 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/agent_policy_package_badges.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/components/agent_policy_package_badges.tsx @@ -71,7 +71,18 @@ export const AgentPolicyPackageBadges: React.FunctionComponent = ({ - + + // this collides with some EuiText (+img) CSS from the EuiIcon component + // which makes the button large, wide, and poorly layed out + // override those styles until the bug is fixed or we find a better approach + { margin: 'unset', width: '16px' } + } + /> {pkg.title} diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/epm/components/icon_panel.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/epm/components/icon_panel.tsx deleted file mode 100644 index 63c6897021f4..000000000000 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/epm/components/icon_panel.tsx +++ /dev/null @@ -1,62 +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 - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import styled from 'styled-components'; -import { EuiIcon, EuiPanel } from '@elastic/eui'; - -import type { UsePackageIconType } from '../../../hooks'; -import { usePackageIconType } from '../../../hooks'; -import { Loading } from '../../../components'; - -const PanelWrapper = styled.div` - // NOTE: changes to the width here will impact navigation tabs page layout under integration package details - width: ${(props) => - parseFloat(props.theme.eui.euiSize) * 6 + parseFloat(props.theme.eui.euiSizeXL) * 2}px; - height: 1px; - z-index: 1; -`; - -const Panel = styled(EuiPanel)` - padding: ${(props) => props.theme.eui.spacerSizes.xl}; - margin-bottom: -100%; - svg, - img { - height: ${(props) => parseFloat(props.theme.eui.euiSize) * 6}px; - width: ${(props) => parseFloat(props.theme.eui.euiSize) * 6}px; - } - .euiFlexItem { - height: ${(props) => parseFloat(props.theme.eui.euiSize) * 6}px; - justify-content: center; - } -`; - -export function IconPanel({ - packageName, - version, - icons, -}: Pick) { - const iconType = usePackageIconType({ packageName, version, icons }); - - return ( - - - - - - ); -} - -export function LoadingIconPanel() { - return ( - - - - - - ); -} diff --git a/x-pack/plugins/fleet/server/services/settings.test.ts b/x-pack/plugins/fleet/server/services/settings.test.ts new file mode 100644 index 000000000000..a9f9600addc3 --- /dev/null +++ b/x-pack/plugins/fleet/server/services/settings.test.ts @@ -0,0 +1,35 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { appContextService } from './app_context'; +import { getCloudFleetServersHosts } from './settings'; + +jest.mock('./app_context'); + +const mockedAppContextService = appContextService as jest.Mocked; + +describe('getCloudFleetServersHosts', () => { + it('should return undefined if cloud is not setup', () => { + expect(getCloudFleetServersHosts()).toBeUndefined(); + }); + + it('should return fleet server hosts if cloud is correctly setup', () => { + mockedAppContextService.getCloud.mockReturnValue({ + cloudId: + 'dXMtZWFzdC0xLmF3cy5mb3VuZC5pbyRjZWM2ZjI2MWE3NGJmMjRjZTMzYmI4ODExYjg0Mjk0ZiRjNmMyY2E2ZDA0MjI0OWFmMGNjN2Q3YTllOTYyNTc0Mw==', + isCloudEnabled: true, + deploymentId: 'deployment-id-1', + apm: {}, + }); + + expect(getCloudFleetServersHosts()).toMatchInlineSnapshot(` + Array [ + "https://deployment-id-1.fleet.us-east-1.aws.found.io", + ] + `); + }); +}); diff --git a/x-pack/plugins/fleet/server/services/settings.ts b/x-pack/plugins/fleet/server/services/settings.ts index e0723a8e1630..4ef9a3a95cbd 100644 --- a/x-pack/plugins/fleet/server/services/settings.ts +++ b/x-pack/plugins/fleet/server/services/settings.ts @@ -8,7 +8,7 @@ import Boom from '@hapi/boom'; import type { SavedObjectsClientContract } from 'kibana/server'; -import { GLOBAL_SETTINGS_SAVED_OBJECT_TYPE } from '../../common'; +import { decodeCloudId, GLOBAL_SETTINGS_SAVED_OBJECT_TYPE } from '../../common'; import type { SettingsSOAttributes, Settings, BaseSettings } from '../../common'; import { appContextService } from './app_context'; @@ -65,9 +65,25 @@ export async function saveSettings( } export function createDefaultSettings(): BaseSettings { - const fleetServerHosts = appContextService.getConfig()?.agents?.fleet_server?.hosts ?? []; + const configFleetServerHosts = appContextService.getConfig()?.agents?.fleet_server?.hosts; + const cloudFleetServerHosts = getCloudFleetServersHosts(); + + const fleetServerHosts = configFleetServerHosts ?? cloudFleetServerHosts ?? []; return { fleet_server_hosts: fleetServerHosts, }; } + +export function getCloudFleetServersHosts() { + const cloudSetup = appContextService.getCloud(); + if (cloudSetup && cloudSetup.isCloudEnabled && cloudSetup.cloudId && cloudSetup.deploymentId) { + const res = decodeCloudId(cloudSetup.cloudId); + if (!res) { + return; + } + + // Fleet Server url are formed like this `https://.fleet. + return [`https://${cloudSetup.deploymentId}.fleet.${res.host}`]; + } +} diff --git a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/page_error.tsx b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/page_error.tsx index 4c4fc738b6dd..6451206f8cc1 100644 --- a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/page_error.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/page_error.tsx @@ -11,7 +11,6 @@ import { IHttpFetchError } from 'src/core/public'; import { InvalidNodeError } from './invalid_node'; import { DocumentTitle } from '../../../../components/document_title'; import { ErrorPageBody } from '../../../error'; - interface Props { name: string; error: IHttpFetchError; @@ -30,13 +29,11 @@ export const PageError = ({ error, name }: Props) => { }) } /> - { - (error.body.statusCode = 404 ? ( - - ) : ( - - )) - } + {error.body?.statusCode === 404 ? ( + + ) : ( + + )} ); }; diff --git a/x-pack/plugins/lens/public/app_plugin/app.scss b/x-pack/plugins/lens/public/app_plugin/app.scss index b2b63015deef..00245384ec8b 100644 --- a/x-pack/plugins/lens/public/app_plugin/app.scss +++ b/x-pack/plugins/lens/public/app_plugin/app.scss @@ -5,19 +5,15 @@ } .lnsApp { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; + flex: 1 1 auto; display: flex; flex-direction: column; height: 100%; overflow: hidden; -} -.lnsApp__header { - border-bottom: $euiBorderThin; + > .kbnTopNavMenu__wrapper { + border-bottom: $euiBorderThin; + } } .lnsApp__frame { diff --git a/x-pack/plugins/lens/public/app_plugin/app.tsx b/x-pack/plugins/lens/public/app_plugin/app.tsx index f137047cfc87..077456423ac4 100644 --- a/x-pack/plugins/lens/public/app_plugin/app.tsx +++ b/x-pack/plugins/lens/public/app_plugin/app.tsx @@ -648,68 +648,66 @@ export function App({ return ( <>
-
- { - const { dateRange, query } = payload; - const currentRange = data.query.timefilter.timefilter.getTime(); - if (dateRange.from !== currentRange.from || dateRange.to !== currentRange.to) { - data.query.timefilter.timefilter.setTime(dateRange); - trackUiEvent('app_date_change'); - } else { - // Query has changed, renew the session id. - // Time change will be picked up by the time subscription - setState((s) => ({ - ...s, - searchSessionId: startSession(), - })); - trackUiEvent('app_query_change'); - } + { + const { dateRange, query } = payload; + const currentRange = data.query.timefilter.timefilter.getTime(); + if (dateRange.from !== currentRange.from || dateRange.to !== currentRange.to) { + data.query.timefilter.timefilter.setTime(dateRange); + trackUiEvent('app_date_change'); + } else { + // Query has changed, renew the session id. + // Time change will be picked up by the time subscription setState((s) => ({ ...s, - query: query || s.query, + searchSessionId: startSession(), })); - }} - onSaved={(savedQuery) => { - setState((s) => ({ ...s, savedQuery })); - }} - onSavedQueryUpdated={(savedQuery) => { - const savedQueryFilters = savedQuery.attributes.filters || []; - const globalFilters = data.query.filterManager.getGlobalFilters(); - data.query.filterManager.setFilters([...globalFilters, ...savedQueryFilters]); - setState((s) => ({ - ...s, - savedQuery: { ...savedQuery }, // Shallow query for reference issues - query: savedQuery.attributes.query, - })); - }} - onClearSavedQuery={() => { - data.query.filterManager.setFilters(data.query.filterManager.getGlobalFilters()); - setState((s) => ({ - ...s, - savedQuery: undefined, - filters: data.query.filterManager.getGlobalFilters(), - query: data.query.queryString.getDefaultQuery(), - })); - }} - query={state.query} - dateRangeFrom={fromDate} - dateRangeTo={toDate} - indicateNoData={state.indicateNoData} - /> -
+ trackUiEvent('app_query_change'); + } + setState((s) => ({ + ...s, + query: query || s.query, + })); + }} + onSaved={(savedQuery) => { + setState((s) => ({ ...s, savedQuery })); + }} + onSavedQueryUpdated={(savedQuery) => { + const savedQueryFilters = savedQuery.attributes.filters || []; + const globalFilters = data.query.filterManager.getGlobalFilters(); + data.query.filterManager.setFilters([...globalFilters, ...savedQueryFilters]); + setState((s) => ({ + ...s, + savedQuery: { ...savedQuery }, // Shallow query for reference issues + query: savedQuery.attributes.query, + })); + }} + onClearSavedQuery={() => { + data.query.filterManager.setFilters(data.query.filterManager.getGlobalFilters()); + setState((s) => ({ + ...s, + savedQuery: undefined, + filters: data.query.filterManager.getGlobalFilters(), + query: data.query.queryString.getDefaultQuery(), + })); + }} + query={state.query} + dateRangeFrom={fromDate} + dateRangeTo={toDate} + indicateNoData={state.indicateNoData} + /> {(!state.isLoading || state.persistedDoc) && ( + {indicatorIcon} {children} diff --git a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.scss b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.scss index 5947d62540a0..91cd706ea77d 100644 --- a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.scss +++ b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.scss @@ -6,11 +6,15 @@ @include euiFlyout; // But with custom positioning to keep it within the sidebar contents position: absolute; - right: 0; left: 0; - top: 0; - bottom: 0; animation: euiFlyout $euiAnimSpeedNormal $euiAnimSlightResistance; + @include euiBreakpoint('l', 'xl') { + top: 0 !important; + height: 100% !important; + } + @include euiBreakpoint('xs', 's', 'm') { + @include euiFlyout; + } } .lnsDimensionContainer__footer { @@ -49,3 +53,7 @@ background-color: transparent; } } + +.lnsBody--overflowHidden { + overflow: hidden; +} \ No newline at end of file diff --git a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.tsx b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.tsx index f66e8ba87e8e..b8d3170b3e16 100644 --- a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.tsx +++ b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/config_panel/dimension_container.tsx @@ -61,6 +61,17 @@ export function DimensionContainer({ [closeFlyout] ); + useEffect(() => { + if (isOpen) { + document.body.classList.add('lnsBody--overflowHidden'); + } else { + document.body.classList.remove('lnsBody--overflowHidden'); + } + return () => { + document.body.classList.remove('lnsBody--overflowHidden'); + }; + }); + return isOpen ? ( @@ -68,7 +79,7 @@ export function DimensionContainer({
* { + flex-basis: 100%; + } + > .lnsFrameLayout__sidebar { + min-height: $euiSizeL * 15; + } + } +} + +.visEditor { + @include flexParent(); + + height: 100%; + + @include euiBreakpoint('xs', 's', 'm') { + .visualization { + // While we are on a small screen the visualization is below the + // editor. In this cases it needs a minimum height, since it would otherwise + // maybe end up with 0 height since it just gets the flexbox rest of the screen. + min-height: $euiSizeL * 15; + } + } + + /* 1. Without setting this to 0 you will run into a bug where the filter bar modal is hidden under +a tilemap in an iframe: https://github.com/elastic/kibana/issues/16457 */ + > .visualize { + height: 100%; + flex: 1 1 auto; + display: flex; + z-index: 0; /* 1 */ + } } .lnsFrameLayout__pageBody { @@ -51,6 +88,10 @@ max-width: $euiFormMaxWidth + $euiSizeXXL; max-height: 100%; + @include euiBreakpoint('xs', 's', 'm') { + max-width: 100%; + } + .lnsConfigPanel { @include euiScrollBar; padding: $euiSize $euiSizeXS $euiSize $euiSize; @@ -58,5 +99,10 @@ overflow-y: scroll; padding-left: $euiFormMaxWidth + $euiSize; margin-left: -$euiFormMaxWidth; + + @include euiBreakpoint('xs', 's', 'm') { + padding-left: $euiSize; + margin-left: 0; + } } } diff --git a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx index 345774684ebf..c3bd6fde27ba 100644 --- a/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx +++ b/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx @@ -563,7 +563,12 @@ export const InnerVisualizationWrapper = ({ onData$={onData$} renderMode="edit" renderError={(errorMessage?: string | null, error?: ExpressionRenderError | null) => { - const visibleErrorMessages = getOriginalRequestErrorMessages(error) || [errorMessage]; + const errorsFromRequest = getOriginalRequestErrorMessages(error); + const visibleErrorMessages = errorsFromRequest.length + ? errorsFromRequest + : errorMessage + ? [errorMessage] + : []; return ( diff --git a/x-pack/plugins/lens/public/indexpattern_datasource/change_indexpattern.tsx b/x-pack/plugins/lens/public/indexpattern_datasource/change_indexpattern.tsx index 2ee4fe24a06f..0a41e7e65212 100644 --- a/x-pack/plugins/lens/public/indexpattern_datasource/change_indexpattern.tsx +++ b/x-pack/plugins/lens/public/indexpattern_datasource/change_indexpattern.tsx @@ -59,7 +59,7 @@ export function ChangeIndexPattern({ return ( <> setPopoverIsOpen(false)} @@ -67,7 +67,7 @@ export function ChangeIndexPattern({ panelPaddingSize="s" ownFocus > -
+
{i18n.translate('xpack.lens.indexPattern.changeIndexPatternTitle', { defaultMessage: 'Change index pattern', diff --git a/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.scss b/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.scss index bfb1106f5080..d3320714a65c 100644 --- a/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.scss +++ b/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.scss @@ -42,3 +42,7 @@ margin-right: $euiSizeS; } } + +.lnsChangeIndexPatternPopover { + width: 320px; +} \ No newline at end of file diff --git a/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.tsx b/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.tsx index 9fd389d4e65d..4839d9388253 100644 --- a/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.tsx +++ b/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.tsx @@ -604,6 +604,7 @@ export const InnerIndexPatternDataPanel = function InnerIndexPatternDataPanel({ gutterSize="s" alignItems="center" className="lnsInnerIndexPatternDataPanel__header" + responsive={false} > - + {formatted === '' ? ( @@ -702,7 +707,7 @@ function FieldItemPopoverContents(props: State & FieldItemProps) { })} {otherCount ? ( <> - + {i18n.translate('xpack.lens.indexPattern.otherDocsLabel', { diff --git a/x-pack/plugins/lens/public/pie_visualization/toolbar.tsx b/x-pack/plugins/lens/public/pie_visualization/toolbar.tsx index e3bd54032a93..aa4898683205 100644 --- a/x-pack/plugins/lens/public/pie_visualization/toolbar.tsx +++ b/x-pack/plugins/lens/public/pie_visualization/toolbar.tsx @@ -125,7 +125,7 @@ export function PieToolbar(props: VisualizationToolbarProps + + - `/_license${acknowledge ? '?acknowledge=true' : ''}`; +import { IScopedClusterClient } from 'kibana/server'; +import { LicensingPluginStart } from '../../../licensing/server'; interface PutLicenseArg { acknowledge: boolean; - callAsCurrentUser: CallAsCurrentUser; - licensing: LicensingPluginSetup; + client: IScopedClusterClient; + licensing: LicensingPluginStart; license: { [key: string]: any }; } -export async function putLicense({ - acknowledge, - callAsCurrentUser, - licensing, - license, -}: PutLicenseArg) { - const options = { - method: 'POST', - path: getLicensePath(acknowledge), - body: license, - }; - +export async function putLicense({ acknowledge, client, licensing, license }: PutLicenseArg) { try { - const response = await callAsCurrentUser('transport.request', options); + const { body: response } = await client.asCurrentUser.license.post({ + body: license, + acknowledge, + }); const { acknowledged, license_status: licenseStatus } = response; if (acknowledged && licenseStatus === 'valid') { diff --git a/x-pack/plugins/license_management/server/lib/permissions.ts b/x-pack/plugins/license_management/server/lib/permissions.ts index e165ebb36bc8..517854fad8e8 100644 --- a/x-pack/plugins/license_management/server/lib/permissions.ts +++ b/x-pack/plugins/license_management/server/lib/permissions.ts @@ -5,14 +5,14 @@ * 2.0. */ -import { CallAsCurrentUser } from '../types'; +import { IScopedClusterClient } from 'src/core/server'; interface GetPermissionsArg { isSecurityEnabled: boolean; - callAsCurrentUser: CallAsCurrentUser; + client: IScopedClusterClient; } -export async function getPermissions({ isSecurityEnabled, callAsCurrentUser }: GetPermissionsArg) { +export async function getPermissions({ isSecurityEnabled, client }: GetPermissionsArg) { if (!isSecurityEnabled) { // If security isn't enabled, let the user use license management return { @@ -21,15 +21,13 @@ export async function getPermissions({ isSecurityEnabled, callAsCurrentUser }: G } const options = { - method: 'POST', - path: '/_security/user/_has_privileges', body: { cluster: ['manage'], // License management requires "manage" cluster privileges }, }; try { - const response = await callAsCurrentUser('transport.request', options); + const { body: response } = await client.asCurrentUser.security.hasPrivileges(options); return { hasPermission: response.cluster.manage, }; diff --git a/x-pack/plugins/license_management/server/lib/start_basic.ts b/x-pack/plugins/license_management/server/lib/start_basic.ts index e203983c6eb8..e45c758b304d 100644 --- a/x-pack/plugins/license_management/server/lib/start_basic.ts +++ b/x-pack/plugins/license_management/server/lib/start_basic.ts @@ -5,25 +5,18 @@ * 2.0. */ -import { LicensingPluginSetup } from '../../../licensing/server'; -import { CallAsCurrentUser } from '../types'; - -const getStartBasicPath = (acknowledge: boolean) => - `/_license/start_basic${acknowledge ? '?acknowledge=true' : ''}`; +import { IScopedClusterClient } from 'src/core/server'; +import { LicensingPluginStart } from '../../../licensing/server'; interface StartBasicArg { acknowledge: boolean; - callAsCurrentUser: CallAsCurrentUser; - licensing: LicensingPluginSetup; + client: IScopedClusterClient; + licensing: LicensingPluginStart; } -export async function startBasic({ acknowledge, callAsCurrentUser, licensing }: StartBasicArg) { - const options = { - method: 'POST', - path: getStartBasicPath(acknowledge), - }; +export async function startBasic({ acknowledge, client, licensing }: StartBasicArg) { try { - const response = await callAsCurrentUser('transport.request', options); + const { body: response } = await client.asCurrentUser.license.postStartBasic({ acknowledge }); const { basic_was_started: basicWasStarted } = response; if (basicWasStarted) { await licensing.refresh(); diff --git a/x-pack/plugins/license_management/server/lib/start_trial.ts b/x-pack/plugins/license_management/server/lib/start_trial.ts index 7bd771bd678f..c1558f54b39b 100644 --- a/x-pack/plugins/license_management/server/lib/start_trial.ts +++ b/x-pack/plugins/license_management/server/lib/start_trial.ts @@ -5,16 +5,12 @@ * 2.0. */ -import { LicensingPluginSetup } from '../../../licensing/server'; -import { CallAsCurrentUser } from '../types'; +import { IScopedClusterClient } from 'src/core/server'; +import { LicensingPluginStart } from '../../../licensing/server'; -export async function canStartTrial(callAsCurrentUser: CallAsCurrentUser) { - const options = { - method: 'GET', - path: '/_license/trial_status', - }; +export async function canStartTrial(client: IScopedClusterClient) { try { - const response = await callAsCurrentUser('transport.request', options); + const { body: response } = await client.asCurrentUser.license.getTrialStatus(); return response.eligible_to_start_trial; } catch (error) { return error.body; @@ -22,17 +18,15 @@ export async function canStartTrial(callAsCurrentUser: CallAsCurrentUser) { } interface StartTrialArg { - callAsCurrentUser: CallAsCurrentUser; - licensing: LicensingPluginSetup; + client: IScopedClusterClient; + licensing: LicensingPluginStart; } -export async function startTrial({ callAsCurrentUser, licensing }: StartTrialArg) { - const options = { - method: 'POST', - path: '/_license/start_trial?acknowledge=true', - }; +export async function startTrial({ client, licensing }: StartTrialArg) { try { - const response = await callAsCurrentUser('transport.request', options); + const { body: response } = await client.asCurrentUser.license.postStartTrial({ + acknowledge: true, + }); const { trial_was_started: trialWasStarted } = response; if (trialWasStarted) { diff --git a/x-pack/plugins/license_management/server/plugin.ts b/x-pack/plugins/license_management/server/plugin.ts index 553d2e3ff69a..5772b8d9a651 100644 --- a/x-pack/plugins/license_management/server/plugin.ts +++ b/x-pack/plugins/license_management/server/plugin.ts @@ -8,13 +8,17 @@ import { Plugin, CoreSetup } from 'kibana/server'; import { ApiRoutes } from './routes'; -import { isEsError } from './shared_imports'; -import { Dependencies } from './types'; +import { handleEsError } from './shared_imports'; +import { SetupDependencies, StartDependencies } from './types'; -export class LicenseManagementServerPlugin implements Plugin { +export class LicenseManagementServerPlugin + implements Plugin { private readonly apiRoutes = new ApiRoutes(); - setup({ http }: CoreSetup, { licensing, features, security }: Dependencies) { + setup( + { http, getStartServices }: CoreSetup, + { features, security }: SetupDependencies + ) { const router = http.createRouter(); features.registerElasticsearchFeature({ @@ -30,17 +34,19 @@ export class LicenseManagementServerPlugin implements Plugin { + this.apiRoutes.setup({ + router, + plugins: { + licensing, + }, + lib: { + handleEsError, + }, + config: { + isSecurityEnabled: security !== undefined, + }, + }); }); } diff --git a/x-pack/plugins/license_management/server/routes/api/license/register_license_route.ts b/x-pack/plugins/license_management/server/routes/api/license/register_license_route.ts index 86f87506dfc2..03e57b1a12cd 100644 --- a/x-pack/plugins/license_management/server/routes/api/license/register_license_route.ts +++ b/x-pack/plugins/license_management/server/routes/api/license/register_license_route.ts @@ -10,7 +10,11 @@ import { putLicense } from '../../../lib/license'; import { RouteDependencies } from '../../../types'; import { addBasePath } from '../../helpers'; -export function registerLicenseRoute({ router, plugins: { licensing } }: RouteDependencies) { +export function registerLicenseRoute({ + router, + lib: { handleEsError }, + plugins: { licensing }, +}: RouteDependencies) { router.put( { path: addBasePath(''), @@ -22,15 +26,19 @@ export function registerLicenseRoute({ router, plugins: { licensing } }: RouteDe }, }, async (ctx, req, res) => { - const { callAsCurrentUser } = ctx.core.elasticsearch.legacy.client; - return res.ok({ - body: await putLicense({ - acknowledge: Boolean(req.query.acknowledge), - callAsCurrentUser, - licensing, - license: req.body, - }), - }); + const { client } = ctx.core.elasticsearch; + try { + return res.ok({ + body: await putLicense({ + acknowledge: Boolean(req.query.acknowledge), + client, + licensing, + license: req.body, + }), + }); + } catch (error) { + return handleEsError({ error, response: res }); + } } ); } diff --git a/x-pack/plugins/license_management/server/routes/api/license/register_permissions_route.ts b/x-pack/plugins/license_management/server/routes/api/license/register_permissions_route.ts index dd441051872d..01aae5cd6d44 100644 --- a/x-pack/plugins/license_management/server/routes/api/license/register_permissions_route.ts +++ b/x-pack/plugins/license_management/server/routes/api/license/register_permissions_route.ts @@ -11,13 +11,18 @@ import { addBasePath } from '../../helpers'; export function registerPermissionsRoute({ router, + lib: { handleEsError }, config: { isSecurityEnabled }, }: RouteDependencies) { router.post({ path: addBasePath('/permissions'), validate: false }, async (ctx, req, res) => { - const { callAsCurrentUser } = ctx.core.elasticsearch.legacy.client; + const { client } = ctx.core.elasticsearch; - return res.ok({ - body: await getPermissions({ callAsCurrentUser, isSecurityEnabled }), - }); + try { + return res.ok({ + body: await getPermissions({ client, isSecurityEnabled }), + }); + } catch (error) { + return handleEsError({ error, response: res }); + } }); } diff --git a/x-pack/plugins/license_management/server/routes/api/license/register_start_basic_route.ts b/x-pack/plugins/license_management/server/routes/api/license/register_start_basic_route.ts index bc5fb70f7dad..60e72d297b2e 100644 --- a/x-pack/plugins/license_management/server/routes/api/license/register_start_basic_route.ts +++ b/x-pack/plugins/license_management/server/routes/api/license/register_start_basic_route.ts @@ -10,21 +10,29 @@ import { startBasic } from '../../../lib/start_basic'; import { RouteDependencies } from '../../../types'; import { addBasePath } from '../../helpers'; -export function registerStartBasicRoute({ router, plugins: { licensing } }: RouteDependencies) { +export function registerStartBasicRoute({ + router, + lib: { handleEsError }, + plugins: { licensing }, +}: RouteDependencies) { router.post( { path: addBasePath('/start_basic'), validate: { query: schema.object({ acknowledge: schema.string() }) }, }, async (ctx, req, res) => { - const { callAsCurrentUser } = ctx.core.elasticsearch.legacy.client; - return res.ok({ - body: await startBasic({ - acknowledge: Boolean(req.query.acknowledge), - callAsCurrentUser, - licensing, - }), - }); + const { client } = ctx.core.elasticsearch; + try { + return res.ok({ + body: await startBasic({ + acknowledge: Boolean(req.query.acknowledge), + client, + licensing, + }), + }); + } catch (error) { + return handleEsError({ error, response: res }); + } } ); } diff --git a/x-pack/plugins/license_management/server/routes/api/license/register_start_trial_routes.ts b/x-pack/plugins/license_management/server/routes/api/license/register_start_trial_routes.ts index 6986e85e7d28..43ab7c5eafdb 100644 --- a/x-pack/plugins/license_management/server/routes/api/license/register_start_trial_routes.ts +++ b/x-pack/plugins/license_management/server/routes/api/license/register_start_trial_routes.ts @@ -9,16 +9,28 @@ import { canStartTrial, startTrial } from '../../../lib/start_trial'; import { RouteDependencies } from '../../../types'; import { addBasePath } from '../../helpers'; -export function registerStartTrialRoutes({ router, plugins: { licensing } }: RouteDependencies) { +export function registerStartTrialRoutes({ + router, + lib: { handleEsError }, + plugins: { licensing }, +}: RouteDependencies) { router.get({ path: addBasePath('/start_trial'), validate: false }, async (ctx, req, res) => { - const { callAsCurrentUser } = ctx.core.elasticsearch.legacy.client; - return res.ok({ body: await canStartTrial(callAsCurrentUser) }); + const { client } = ctx.core.elasticsearch; + try { + return res.ok({ body: await canStartTrial(client) }); + } catch (error) { + return handleEsError({ error, response: res }); + } }); router.post({ path: addBasePath('/start_trial'), validate: false }, async (ctx, req, res) => { - const { callAsCurrentUser } = ctx.core.elasticsearch.legacy.client; - return res.ok({ - body: await startTrial({ callAsCurrentUser, licensing }), - }); + const { client } = ctx.core.elasticsearch; + try { + return res.ok({ + body: await startTrial({ client, licensing }), + }); + } catch (error) { + return handleEsError({ error, response: res }); + } }); } diff --git a/x-pack/plugins/license_management/server/shared_imports.ts b/x-pack/plugins/license_management/server/shared_imports.ts index df9b3dd53cc1..7f55d189457c 100644 --- a/x-pack/plugins/license_management/server/shared_imports.ts +++ b/x-pack/plugins/license_management/server/shared_imports.ts @@ -5,4 +5,4 @@ * 2.0. */ -export { isEsError } from '../../../../src/plugins/es_ui_shared/server'; +export { handleEsError } from '../../../../src/plugins/es_ui_shared/server'; diff --git a/x-pack/plugins/license_management/server/types.ts b/x-pack/plugins/license_management/server/types.ts index d2f32b47a997..68219380c6e8 100644 --- a/x-pack/plugins/license_management/server/types.ts +++ b/x-pack/plugins/license_management/server/types.ts @@ -5,32 +5,35 @@ * 2.0. */ -import { LegacyScopedClusterClient, IRouter } from 'kibana/server'; +import { IScopedClusterClient, IRouter } from 'kibana/server'; import { PluginSetupContract as FeaturesPluginSetup } from '../../features/server'; -import { LicensingPluginSetup } from '../../licensing/server'; +import { LicensingPluginStart } from '../../licensing/server'; import { SecurityPluginSetup } from '../../security/server'; -import { isEsError } from './shared_imports'; +import { handleEsError } from './shared_imports'; -export interface Dependencies { - licensing: LicensingPluginSetup; +export interface SetupDependencies { features: FeaturesPluginSetup; security?: SecurityPluginSetup; } +export interface StartDependencies { + licensing: LicensingPluginStart; +} + export interface RouteDependencies { router: IRouter; plugins: { - licensing: LicensingPluginSetup; + licensing: LicensingPluginStart; }; lib: { - isEsError: typeof isEsError; + handleEsError: typeof handleEsError; }; config: { isSecurityEnabled: boolean; }; } -export type CallAsCurrentUser = LegacyScopedClusterClient['callAsCurrentUser']; +export type CallAsCurrentUser = IScopedClusterClient['asCurrentUser']; -export type CallAsInternalUser = LegacyScopedClusterClient['callAsInternalUser']; +export type CallAsInternalUser = IScopedClusterClient['asInternalUser']; diff --git a/x-pack/plugins/maps/common/constants.ts b/x-pack/plugins/maps/common/constants.ts index 44e5f9d445c3..007368f0997d 100644 --- a/x-pack/plugins/maps/common/constants.ts +++ b/x-pack/plugins/maps/common/constants.ts @@ -54,6 +54,8 @@ export const KBN_TOO_MANY_FEATURES_IMAGE_ID = '__kbn_too_many_features_image_id_ // Centroids are a single point for representing lines, multiLines, polygons, and multiPolygons export const KBN_IS_CENTROID_FEATURE = '__kbn_is_centroid_feature__'; +export const MVT_TOKEN_PARAM_NAME = 'token'; + const MAP_BASE_URL = `/${MAPS_APP_PATH}/${MAP_PATH}`; export function getNewMapPath() { return MAP_BASE_URL; diff --git a/x-pack/plugins/maps/public/classes/fields/mvt_field.ts b/x-pack/plugins/maps/public/classes/fields/mvt_field.ts index 2a837f831198..ed2955a1cc16 100644 --- a/x-pack/plugins/maps/public/classes/fields/mvt_field.ts +++ b/x-pack/plugins/maps/public/classes/fields/mvt_field.ts @@ -7,7 +7,8 @@ import { AbstractField, IField } from './field'; import { FIELD_ORIGIN, MVT_FIELD_TYPE } from '../../../common/constants'; -import { ITiledSingleLayerVectorSource, IVectorSource } from '../sources/vector_source'; +import { IVectorSource } from '../sources/vector_source'; +import { ITiledSingleLayerVectorSource } from '../sources/tiled_single_layer_vector_source'; import { MVTFieldDescriptor } from '../../../common/descriptor_types'; export class MVTField extends AbstractField implements IField { diff --git a/x-pack/plugins/maps/public/classes/layers/layer.tsx b/x-pack/plugins/maps/public/classes/layers/layer.tsx index 5786b5fb194b..59edaa8ed1b9 100644 --- a/x-pack/plugins/maps/public/classes/layers/layer.tsx +++ b/x-pack/plugins/maps/public/classes/layers/layer.tsx @@ -18,6 +18,7 @@ import { DataRequest } from '../util/data_request'; import { AGG_TYPE, FIELD_ORIGIN, + LAYER_TYPE, MAX_ZOOM, MB_SOURCE_ID_LAYER_ID_PREFIX_DELIMITER, MIN_ZOOM, @@ -81,7 +82,7 @@ export interface ILayer { isInitialDataLoadComplete(): boolean; getIndexPatternIds(): string[]; getQueryableIndexPatternIds(): string[]; - getType(): string | undefined; + getType(): LAYER_TYPE | undefined; isVisible(): boolean; cloneDescriptor(): Promise; renderStyleEditor( @@ -483,8 +484,8 @@ export class AbstractLayer implements ILayer { mbMap.setLayoutProperty(mbLayerId, 'visibility', this.isVisible() ? 'visible' : 'none'); } - getType(): string | undefined { - return this._descriptor.type; + getType(): LAYER_TYPE | undefined { + return this._descriptor.type as LAYER_TYPE; } areLabelsOnTop(): boolean { diff --git a/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.test.tsx b/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.test.tsx index 408c2ec18164..e71d32669a56 100644 --- a/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.test.tsx +++ b/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.test.tsx @@ -7,6 +7,7 @@ import { MockSyncContext } from '../__fixtures__/mock_sync_context'; import sinon from 'sinon'; +import url from 'url'; jest.mock('../../../kibana_services', () => { return { @@ -38,7 +39,8 @@ const defaultConfig = { function createLayer( layerOptions: Partial = {}, sourceOptions: Partial = {}, - isTimeAware: boolean = false + isTimeAware: boolean = false, + includeToken: boolean = false ): TiledVectorLayer { const sourceDescriptor: TiledSingleLayerVectorSourceDescriptor = { type: SOURCE_TYPES.MVT_SINGLE_LAYER, @@ -57,6 +59,19 @@ function createLayer( }; } + if (includeToken) { + mvtSource.getUrlTemplateWithMeta = async (...args) => { + const superReturn = await MVTSingleLayerVectorSource.prototype.getUrlTemplateWithMeta.call( + mvtSource, + ...args + ); + return { + ...superReturn, + refreshTokenParamName: 'token', + }; + }; + } + const defaultLayerOptions = { ...layerOptions, sourceDescriptor, @@ -115,7 +130,7 @@ describe('syncData', () => { expect(call.args[2]!.minSourceZoom).toEqual(defaultConfig.minSourceZoom); expect(call.args[2]!.maxSourceZoom).toEqual(defaultConfig.maxSourceZoom); expect(call.args[2]!.layerName).toEqual(defaultConfig.layerName); - expect(call.args[2]!.urlTemplate!.startsWith(defaultConfig.urlTemplate)).toEqual(true); + expect(call.args[2]!.urlTemplate).toEqual(defaultConfig.urlTemplate); }); it('Should not resync when no changes to source params', async () => { @@ -193,8 +208,34 @@ describe('syncData', () => { expect(call.args[2]!.minSourceZoom).toEqual(newMeta.minSourceZoom); expect(call.args[2]!.maxSourceZoom).toEqual(newMeta.maxSourceZoom); expect(call.args[2]!.layerName).toEqual(newMeta.layerName); - expect(call.args[2]!.urlTemplate!.startsWith(newMeta.urlTemplate)).toEqual(true); + expect(call.args[2]!.urlTemplate).toEqual(newMeta.urlTemplate); }); }); }); + + describe('refresh token', () => { + const uuidRegex = /\b[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}\b/; + + it(`should add token in url`, async () => { + const layer: TiledVectorLayer = createLayer({}, {}, false, true); + + const syncContext = new MockSyncContext({ dataFilters: {} }); + + await layer.syncData(syncContext); + // @ts-expect-error + sinon.assert.calledOnce(syncContext.startLoading); + // @ts-expect-error + sinon.assert.calledOnce(syncContext.stopLoading); + + // @ts-expect-error + const call = syncContext.stopLoading.getCall(0); + expect(call.args[2]!.minSourceZoom).toEqual(defaultConfig.minSourceZoom); + expect(call.args[2]!.maxSourceZoom).toEqual(defaultConfig.maxSourceZoom); + expect(call.args[2]!.layerName).toEqual(defaultConfig.layerName); + expect(call.args[2]!.urlTemplate.startsWith(defaultConfig.urlTemplate)).toBe(true); + + const parsedUrl = url.parse(call.args[2]!.urlTemplate, true); + expect(!!(parsedUrl.query.token! as string).match(uuidRegex)).toBe(true); + }); + }); }); diff --git a/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.tsx b/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.tsx index 90c4896f2a28..d45209625057 100644 --- a/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.tsx +++ b/x-pack/plugins/maps/public/classes/layers/tiled_vector_layer/tiled_vector_layer.tsx @@ -14,10 +14,11 @@ import { import { EuiIcon } from '@elastic/eui'; import { Feature } from 'geojson'; import uuid from 'uuid/v4'; +import { parse as parseUrl } from 'url'; import { IVectorStyle, VectorStyle } from '../../styles/vector/vector_style'; import { SOURCE_DATA_REQUEST_ID, LAYER_TYPE } from '../../../../common/constants'; import { VectorLayer, VectorLayerArguments } from '../vector_layer'; -import { ITiledSingleLayerVectorSource } from '../../sources/vector_source'; +import { ITiledSingleLayerVectorSource } from '../../sources/tiled_single_layer_vector_source'; import { DataRequestContext } from '../../../actions'; import { VectorLayerDescriptor, @@ -103,10 +104,20 @@ export class TiledVectorLayer extends VectorLayer { : prevData.urlToken; const newUrlTemplateAndMeta = await this._source.getUrlTemplateWithMeta(searchFilters); + + let urlTemplate; + if (newUrlTemplateAndMeta.refreshTokenParamName) { + const parsedUrl = parseUrl(newUrlTemplateAndMeta.urlTemplate, true); + const separator = !parsedUrl.query || Object.keys(parsedUrl.query).length === 0 ? '?' : '&'; + urlTemplate = `${newUrlTemplateAndMeta.urlTemplate}${separator}${newUrlTemplateAndMeta.refreshTokenParamName}=${urlToken}`; + } else { + urlTemplate = newUrlTemplateAndMeta.urlTemplate; + } + const urlTemplateAndMetaWithToken = { ...newUrlTemplateAndMeta, urlToken, - urlTemplate: newUrlTemplateAndMeta.urlTemplate + `&token=${urlToken}`, + urlTemplate, }; stopLoading(SOURCE_DATA_REQUEST_ID, requestToken, urlTemplateAndMetaWithToken, {}); } catch (error) { diff --git a/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/es_geo_grid_source.tsx b/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/es_geo_grid_source.tsx index e9cf62d8f408..7bca22df9b87 100644 --- a/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/es_geo_grid_source.tsx +++ b/x-pack/plugins/maps/public/classes/sources/es_geo_grid_source/es_geo_grid_source.tsx @@ -27,6 +27,7 @@ import { GRID_RESOLUTION, MVT_GETGRIDTILE_API_PATH, MVT_SOURCE_LAYER_NAME, + MVT_TOKEN_PARAM_NAME, RENDER_AS, SOURCE_TYPES, VECTOR_SHAPE_TYPE, @@ -38,7 +39,8 @@ import { registerSource } from '../source_registry'; import { LICENSED_FEATURES } from '../../../licensed_features'; import { getHttp } from '../../../kibana_services'; -import { GeoJsonWithMeta, ITiledSingleLayerVectorSource } from '../vector_source'; +import { GeoJsonWithMeta } from '../vector_source'; +import { ITiledSingleLayerVectorSource } from '../tiled_single_layer_vector_source'; import { ESGeoGridSourceDescriptor, MapExtent, @@ -50,6 +52,7 @@ import { ISearchSource } from '../../../../../../../src/plugins/data/common/sear import { IndexPattern } from '../../../../../../../src/plugins/data/common/index_patterns/index_patterns'; import { Adapters } from '../../../../../../../src/plugins/inspector/common/adapters'; import { isValidStringConfig } from '../../util/valid_string_config'; +import { ITiledSingleLayerMvtParams } from '../tiled_single_layer_vector_source/tiled_single_layer_vector_source'; export const MAX_GEOTILE_LEVEL = 29; @@ -420,12 +423,7 @@ export class ESGeoGridSource extends AbstractESAggSource implements ITiledSingle async getUrlTemplateWithMeta( searchFilters: VectorSourceRequestMeta - ): Promise<{ - layerName: string; - urlTemplate: string; - minSourceZoom: number; - maxSourceZoom: number; - }> { + ): Promise { const indexPattern = await this.getIndexPattern(); const searchSource = await this.makeSearchSource(searchFilters, 0); @@ -453,6 +451,7 @@ export class ESGeoGridSource extends AbstractESAggSource implements ITiledSingle &geoFieldType=${geoField.type}`; return { + refreshTokenParamName: MVT_TOKEN_PARAM_NAME, layerName: this.getLayerName(), minSourceZoom: this.getMinZoom(), maxSourceZoom: this.getMaxZoom(), diff --git a/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx b/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx index ff4675413985..3de98fd54582 100644 --- a/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx +++ b/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx @@ -31,6 +31,7 @@ import { GIS_API_PATH, MVT_GETTILE_API_PATH, MVT_SOURCE_LAYER_NAME, + MVT_TOKEN_PARAM_NAME, SCALING_TYPES, SOURCE_TYPES, VECTOR_SHAPE_TYPE, @@ -51,17 +52,15 @@ import { import { Adapters } from '../../../../../../../src/plugins/inspector/common/adapters'; import { ImmutableSourceProperty, SourceEditorArgs } from '../source'; import { IField } from '../../fields/field'; -import { - GeoJsonWithMeta, - ITiledSingleLayerVectorSource, - SourceTooltipConfig, -} from '../vector_source'; +import { GeoJsonWithMeta, SourceTooltipConfig } from '../vector_source'; +import { ITiledSingleLayerVectorSource } from '../tiled_single_layer_vector_source'; import { ITooltipProperty } from '../../tooltips/tooltip_property'; import { DataRequest } from '../../util/data_request'; import { SortDirection, SortDirectionNumeric } from '../../../../../../../src/plugins/data/common'; import { isValidStringConfig } from '../../util/valid_string_config'; import { TopHitsUpdateSourceEditor } from './top_hits'; import { getDocValueAndSourceFields, ScriptField } from './get_docvalue_source_fields'; +import { ITiledSingleLayerMvtParams } from '../tiled_single_layer_vector_source/tiled_single_layer_vector_source'; export const sourceTitle = i18n.translate('xpack.maps.source.esSearchTitle', { defaultMessage: 'Documents', @@ -674,12 +673,7 @@ export class ESSearchSource extends AbstractESSource implements ITiledSingleLaye async getUrlTemplateWithMeta( searchFilters: VectorSourceRequestMeta - ): Promise<{ - layerName: string; - urlTemplate: string; - minSourceZoom: number; - maxSourceZoom: number; - }> { + ): Promise { const indexPattern = await this.getIndexPattern(); const indexSettings = await loadIndexSettings(indexPattern.title); @@ -722,6 +716,7 @@ export class ESSearchSource extends AbstractESSource implements ITiledSingleLaye &geoFieldType=${geoField.type}`; return { + refreshTokenParamName: MVT_TOKEN_PARAM_NAME, layerName: this.getLayerName(), minSourceZoom: this.getMinZoom(), maxSourceZoom: this.getMaxZoom(), diff --git a/x-pack/plugins/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_vector_source.tsx b/x-pack/plugins/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_vector_source.tsx index 4e4d9e9eee5d..92b643643ba2 100644 --- a/x-pack/plugins/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_vector_source.tsx +++ b/x-pack/plugins/maps/public/classes/sources/mvt_single_layer_vector_source/mvt_single_layer_vector_source.tsx @@ -10,7 +10,8 @@ import uuid from 'uuid/v4'; import React from 'react'; import { GeoJsonProperties } from 'geojson'; import { AbstractSource, ImmutableSourceProperty, SourceEditorArgs } from '../source'; -import { BoundsFilters, GeoJsonWithMeta, ITiledSingleLayerVectorSource } from '../vector_source'; +import { BoundsFilters, GeoJsonWithMeta } from '../vector_source'; +import { ITiledSingleLayerVectorSource } from '../tiled_single_layer_vector_source'; import { FIELD_ORIGIN, MAX_ZOOM, @@ -30,6 +31,7 @@ import { MVTField } from '../../fields/mvt_field'; import { UpdateSourceEditor } from './update_source_editor'; import { ITooltipProperty, TooltipProperty } from '../../tooltips/tooltip_property'; import { Adapters } from '../../../../../../../src/plugins/inspector/common/adapters'; +import { ITiledSingleLayerMvtParams } from '../tiled_single_layer_vector_source/tiled_single_layer_vector_source'; export const sourceTitle = i18n.translate( 'xpack.maps.source.MVTSingleLayerVectorSource.sourceTitle', @@ -154,7 +156,7 @@ export class MVTSingleLayerVectorSource return this.getLayerName(); } - async getUrlTemplateWithMeta() { + async getUrlTemplateWithMeta(): Promise { return { urlTemplate: this._descriptor.urlTemplate, layerName: this._descriptor.layerName, diff --git a/x-pack/plugins/maps/public/classes/sources/tiled_single_layer_vector_source/index.ts b/x-pack/plugins/maps/public/classes/sources/tiled_single_layer_vector_source/index.ts new file mode 100644 index 000000000000..30177751a8d5 --- /dev/null +++ b/x-pack/plugins/maps/public/classes/sources/tiled_single_layer_vector_source/index.ts @@ -0,0 +1,8 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { ITiledSingleLayerVectorSource } from './tiled_single_layer_vector_source'; diff --git a/x-pack/plugins/maps/public/classes/sources/tiled_single_layer_vector_source/tiled_single_layer_vector_source.ts b/x-pack/plugins/maps/public/classes/sources/tiled_single_layer_vector_source/tiled_single_layer_vector_source.ts new file mode 100644 index 000000000000..013c3f9f0d7e --- /dev/null +++ b/x-pack/plugins/maps/public/classes/sources/tiled_single_layer_vector_source/tiled_single_layer_vector_source.ts @@ -0,0 +1,26 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { VectorSourceRequestMeta } from '../../../../common/descriptor_types'; +import { IVectorSource } from '../vector_source'; + +export interface ITiledSingleLayerMvtParams { + layerName: string; + urlTemplate: string; + minSourceZoom: number; + maxSourceZoom: number; + refreshTokenParamName?: string; +} + +export interface ITiledSingleLayerVectorSource extends IVectorSource { + getUrlTemplateWithMeta( + searchFilters: VectorSourceRequestMeta + ): Promise; + getMinZoom(): number; + getMaxZoom(): number; + getLayerName(): string; +} diff --git a/x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx b/x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx index e86e459851c7..b28cd7365d69 100644 --- a/x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx +++ b/x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx @@ -66,20 +66,6 @@ export interface IVectorSource extends ISource { getSourceTooltipContent(sourceDataRequest?: DataRequest): SourceTooltipConfig; } -export interface ITiledSingleLayerVectorSource extends IVectorSource { - getUrlTemplateWithMeta( - searchFilters: VectorSourceRequestMeta - ): Promise<{ - layerName: string; - urlTemplate: string; - minSourceZoom: number; - maxSourceZoom: number; - }>; - getMinZoom(): number; - getMaxZoom(): number; - getLayerName(): string; -} - export class AbstractVectorSource extends AbstractSource implements IVectorSource { getFieldNames(): string[] { return []; diff --git a/x-pack/plugins/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap b/x-pack/plugins/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap index be8c9b0750b9..64da5777988d 100644 --- a/x-pack/plugins/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap +++ b/x-pack/plugins/maps/public/classes/styles/vector/components/__snapshots__/vector_style_editor.test.tsx.snap @@ -384,6 +384,546 @@ exports[`should render 1`] = ` `; +exports[`should render line-style with label properties when ES-source is rendered as mvt 1`] = ` + + + + + + + + + + + + + + + + + + + +`; + +exports[`should render polygon-style without label properties when 3rd party mvt 1`] = ` + + + + + + + + + + + +`; + exports[`should render with no style fields 1`] = ` { class MockField extends AbstractField {} -function createLayerMock(numFields: number, supportedShapeTypes: VECTOR_SHAPE_TYPE[]) { +function createLayerMock( + numFields: number, + supportedShapeTypes: VECTOR_SHAPE_TYPE[], + layerType: LAYER_TYPE = LAYER_TYPE.VECTOR, + isESSource: boolean = false +) { const fields: IField[] = []; for (let i = 0; i < numFields; i++) { fields.push(new MockField({ fieldName: `field${i}`, origin: FIELD_ORIGIN.SOURCE })); @@ -39,11 +45,17 @@ function createLayerMock(numFields: number, supportedShapeTypes: VECTOR_SHAPE_TY getStyleEditorFields: async () => { return fields; }, + getType() { + return layerType; + }, getSource: () => { return ({ getSupportedShapeTypes: async () => { return supportedShapeTypes; }, + isESSource() { + return isESSource; + }, } as unknown) as IVectorSource; }, } as unknown) as IVectorLayer; @@ -99,3 +111,35 @@ test('should render with no style fields', async () => { expect(component).toMatchSnapshot(); }); + +test('should render polygon-style without label properties when 3rd party mvt', async () => { + const component = shallow( + + ); + + // Ensure all promises resolve + await new Promise((resolve) => process.nextTick(resolve)); + // Ensure the state changes are reflected + component.update(); + + expect(component).toMatchSnapshot(); +}); + +test('should render line-style with label properties when ES-source is rendered as mvt', async () => { + const component = shallow( + + ); + + // Ensure all promises resolve + await new Promise((resolve) => process.nextTick(resolve)); + // Ensure the state changes are reflected + component.update(); + + expect(component).toMatchSnapshot(); +}); diff --git a/x-pack/plugins/maps/public/classes/styles/vector/components/vector_style_editor.tsx b/x-pack/plugins/maps/public/classes/styles/vector/components/vector_style_editor.tsx index 91bcc2dc0685..4fb2887c5287 100644 --- a/x-pack/plugins/maps/public/classes/styles/vector/components/vector_style_editor.tsx +++ b/x-pack/plugins/maps/public/classes/styles/vector/components/vector_style_editor.tsx @@ -9,7 +9,7 @@ import _ from 'lodash'; import React, { Component, Fragment } from 'react'; import { i18n } from '@kbn/i18n'; -import { EuiSpacer, EuiButtonGroup, EuiFormRow, EuiSwitch, EuiSwitchEvent } from '@elastic/eui'; +import { EuiButtonGroup, EuiFormRow, EuiSpacer, EuiSwitch, EuiSwitchEvent } from '@elastic/eui'; import { VectorStyleColorEditor } from './color/vector_style_color_editor'; import { VectorStyleSizeEditor } from './size/vector_style_size_editor'; // @ts-expect-error @@ -25,9 +25,10 @@ import { DEFAULT_FILL_COLORS, DEFAULT_LINE_COLORS } from '../../color_palettes'; import { LABEL_BORDER_SIZES, - VECTOR_STYLES, + LAYER_TYPE, STYLE_TYPE, VECTOR_SHAPE_TYPE, + VECTOR_STYLES, } from '../../../../../common/constants'; import { createStyleFieldsHelper, StyleField, StyleFieldsHelper } from '../style_fields_helper'; import { @@ -257,7 +258,18 @@ export class VectorStyleEditor extends Component { ); } - _renderLabelProperties() { + _renderLabelProperties(isPoints: boolean) { + if ( + !isPoints && + this.props.layer.getType() === LAYER_TYPE.TILED_VECTOR && + !this.props.layer.getSource().isESSource() + ) { + // This handles and edge-case + // 3rd party lines and polygons from mvt sources cannot be labeled, because they do not have label-centroid geometries inside the tile. + // These label-centroids are only added for ES-sources + return; + } + const hasLabel = this._hasLabel(); const hasLabelBorder = this._hasLabelBorder(); return ( @@ -456,7 +468,7 @@ export class VectorStyleEditor extends Component { /> - {this._renderLabelProperties()} + {this._renderLabelProperties(true)} ); } @@ -470,7 +482,7 @@ export class VectorStyleEditor extends Component { {this._renderLineWidth()} - {this._renderLabelProperties()} + {this._renderLabelProperties(false)} ); } @@ -487,7 +499,7 @@ export class VectorStyleEditor extends Component { {this._renderLineWidth()} - {this._renderLabelProperties()} + {this._renderLabelProperties(false)} ); } diff --git a/x-pack/plugins/maps/public/connected_components/_index.scss b/x-pack/plugins/maps/public/connected_components/_index.scss index a1a65796dc94..2a6e1a8982e6 100644 --- a/x-pack/plugins/maps/public/connected_components/_index.scss +++ b/x-pack/plugins/maps/public/connected_components/_index.scss @@ -1,6 +1,6 @@ @import 'map_container/map_container'; @import 'layer_panel/index'; -@import 'widget_overlay/index'; +@import 'right_side_controls/index'; @import 'toolbar_overlay/index'; @import 'mb_map/features_tooltip/index'; @import 'mb_map/scale_control/index'; diff --git a/x-pack/plugins/maps/public/connected_components/map_container/map_container.tsx b/x-pack/plugins/maps/public/connected_components/map_container/map_container.tsx index 525ba394ed50..e0cfe978bf45 100644 --- a/x-pack/plugins/maps/public/connected_components/map_container/map_container.tsx +++ b/x-pack/plugins/maps/public/connected_components/map_container/map_container.tsx @@ -14,8 +14,7 @@ import uuid from 'uuid/v4'; import { Filter } from 'src/plugins/data/public'; import { ActionExecutionContext, Action } from 'src/plugins/ui_actions/public'; import { MBMap } from '../mb_map'; -// @ts-expect-error -import { WidgetOverlay } from '../widget_overlay'; +import { RightSideControls } from '../right_side_controls'; import { ToolbarOverlay } from '../toolbar_overlay'; // @ts-expect-error import { LayerPanel } from '../layer_panel'; @@ -263,7 +262,7 @@ export class MapContainer extends Component { getActionContext={getActionContext} /> )} - + { test('is rendered', async () => { - const mockLayer1 = { + const mockLayer1 = ({ getAttributions: async () => { return [{ url: '', label: 'attribution with no link' }]; }, - }; - const mockLayer2 = { + } as unknown) as ILayer; + const mockLayer2 = ({ getAttributions: async () => { return [{ url: 'https://coolmaps.com', label: 'attribution with link' }]; }, - }; - const component = shallowWithIntl(); + } as unknown) as ILayer; + const component = shallow( + + ); // Ensure all promises resolve await new Promise((resolve) => process.nextTick(resolve)); diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/attribution_control/view.js b/x-pack/plugins/maps/public/connected_components/right_side_controls/attribution_control/attribution_control.tsx similarity index 82% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/attribution_control/view.js rename to x-pack/plugins/maps/public/connected_components/right_side_controls/attribution_control/attribution_control.tsx index 2eb776134286..3d36f6294463 100644 --- a/x-pack/plugins/maps/public/connected_components/widget_overlay/attribution_control/view.js +++ b/x-pack/plugins/maps/public/connected_components/right_side_controls/attribution_control/attribution_control.tsx @@ -5,12 +5,24 @@ * 2.0. */ -import React, { Fragment } from 'react'; +import React, { Component, Fragment } from 'react'; import _ from 'lodash'; import { EuiText, EuiLink } from '@elastic/eui'; import classNames from 'classnames'; +import { Attribution } from '../../../classes/sources/source'; +import { ILayer } from '../../../classes/layers/layer'; -export class AttributionControl extends React.Component { +export interface Props { + isFullScreen: boolean; + layerList: ILayer[]; +} + +interface State { + uniqueAttributions: Attribution[]; +} + +export class AttributionControl extends Component { + private _isMounted = false; state = { uniqueAttributions: [], }; @@ -60,7 +72,7 @@ export class AttributionControl extends React.Component { } }; - _renderAttribution({ url, label }) { + _renderAttribution({ url, label }: Attribution) { if (!url) { return label; } @@ -90,6 +102,7 @@ export class AttributionControl extends React.Component { return (
diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/attribution_control/index.js b/x-pack/plugins/maps/public/connected_components/right_side_controls/attribution_control/index.ts similarity index 64% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/attribution_control/index.js rename to x-pack/plugins/maps/public/connected_components/right_side_controls/attribution_control/index.ts index 32e93465c3c4..9c1dfee6e011 100644 --- a/x-pack/plugins/maps/public/connected_components/widget_overlay/attribution_control/index.js +++ b/x-pack/plugins/maps/public/connected_components/right_side_controls/attribution_control/index.ts @@ -6,20 +6,17 @@ */ import { connect } from 'react-redux'; -import { AttributionControl } from './view'; +import { AttributionControl } from './attribution_control'; import { getLayerList } from '../../../selectors/map_selectors'; import { getIsFullScreen } from '../../../selectors/ui_selectors'; +import { MapStoreState } from '../../../reducers/store'; -function mapStateToProps(state = {}) { +function mapStateToProps(state: MapStoreState) { return { layerList: getLayerList(state), isFullScreen: getIsFullScreen(state), }; } -function mapDispatchToProps() { - return {}; -} - -const connectedViewControl = connect(mapStateToProps, mapDispatchToProps)(AttributionControl); -export { connectedViewControl as AttributionControl }; +const connected = connect(mapStateToProps, {})(AttributionControl); +export { connected as AttributionControl }; diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/index.js b/x-pack/plugins/maps/public/connected_components/right_side_controls/index.ts similarity index 60% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/index.js rename to x-pack/plugins/maps/public/connected_components/right_side_controls/index.ts index d1f003ae4bc3..8b77726e5514 100644 --- a/x-pack/plugins/maps/public/connected_components/widget_overlay/index.js +++ b/x-pack/plugins/maps/public/connected_components/right_side_controls/index.ts @@ -6,15 +6,15 @@ */ import { connect } from 'react-redux'; -import { WidgetOverlay } from './widget_overlay'; - +import { RightSideControls } from './right_side_controls'; import { getMapSettings } from '../../selectors/map_selectors'; +import { MapStoreState } from '../../reducers/store'; -function mapStateToProps(state = {}) { +function mapStateToProps(state: MapStoreState) { return { settings: getMapSettings(state), }; } -const connectedWidgetOverlay = connect(mapStateToProps, null)(WidgetOverlay); -export { connectedWidgetOverlay as WidgetOverlay }; +const connected = connect(mapStateToProps, {})(RightSideControls); +export { connected as RightSideControls }; diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/__snapshots__/layer_control.test.tsx.snap b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/__snapshots__/layer_control.test.tsx.snap similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/__snapshots__/layer_control.test.tsx.snap rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/__snapshots__/layer_control.test.tsx.snap diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/_index.scss b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/_index.scss similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/_index.scss rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/_index.scss diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/_layer_control.scss b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/_layer_control.scss similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/_layer_control.scss rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/_layer_control.scss diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/index.ts b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/index.ts similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/index.ts rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/index.ts diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_control.test.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_control.test.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_control.test.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_control.test.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_control.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_control.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_control.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_control.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/__snapshots__/layer_toc.test.tsx.snap b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/__snapshots__/layer_toc.test.tsx.snap similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/__snapshots__/layer_toc.test.tsx.snap rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/__snapshots__/layer_toc.test.tsx.snap diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/index.ts b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/index.ts similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/index.ts rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/index.ts diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/layer_toc.test.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/layer_toc.test.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/layer_toc.test.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/layer_toc.test.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/layer_toc.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/layer_toc.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/layer_toc.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/layer_toc.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/__snapshots__/toc_entry.test.tsx.snap b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/__snapshots__/toc_entry.test.tsx.snap similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/__snapshots__/toc_entry.test.tsx.snap rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/__snapshots__/toc_entry.test.tsx.snap diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/_toc_entry.scss b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/_toc_entry.scss similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/_toc_entry.scss rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/_toc_entry.scss diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/action_labels.ts b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/action_labels.ts similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/action_labels.ts rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/action_labels.ts diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/index.ts b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/index.ts similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/index.ts rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/index.ts diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry.test.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry.test.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry.test.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry.test.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/__snapshots__/toc_entry_actions_popover.test.tsx.snap b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/__snapshots__/toc_entry_actions_popover.test.tsx.snap similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/__snapshots__/toc_entry_actions_popover.test.tsx.snap rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/__snapshots__/toc_entry_actions_popover.test.tsx.snap diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/index.ts b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/index.ts similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/index.ts rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/index.ts diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.test.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.test.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.test.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.test.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_actions_popover/toc_entry_actions_popover.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_button/index.ts b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_button/index.ts similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_button/index.ts rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_button/index.ts diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_button/toc_entry_button.tsx b/x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_button/toc_entry_button.tsx similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/layer_control/layer_toc/toc_entry/toc_entry_button/toc_entry_button.tsx rename to x-pack/plugins/maps/public/connected_components/right_side_controls/layer_control/layer_toc/toc_entry/toc_entry_button/toc_entry_button.tsx diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/_view_control.scss b/x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/_mouse_coordinates_control.scss similarity index 100% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/_view_control.scss rename to x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/_mouse_coordinates_control.scss diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/index.js b/x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/index.ts similarity index 61% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/index.js rename to x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/index.ts index a3a7865b61cb..fa094dd0d6b7 100644 --- a/x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/index.js +++ b/x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/index.ts @@ -6,15 +6,16 @@ */ import { connect } from 'react-redux'; -import { ViewControl } from './view_control'; +import { MouseCoordinatesControl } from './mouse_coordinates_control'; import { getMouseCoordinates, getMapZoom } from '../../../selectors/map_selectors'; +import { MapStoreState } from '../../../reducers/store'; -function mapStateToProps(state = {}) { +function mapStateToProps(state: MapStoreState) { return { mouseCoordinates: getMouseCoordinates(state), zoom: getMapZoom(state), }; } -const connectedViewControl = connect(mapStateToProps, null)(ViewControl); -export { connectedViewControl as ViewControl }; +const connected = connect(mapStateToProps, {})(MouseCoordinatesControl); +export { connected as MouseCoordinatesControl }; diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/view_control.js b/x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/mouse_coordinates_control.tsx similarity index 87% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/view_control.js rename to x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/mouse_coordinates_control.tsx index 409c6fd5ca44..32c9f2f58ecf 100644 --- a/x-pack/plugins/maps/public/connected_components/widget_overlay/view_control/view_control.js +++ b/x-pack/plugins/maps/public/connected_components/right_side_controls/mouse_coordinates_control/mouse_coordinates_control.tsx @@ -8,10 +8,18 @@ import _ from 'lodash'; import React, { Fragment } from 'react'; import { EuiText } from '@elastic/eui'; -import { DECIMAL_DEGREES_PRECISION } from '../../../../common/constants'; import { FormattedMessage } from '@kbn/i18n/react'; +import { DECIMAL_DEGREES_PRECISION } from '../../../../common/constants'; -export function ViewControl({ mouseCoordinates, zoom }) { +export interface Props { + mouseCoordinates?: { + lat: number; + lon: number; + }; + zoom: number; +} + +export function MouseCoordinatesControl({ mouseCoordinates, zoom }: Props) { let latLon; if (mouseCoordinates) { latLon = ( diff --git a/x-pack/plugins/maps/public/connected_components/widget_overlay/widget_overlay.js b/x-pack/plugins/maps/public/connected_components/right_side_controls/right_side_controls.tsx similarity index 71% rename from x-pack/plugins/maps/public/connected_components/widget_overlay/widget_overlay.js rename to x-pack/plugins/maps/public/connected_components/right_side_controls/right_side_controls.tsx index f7a362c79dcc..12f283597f42 100644 --- a/x-pack/plugins/maps/public/connected_components/widget_overlay/widget_overlay.js +++ b/x-pack/plugins/maps/public/connected_components/right_side_controls/right_side_controls.tsx @@ -8,10 +8,15 @@ import React from 'react'; import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; import { LayerControl } from './layer_control'; -import { ViewControl } from './view_control'; +import { MouseCoordinatesControl } from './mouse_coordinates_control'; import { AttributionControl } from './attribution_control'; +import { MapSettings } from '../../reducers/map'; -export function WidgetOverlay({ settings }) { +export interface Props { + settings: MapSettings; +} + +export function RightSideControls({ settings }: Props) { return ( {!settings.hideLayerControl && } - {!settings.hideViewControl && } + + {!settings.hideViewControl && } + diff --git a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.test.tsx b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.test.tsx index 858ab58b53f4..8e7aecf429ad 100644 --- a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.test.tsx +++ b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.test.tsx @@ -97,6 +97,7 @@ jest.mock('../../../../../util/index_utils', () => { }; } ), + isCcsIndexPattern: (a: string) => a.includes(':'), }; }); diff --git a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx index cbc5a226eb31..b6424c12283e 100644 --- a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx +++ b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx @@ -25,7 +25,7 @@ import { useMlKibana, useNavigateToPath } from '../../../../../contexts/kibana'; import { getNestedProperty } from '../../../../../util/object_utils'; -import { getIndexPatternAndSavedSearch } from '../../../../../util/index_utils'; +import { getIndexPatternAndSavedSearch, isCcsIndexPattern } from '../../../../../util/index_utils'; const fixedPageSize: number = 8; @@ -61,7 +61,7 @@ export const SourceSelection: FC = ({ onClose }) => { indexPatternTitle = indexPatternAndSavedSearch.indexPattern?.title ?? ''; } - if (indexPatternTitle.includes(':')) { + if (isCcsIndexPattern(indexPatternTitle)) { setIsCcsCallOut(true); if (type === 'search') { setCcsCallOutBodyText( diff --git a/x-pack/plugins/ml/public/application/explorer/explorer.js b/x-pack/plugins/ml/public/application/explorer/explorer.js index e33c09932daa..47d3e154ad32 100644 --- a/x-pack/plugins/ml/public/application/explorer/explorer.js +++ b/x-pack/plugins/ml/public/application/explorer/explorer.js @@ -21,6 +21,7 @@ import { EuiFlexItem, EuiFormRow, EuiHorizontalRule, + EuiIcon, EuiIconTip, EuiPage, EuiPageBody, @@ -28,6 +29,7 @@ import { EuiPageHeaderSection, EuiSpacer, EuiTitle, + EuiToolTip, EuiLoadingContent, EuiPanel, EuiAccordion, @@ -485,9 +487,21 @@ export class ExplorerUI extends React.Component { + + {i18n.translate('xpack.ml.explorer.intervalLabel', { + defaultMessage: 'Interval', + })} + + + + } > diff --git a/x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/categorization_job_creator.ts b/x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/categorization_job_creator.ts index 8702d35be8ac..eba5a954fadc 100644 --- a/x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/categorization_job_creator.ts +++ b/x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/categorization_job_creator.ts @@ -24,10 +24,12 @@ import { CategorizationAnalyzer, CategoryFieldExample, FieldExampleCheck, + VALIDATION_RESULT, } from '../../../../../../common/types/categories'; import { getRichDetectors } from './util/general'; import { CategorizationExamplesLoader } from '../results_loader'; import { getNewJobDefaults } from '../../../../services/ml_server_info'; +import { isCcsIndexPattern } from '../../../../util/index_utils'; export class CategorizationJobCreator extends JobCreator { protected _type: JOB_TYPE = JOB_TYPE.CATEGORIZATION; @@ -43,6 +45,7 @@ export class CategorizationJobCreator extends JobCreator { private _categorizationAnalyzer: CategorizationAnalyzer = {}; private _defaultCategorizationAnalyzer: CategorizationAnalyzer; private _partitionFieldName: string | null = null; + private _ccsVersionFailure: boolean = false; constructor( indexPattern: IndexPattern, @@ -126,9 +129,38 @@ export class CategorizationJobCreator extends JobCreator { this._validationChecks = validationChecks; this._overallValidStatus = overallValidStatus; + this._ccsVersionFailure = this._checkCcsFailure(examples, overallValidStatus, validationChecks); + if (this._ccsVersionFailure === true) { + // if the index pattern contains a cross-cluster search, one of the clusters may + // be on a version which doesn't support the fields API (e.g. 6.8) + // and so the categorization examples endpoint will fail + // if this is the case, we need to allow the user to progress in the wizard. + this._overallValidStatus = CATEGORY_EXAMPLES_VALIDATION_STATUS.VALID; + } + this._wizardInitialized$.next(true); - return { examples, sampleSize, overallValidStatus, validationChecks }; + return { + examples, + sampleSize, + overallValidStatus, + validationChecks, + ccsVersionFailure: this._ccsVersionFailure, + }; + } + + // Check to see if the examples failed due to a cross-cluster search being used + private _checkCcsFailure( + examples: CategoryFieldExample[], + status: CATEGORY_EXAMPLES_VALIDATION_STATUS, + checks: FieldExampleCheck[] + ) { + return ( + examples.length === 0 && + status === CATEGORY_EXAMPLES_VALIDATION_STATUS.INVALID && + checks[0]?.id === VALIDATION_RESULT.NO_EXAMPLES && + isCcsIndexPattern(this.indexPatternTitle) + ); } public get categoryFieldExamples() { diff --git a/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/invalid_ccs_version_valid_callout.tsx b/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/invalid_ccs_version_valid_callout.tsx new file mode 100644 index 000000000000..112634b83780 --- /dev/null +++ b/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/invalid_ccs_version_valid_callout.tsx @@ -0,0 +1,30 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { FC } from 'react'; +import { EuiCallOut } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; +import { FormattedMessage } from '@kbn/i18n/react'; + +export const InvalidCssVersionCallout: FC = () => { + return ( + + + + ); +}; diff --git a/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/metric_selection.tsx b/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/metric_selection.tsx index 8a2b9db77bfb..34cba31aa17a 100644 --- a/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/metric_selection.tsx +++ b/x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/categorization_view/metric_selection.tsx @@ -17,6 +17,7 @@ import { CategorizationPerPartitionField } from '../categorization_partition_fie import { FieldExamples } from './field_examples'; import { ExamplesValidCallout } from './examples_valid_callout'; +import { InvalidCssVersionCallout } from './invalid_ccs_version_valid_callout'; import { CategoryFieldExample, FieldExampleCheck, @@ -33,6 +34,7 @@ export const CategorizationDetectors: FC = ({ setIsValid }) => { const jobCreator = jc as CategorizationJobCreator; const [loadingData, setLoadingData] = useState(false); + const [ccsVersionFailure, setCcsVersionFailure] = useState(false); const [start, setStart] = useState(jobCreator.start); const [end, setEnd] = useState(jobCreator.end); const [categorizationAnalyzerString, setCategorizationAnalyzerString] = useState( @@ -85,10 +87,12 @@ export const CategorizationDetectors: FC = ({ setIsValid }) => { examples, overallValidStatus: tempOverallValidStatus, validationChecks: tempValidationChecks, + ccsVersionFailure: tempCcsVersionFailure, } = await jobCreator.loadCategorizationFieldExamples(); setFieldExamples(examples); setOverallValidStatus(tempOverallValidStatus); setValidationChecks(tempValidationChecks); + setCcsVersionFailure(tempCcsVersionFailure); setLoadingData(false); } catch (error) { setLoadingData(false); @@ -96,11 +100,13 @@ export const CategorizationDetectors: FC = ({ setIsValid }) => { setValidationChecks([]); setOverallValidStatus(CATEGORY_EXAMPLES_VALIDATION_STATUS.INVALID); getToastNotificationService().displayErrorToast(error); + setCcsVersionFailure(false); } } else { setFieldExamples(null); setValidationChecks([]); setOverallValidStatus(CATEGORY_EXAMPLES_VALIDATION_STATUS.INVALID); + setCcsVersionFailure(false); } setIsValid(categorizationFieldName !== null); } @@ -119,7 +125,7 @@ export const CategorizationDetectors: FC = ({ setIsValid }) => {
)} - {fieldExamples !== null && loadingData === false && ( + {ccsVersionFailure === false && fieldExamples !== null && loadingData === false && ( <> = ({ setIsValid }) => { )} + {ccsVersionFailure === true && } diff --git a/x-pack/plugins/ml/public/application/services/ml_api_service/index.ts b/x-pack/plugins/ml/public/application/services/ml_api_service/index.ts index 3b6b948132c4..bf6b752faa8d 100644 --- a/x-pack/plugins/ml/public/application/services/ml_api_service/index.ts +++ b/x-pack/plugins/ml/public/application/services/ml_api_service/index.ts @@ -361,13 +361,6 @@ export function mlApiServicesProvider(httpService: HttpService) { }); }, - getNotificationSettings() { - return httpService.http({ - path: `${basePath()}/notification_settings`, - method: 'GET', - }); - }, - checkIndexExists({ index }: { index: string }) { const body = JSON.stringify({ index }); diff --git a/x-pack/plugins/ml/public/application/timeseriesexplorer/timeseriesexplorer.js b/x-pack/plugins/ml/public/application/timeseriesexplorer/timeseriesexplorer.js index 06a0f7e17e16..8e5bf249ae28 100644 --- a/x-pack/plugins/ml/public/application/timeseriesexplorer/timeseriesexplorer.js +++ b/x-pack/plugins/ml/public/application/timeseriesexplorer/timeseriesexplorer.js @@ -26,9 +26,11 @@ import { EuiFlexGroup, EuiFlexItem, EuiFormRow, + EuiIcon, EuiSpacer, EuiPanel, EuiTitle, + EuiToolTip, EuiAccordion, EuiBadge, } from '@elastic/eui'; @@ -1259,9 +1261,21 @@ export class TimeSeriesExplorer extends React.Component { + + {i18n.translate('xpack.ml.timeSeriesExplorer.intervalLabel', { + defaultMessage: 'Interval', + })} + + + + } > diff --git a/x-pack/plugins/ml/public/application/util/index_utils.ts b/x-pack/plugins/ml/public/application/util/index_utils.ts index 4faa77b2fbc3..9d705c8cd725 100644 --- a/x-pack/plugins/ml/public/application/util/index_utils.ts +++ b/x-pack/plugins/ml/public/application/util/index_utils.ts @@ -146,3 +146,11 @@ export function timeBasedIndexCheck(indexPattern: IndexPattern, showNotification return true; } } + +/** + * Returns true if the index pattern contains a : + * which means it is cross-cluster + */ +export function isCcsIndexPattern(indexPatternTitle: string) { + return indexPatternTitle.includes(':'); +} diff --git a/x-pack/plugins/ml/server/plugin.ts b/x-pack/plugins/ml/server/plugin.ts index 746d29095070..213be9421c41 100644 --- a/x-pack/plugins/ml/server/plugin.ts +++ b/x-pack/plugins/ml/server/plugin.ts @@ -42,7 +42,6 @@ import { jobRoutes } from './routes/anomaly_detectors'; import { jobServiceRoutes } from './routes/job_service'; import { savedObjectsRoutes } from './routes/saved_objects'; import { jobValidationRoutes } from './routes/job_validation'; -import { notificationRoutes } from './routes/notification_settings'; import { resultsServiceRoutes } from './routes/results_service'; import { systemRoutes } from './routes/system'; import { MlLicense } from '../common/license'; @@ -181,7 +180,6 @@ export class MlServerPlugin jobAuditMessagesRoutes(routeInit); jobRoutes(routeInit); jobServiceRoutes(routeInit); - notificationRoutes(routeInit); resultsServiceRoutes(routeInit); jobValidationRoutes(routeInit); savedObjectsRoutes(routeInit, { diff --git a/x-pack/plugins/ml/server/routes/apidoc.json b/x-pack/plugins/ml/server/routes/apidoc.json index 55f66b354df2..7b54e48099d6 100644 --- a/x-pack/plugins/ml/server/routes/apidoc.json +++ b/x-pack/plugins/ml/server/routes/apidoc.json @@ -127,9 +127,6 @@ "ValidateCardinality", "ValidateJob", - "NotificationSettings", - "GetNotificationSettings", - "DatafeedService", "CreateDatafeed", "PreviewDatafeed", diff --git a/x-pack/plugins/ml/server/routes/notification_settings.ts b/x-pack/plugins/ml/server/routes/notification_settings.ts deleted file mode 100644 index 3e0a74a32ec8..000000000000 --- a/x-pack/plugins/ml/server/routes/notification_settings.ts +++ /dev/null @@ -1,45 +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 - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { wrapError } from '../client/error_wrapper'; -import { RouteInitialization } from '../types'; - -/** - * Routes for notification settings - */ -export function notificationRoutes({ router, routeGuard }: RouteInitialization) { - /** - * @apiGroup NotificationSettings - * - * @api {get} /api/ml/notification_settings Get notification settings - * @apiName GetNotificationSettings - * @apiDescription Returns cluster notification settings - */ - router.get( - { - path: '/api/ml/notification_settings', - validate: false, - options: { - tags: ['access:ml:canAccessML'], - }, - }, - routeGuard.fullLicenseAPIGuard(async ({ client, response }) => { - try { - const { body } = await client.asCurrentUser.cluster.getSettings({ - include_defaults: true, - filter_path: '**.xpack.notification', - }); - - return response.ok({ - body, - }); - } catch (e) { - return response.customError(wrapError(e)); - } - }) - ); -} diff --git a/x-pack/plugins/monitoring/common/types/es.ts b/x-pack/plugins/monitoring/common/types/es.ts index 38a7e7859272..81a45695002e 100644 --- a/x-pack/plugins/monitoring/common/types/es.ts +++ b/x-pack/plugins/monitoring/common/types/es.ts @@ -39,15 +39,31 @@ export interface ElasticsearchSourceKibanaStats { response_times?: { max?: number; }; + transport_address?: string; + host?: string; }; os?: { memory?: { free_in_bytes?: number; }; + load?: { + '1m'?: number; + }; + }; + response_times?: { + average?: number; + max?: number; + }; + requests?: { + total?: number; }; process?: { uptime_in_millis?: number; + memory?: { + resident_set_size_in_bytes?: number; + }; }; + concurrent_connections?: number; } export interface ElasticsearchSourceLogstashPipelineVertex { @@ -100,6 +116,7 @@ export interface ElasticsearchNodeStats { export interface ElasticsearchIndexStats { index?: string; + name?: string; shards: { primaries: number; }; @@ -139,15 +156,21 @@ export interface ElasticsearchLegacySource { heap_max_in_bytes?: number; }; }; + fs: { + available_in_bytes?: number; + total_in_bytes?: number; + }; versions?: string[]; }; indices?: { count?: number; docs?: { + deleted?: number; count?: number; }; shards?: { total?: number; + primaries?: number; }; store?: { size_in_bytes?: number; @@ -156,6 +179,7 @@ export interface ElasticsearchLegacySource { }; cluster_state?: { status?: string; + state_uuid?: string; nodes?: { [nodeUuid: string]: { ephemeral_id?: string; @@ -189,14 +213,46 @@ export interface ElasticsearchLegacySource { }; logstash_stats?: { timestamp?: string; - logstash?: {}; - events?: {}; - reloads?: {}; + logstash?: { + timestamp?: string; + pipeline: { + batch_size: number; + workers: number; + }; + http_address: string; + name: string; + host: string; + uuid: string; + version: string; + status: string; + }; queue?: { type?: string; }; jvm?: { uptime_in_millis?: number; + mem?: { + heap_used_percent?: number; + }; + }; + process?: { + cpu?: { + percent?: number; + }; + }; + os?: { + cpu?: { + load_average?: { + '1m'?: number; + }; + }; + }; + events?: { + out?: number; + }; + reloads?: { + failures?: number; + successes?: number; }; }; beats_stats?: { @@ -276,14 +332,12 @@ export interface ElasticsearchLegacySource { }; index_stats?: ElasticsearchIndexStats; node_stats?: ElasticsearchNodeStats; - service?: { - address?: string; - }; shard?: { index?: string; shard?: string; + state?: string; primary?: boolean; - relocating_node?: string; + relocating_node: string | null; node?: string; }; ccr_stats?: { @@ -303,17 +357,309 @@ export interface ElasticsearchLegacySource { } export interface ElasticsearchIndexRecoveryShard { - start_time_in_millis: number; - stop_time_in_millis: number; + id?: number; + name?: string; + stage?: string; + type?: string; + primary?: boolean; + source?: { + name?: string; + transport_address?: string; + }; + target?: { + name?: string; + transport_address?: string; + }; + index?: { + files?: { + percent?: string; + recovered?: number; + total?: number; + reused?: number; + }; + size?: { + recovered_in_bytes?: number; + reused_in_bytes?: number; + total_in_bytes?: number; + }; + }; + start_time_in_millis?: number; + stop_time_in_millis?: number; + translog?: { + total?: number; + percent?: string; + total_on_start?: number; + }; } export interface ElasticsearchMetricbeatNode { + name?: string; stats?: ElasticsearchNodeStats; } export interface ElasticsearchMetricbeatSource { + '@timestamp'?: string; + service?: { + address?: string; + }; elasticsearch?: { node?: ElasticsearchLegacySource['source_node'] & ElasticsearchMetricbeatNode; + index?: ElasticsearchIndexStats & { + recovery?: ElasticsearchIndexRecoveryShard; + }; + version?: string; + shard?: ElasticsearchLegacySource['shard'] & { + number?: string; + relocating_node?: { + id?: string; + }; + }; + ml?: { + job?: { + id?: string; + state?: string; + model_size?: {}; + data_counts?: { + processed_record_count?: number; + }; + forecasts_stats?: { + total?: number; + }; + }; + }; + ccr?: { + leader?: { + index?: string; + }; + follower?: { + index?: string; + shard?: { + number?: number; + }; + time_since_last_read?: { + ms?: number; + }; + operations_written?: number; + failed_read_requests?: number; + }; + + read_exceptions?: Array<{ + exception?: { + type?: string; + }; + }>; + }; + cluster?: { + name?: string; + id?: string; + stats?: { + license?: ElasticsearchLegacySource['license']; + state?: { + state_uuid?: string; + master_node?: string; + nodes?: { + [uuid: string]: {}; + }; + }; + status?: string; + version?: string; + indices?: { + total?: number; + docs?: { + deleted?: number; + total?: number; + }; + shards?: { + count?: number; + primaries?: number; + }; + store?: { + size?: { + bytes?: number; + }; + }; + }; + nodes?: { + versions?: string[]; + count?: number; + jvm?: { + max_uptime?: { + ms?: number; + }; + memory?: { + heap?: { + used?: { + bytes?: number; + }; + max?: { + bytes?: number; + }; + }; + }; + }; + fs?: { + available?: { + bytes?: number; + }; + total?: { + bytes?: number; + }; + }; + }; + stack?: { + xpack?: { + ccr?: { + available?: boolean; + enabled?: boolean; + }; + }; + }; + }; + }; + }; + kibana?: { + kibana?: { + transport_address?: string; + name?: string; + host?: string; + uuid?: string; + status?: string; + }; + stats?: { + concurrent_connections?: number; + process?: { + uptime?: { + ms?: number; + }; + memory?: { + heap?: { + size_limit?: { + bytes?: number; + }; + }; + resident_set_size?: { + bytes?: number; + }; + }; + }; + os?: { + load?: { + '1m'?: number; + }; + memory?: { + free_in_bytes?: number; + }; + }; + request?: { + disconnects?: number; + total?: number; + }; + response_time?: { + avg?: { + ms?: number; + }; + max?: { + ms?: number; + }; + }; + }; + }; + logstash?: { + node?: { + stats?: { + timestamp?: string; + logstash?: { + pipeline: { + batch_size: number; + workers: number; + }; + http_address: string; + name: string; + host: string; + uuid: string; + version: string; + status: string; + }; + queue?: { + type?: string; + }; + jvm?: { + uptime_in_millis?: number; + mem?: { + heap_used_percent?: number; + }; + }; + process?: { + cpu?: { + percent?: number; + }; + }; + os?: { + cpu?: { + load_average?: { + '1m'?: number; + }; + }; + }; + events?: { + out?: number; + }; + reloads?: { + failures?: number; + successes?: number; + }; + }; + }; + }; + beat?: { + stats?: { + timestamp?: string; + beat?: { + uuid?: string; + name?: string; + type?: string; + version?: string; + host?: string; + }; + handles?: { + limit?: { + hard?: number; + soft?: number; + }; + }; + info?: { + uptime?: { + ms?: number; + }; + }; + memstats?: { + memory?: { + alloc?: number; + }; + }; + libbeat?: { + config?: { + reloads?: number; + }; + output?: { + type?: string; + read?: { + errors?: number; + }; + write?: { + bytes?: string; + errors?: number; + }; + }; + pipeline?: { + events?: { + total?: number; + published?: number; + dropped?: number; + }; + }; + }; + }; }; } diff --git a/x-pack/plugins/monitoring/common/types/filebeat.ts b/x-pack/plugins/monitoring/common/types/filebeat.ts new file mode 100644 index 000000000000..29c1af8a3a70 --- /dev/null +++ b/x-pack/plugins/monitoring/common/types/filebeat.ts @@ -0,0 +1,38 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export interface FilebeatResponse { + hits?: { + hits: FilebeatResponseHit[]; + total: { + value: number; + }; + }; + aggregations?: any; +} + +export interface FilebeatResponseHit { + _source: { + message?: string; + log?: { + level?: string; + }; + '@timestamp': string; + event?: { + dataset?: string; + }; + elasticsearch?: { + component?: string; + index?: { + name?: string; + }; + node?: { + name?: string; + }; + }; + }; +} diff --git a/x-pack/plugins/monitoring/public/components/cluster/overview/beats_panel.js b/x-pack/plugins/monitoring/public/components/cluster/overview/beats_panel.js index c907a11d4587..c882497ea04e 100644 --- a/x-pack/plugins/monitoring/public/components/cluster/overview/beats_panel.js +++ b/x-pack/plugins/monitoring/public/components/cluster/overview/beats_panel.js @@ -48,7 +48,7 @@ export function BeatsPanel(props) { /> ) : null; - const beatTypes = props.beats.types.map((beat, index) => { + const beatTypes = get(props, 'beats.types', []).map((beat, index) => { return [ @@ -437,8 +437,16 @@ export function ElasticsearchPanel(props) { @@ -489,7 +497,7 @@ export function ElasticsearchPanel(props) { data-test-subj="esDocumentsCount" className="eui-textBreakWord" > - {formatNumber(get(indices, 'docs.count'), 'int_commas')} + {formatNumber(get(indices, 'docs.total', get(indices, 'docs.count')), 'int_commas')} @@ -499,7 +507,10 @@ export function ElasticsearchPanel(props) { /> - {formatNumber(get(indices, 'store.size_in_bytes'), 'byte')} + {formatNumber( + get(indices, 'store.size.bytes', get(indices, 'store.size_in_bytes')), + 'byte' + )} diff --git a/x-pack/plugins/monitoring/public/components/elasticsearch/ccr_shard/__snapshots__/ccr_shard.test.js.snap b/x-pack/plugins/monitoring/public/components/elasticsearch/ccr_shard/__snapshots__/ccr_shard.test.js.snap index 81398c1d8e83..72ff704916e2 100644 --- a/x-pack/plugins/monitoring/public/components/elasticsearch/ccr_shard/__snapshots__/ccr_shard.test.js.snap +++ b/x-pack/plugins/monitoring/public/components/elasticsearch/ccr_shard/__snapshots__/ccr_shard.test.js.snap @@ -47,13 +47,7 @@ exports[`CcrShard that is renders an exception properly 1`] = ` `; exports[`CcrShard that it renders normally 1`] = ` - + + { - const type = shard.primary ? 'primary' : 'replica'; - const key = `${shard.index}.${shard.node}.${type}.${shard.state}.${shard.shard}`; + const type = get(shard, 'shard.primary', shard.primary) ? 'primary' : 'replica'; + const key = `${get(shard, 'index.name', shard.index)}.${get( + shard, + 'node.name', + shard.node + )}.${type}.${get(shard, 'shard.state', shard.state)}.${get( + shard, + 'shard.number', + shard.shard + )}`; return ; }; diff --git a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/components/shard.js b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/components/shard.js index ae82a28d0508..a81e1f8db5ec 100644 --- a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/components/shard.js +++ b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/components/shard.js @@ -6,6 +6,7 @@ */ import React from 'react'; +import { get } from 'lodash'; import { calculateClass } from '../lib/calculate_class'; import { vents } from '../lib/vents'; import { i18n } from '@kbn/i18n'; @@ -65,9 +66,11 @@ export class Shard extends React.Component { generateKey = (relocating) => { const shard = this.props.shard; - const shardType = shard.primary ? 'primary' : 'replica'; - const additionId = shard.state === 'UNASSIGNED' ? Math.random() : ''; - const node = relocating ? shard.relocating_node : shard.node; + const shardType = get(shard, 'shard.primary', shard.primary) ? 'primary' : 'replica'; + const additionId = get(shard, 'shard.state', shard.state) === 'UNASSIGNED' ? Math.random() : ''; + const node = relocating + ? get(shard, 'relocation_node.uuid', shard.relocating_node) + : get(shard, 'shard.name', shard.node); return shard.index + '.' + node + '.' + shardType + '.' + shard.shard + additionId; }; @@ -93,9 +96,9 @@ export class Shard extends React.Component { const shard = this.props.shard; const classes = calculateClass(shard); const color = getColor(classes); - const classification = classes + ' ' + shard.shard; + const classification = classes + ' ' + get(shard, 'shard.number', shard.shard); - let shardUi = {shard.shard}; + let shardUi = {get(shard, 'shard.number', shard.shard)}; const tooltipContent = shard.tooltip_message || i18n.translate('xpack.monitoring.elasticsearch.shardAllocation.shardDisplayName', { diff --git a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/calculate_class.js b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/calculate_class.js index bb08661b788d..f15460421fd8 100644 --- a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/calculate_class.js +++ b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/calculate_class.js @@ -4,6 +4,7 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ +import { get } from 'lodash'; export function calculateClass(item, initial) { const classes = [item.type]; @@ -12,9 +13,16 @@ export function calculateClass(item, initial) { } if (item.type === 'shard') { classes.push('monShard'); - classes.push((item.primary && 'primary') || 'replica'); - classes.push(item.state.toLowerCase()); - if (item.state === 'UNASSIGNED' && item.primary) { + if (get(item, 'shard.primary', item.primary)) { + classes.push('primary'); + } else { + classes.push('replica'); + } + classes.push(get(item, 'shard.state', item.state).toLowerCase()); + if ( + get(item, 'shard.state', item.state) === 'UNASSIGNED' && + get(item, 'shard.primary', item.primary) + ) { classes.push('emergency'); } } diff --git a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/decorate_shards.js b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/decorate_shards.js index 56b06cf1dfe6..aedf9416d6ff 100644 --- a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/decorate_shards.js +++ b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/lib/decorate_shards.js @@ -41,7 +41,8 @@ export function decorateShards(shards, nodes) { ); } } - return upperFirst(shard.state.toLowerCase()); + const state = get(shard, 'state', get(shard, 'shard.state')); + return upperFirst(state.toLowerCase()); } return shards.map((shard) => { diff --git a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/transformers/nodes_by_indices.js b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/transformers/nodes_by_indices.js index 46ed71d90ee7..7e6833d23336 100644 --- a/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/transformers/nodes_by_indices.js +++ b/x-pack/plugins/monitoring/public/components/elasticsearch/shard_allocation/transformers/nodes_by_indices.js @@ -5,7 +5,7 @@ * 2.0. */ -import { find, some, reduce, values, sortBy } from 'lodash'; +import { find, some, reduce, values, sortBy, get } from 'lodash'; import { hasPrimaryChildren } from '../lib/has_primary_children'; import { decorateShards } from '../lib/decorate_shards'; @@ -28,8 +28,8 @@ export function nodesByIndices() { } function createIndexAddShard(obj, shard) { - const node = shard.node || 'unassigned'; - const index = shard.index; + const node = get(shard, 'node.name', shard.node || 'unassigned'); + const index = get(shard, 'index.name', shard.index); if (!obj[node]) { createNode(obj, nodes[node], node); } diff --git a/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js b/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js index 4477d59adffd..69579cb831c0 100644 --- a/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js +++ b/x-pack/plugins/monitoring/public/directives/elasticsearch/ml_job_listing/index.js @@ -111,7 +111,17 @@ export function monitoringMlListingProvider() { } ); - scope.$watch('jobs', (jobs = []) => { + scope.$watch('jobs', (_jobs = []) => { + const jobs = _jobs.map((job) => { + if (job.ml) { + return { + ...job.ml.job, + node: job.node, + job_id: job.ml.job.id, + }; + } + return job; + }); const mlTable = ( diff --git a/x-pack/plugins/monitoring/public/views/elasticsearch/ccr/shard/index.js b/x-pack/plugins/monitoring/public/views/elasticsearch/ccr/shard/index.js index 28aeedb024fd..21633bd03622 100644 --- a/x-pack/plugins/monitoring/public/views/elasticsearch/ccr/shard/index.js +++ b/x-pack/plugins/monitoring/public/views/elasticsearch/ccr/shard/index.js @@ -75,8 +75,16 @@ uiRoutes.when('/elasticsearch/ccr/:index/shard/:shardId', { i18n.translate('xpack.monitoring.elasticsearch.ccr.shard.pageTitle', { defaultMessage: 'Elasticsearch Ccr Shard - Index: {followerIndex} Shard: {shardId}', values: { - followerIndex: get(pageData, 'stat.follower_index'), - shardId: get(pageData, 'stat.shard_id'), + followerIndex: get( + pageData, + 'stat.follower.index', + get(pageData, 'stat.follower_index') + ), + shardId: get( + pageData, + 'stat.follower.shard.number', + get(pageData, 'stat.shard_id') + ), }, }) ); diff --git a/x-pack/plugins/monitoring/server/lib/alerts/fetch_cluster_health.ts b/x-pack/plugins/monitoring/server/lib/alerts/fetch_cluster_health.ts index ddbf4e3d4b3c..f622418c7791 100644 --- a/x-pack/plugins/monitoring/server/lib/alerts/fetch_cluster_health.ts +++ b/x-pack/plugins/monitoring/server/lib/alerts/fetch_cluster_health.ts @@ -6,7 +6,7 @@ */ import { ElasticsearchClient } from 'kibana/server'; import { AlertCluster, AlertClusterHealth } from '../../../common/types/alerts'; -import { ElasticsearchSource } from '../../../common/types/es'; +import { ElasticsearchSource, ElasticsearchResponse } from '../../../common/types/es'; export async function fetchClusterHealth( esClient: ElasticsearchClient, @@ -59,8 +59,9 @@ export async function fetchClusterHealth( }, }; - const { body: response } = await esClient.search(params); - return response.hits.hits.map((hit) => { + const result = await esClient.search(params); + const response: ElasticsearchResponse = result.body as ElasticsearchResponse; + return (response.hits?.hits ?? []).map((hit) => { return { health: hit._source!.cluster_state?.status, clusterUuid: hit._source!.cluster_uuid, diff --git a/x-pack/plugins/monitoring/server/lib/alerts/fetch_elasticsearch_versions.ts b/x-pack/plugins/monitoring/server/lib/alerts/fetch_elasticsearch_versions.ts index 111ef5b0c120..f25f1dbe594d 100644 --- a/x-pack/plugins/monitoring/server/lib/alerts/fetch_elasticsearch_versions.ts +++ b/x-pack/plugins/monitoring/server/lib/alerts/fetch_elasticsearch_versions.ts @@ -6,7 +6,7 @@ */ import { ElasticsearchClient } from 'kibana/server'; import { AlertCluster, AlertVersions } from '../../../common/types/alerts'; -import { ElasticsearchSource } from '../../../common/types/es'; +import { ElasticsearchSource, ElasticsearchResponse } from '../../../common/types/es'; export async function fetchElasticsearchVersions( esClient: ElasticsearchClient, @@ -60,8 +60,9 @@ export async function fetchElasticsearchVersions( }, }; - const { body: response } = await esClient.search(params); - return response.hits.hits.map((hit) => { + const result = await esClient.search(params); + const response: ElasticsearchResponse = result.body as ElasticsearchResponse; + return (response.hits?.hits ?? []).map((hit) => { const versions = hit._source!.cluster_stats?.nodes?.versions ?? []; return { versions, diff --git a/x-pack/plugins/monitoring/server/lib/apm/_apm_stats.js b/x-pack/plugins/monitoring/server/lib/apm/_apm_stats.js index ffd4ae77fa0f..bdcd4d07f2c6 100644 --- a/x-pack/plugins/monitoring/server/lib/apm/_apm_stats.js +++ b/x-pack/plugins/monitoring/server/lib/apm/_apm_stats.js @@ -94,13 +94,13 @@ export const apmUuidsAgg = (maxBucketSize) => ({ }); export const apmAggResponseHandler = (response) => { - const apmTotal = get(response, 'aggregations.total.value', null); + const apmTotal = get(response, 'aggregations.total.value', 0); - const eventsTotalMax = get(response, 'aggregations.max_events_total.value', null); - const eventsTotalMin = get(response, 'aggregations.min_events_total.value', null); - const memRssMax = get(response, 'aggregations.max_mem_rss_total.value', null); - const memRssMin = get(response, 'aggregations.min_mem_rss_total.value', null); - const memTotal = get(response, 'aggregations.max_mem_total_total.value', null); + const eventsTotalMax = get(response, 'aggregations.max_events_total.value', 0); + const eventsTotalMin = get(response, 'aggregations.min_events_total.value', 0); + const memRssMax = get(response, 'aggregations.max_mem_rss_total.value', 0); + const memRssMin = get(response, 'aggregations.min_mem_rss_total.value', 0); + const memTotal = get(response, 'aggregations.max_mem_total_total.value', 0); return { apmTotal, diff --git a/x-pack/plugins/monitoring/server/lib/apm/_get_time_of_last_event.ts b/x-pack/plugins/monitoring/server/lib/apm/_get_time_of_last_event.ts index 07a3ca933211..93ff966b5def 100644 --- a/x-pack/plugins/monitoring/server/lib/apm/_get_time_of_last_event.ts +++ b/x-pack/plugins/monitoring/server/lib/apm/_get_time_of_last_event.ts @@ -32,7 +32,7 @@ export async function getTimeOfLastEvent({ size: 1, ignoreUnavailable: true, body: { - _source: ['timestamp'], + _source: ['beats_stats.timestamp', '@timestamp'], sort: [ { timestamp: { @@ -60,5 +60,8 @@ export async function getTimeOfLastEvent({ }; const response = await callWithRequest(req, 'search', params); - return response.hits?.hits.length ? response.hits?.hits[0]?._source.timestamp : undefined; + return response.hits?.hits.length + ? response.hits?.hits[0]?._source.beats_stats?.timestamp ?? + response.hits?.hits[0]?._source['@timestamp'] + : undefined; } diff --git a/x-pack/plugins/monitoring/server/lib/apm/create_apm_query.js b/x-pack/plugins/monitoring/server/lib/apm/create_apm_query.js index f9818cb7d0cd..1680fcdfdb22 100644 --- a/x-pack/plugins/monitoring/server/lib/apm/create_apm_query.js +++ b/x-pack/plugins/monitoring/server/lib/apm/create_apm_query.js @@ -18,7 +18,7 @@ export function createApmQuery(options = {}) { options = defaults(options, { filters: [], metric: ApmMetric.getMetricFields(), - type: 'beats_stats', + types: ['stats', 'beats_stats'], }); options.filters.push({ diff --git a/x-pack/plugins/monitoring/server/lib/apm/get_apm_info.ts b/x-pack/plugins/monitoring/server/lib/apm/get_apm_info.ts index df74d6b609f9..53a4aeb06bcc 100644 --- a/x-pack/plugins/monitoring/server/lib/apm/get_apm_info.ts +++ b/x-pack/plugins/monitoring/server/lib/apm/get_apm_info.ts @@ -29,36 +29,40 @@ export function handleResponse( const firstHit = response.hits.hits[0]; - let firstStats = null; - const stats = firstHit._source.beats_stats ?? {}; - + let firstStatsMetrics = null; if ( firstHit.inner_hits?.first_hit?.hits?.hits && - firstHit.inner_hits?.first_hit?.hits?.hits.length > 0 && - firstHit.inner_hits.first_hit.hits.hits[0]._source.beats_stats + firstHit.inner_hits?.first_hit?.hits?.hits.length > 0 ) { - firstStats = firstHit.inner_hits.first_hit.hits.hits[0]._source.beats_stats; + firstStatsMetrics = + firstHit.inner_hits.first_hit.hits.hits[0]._source.beats_stats?.metrics ?? + firstHit.inner_hits.first_hit.hits.hits[0]._source.beat?.stats; } - const eventsTotalFirst = firstStats?.metrics?.libbeat?.pipeline?.events?.total; - const eventsEmittedFirst = firstStats?.metrics?.libbeat?.pipeline?.events?.published; - const eventsDroppedFirst = firstStats?.metrics?.libbeat?.pipeline?.events?.dropped; - const bytesWrittenFirst = firstStats?.metrics?.libbeat?.output?.write?.bytes; + const stats = firstHit._source.beats_stats ?? firstHit._source?.beat?.stats; + const statsMetrics = firstHit._source.beats_stats?.metrics ?? firstHit._source?.beat?.stats; - const eventsTotalLast = stats.metrics?.libbeat?.pipeline?.events?.total; - const eventsEmittedLast = stats.metrics?.libbeat?.pipeline?.events?.published; - const eventsDroppedLast = stats.metrics?.libbeat?.pipeline?.events?.dropped; - const bytesWrittenLast = stats.metrics?.libbeat?.output?.write?.bytes; + const eventsTotalFirst = firstStatsMetrics?.libbeat?.pipeline?.events?.total ?? null; + const eventsEmittedFirst = firstStatsMetrics?.libbeat?.pipeline?.events?.published ?? null; + const eventsDroppedFirst = firstStatsMetrics?.libbeat?.pipeline?.events?.dropped ?? null; + const bytesWrittenFirst = firstStatsMetrics?.libbeat?.output?.write?.bytes ?? null; + + const eventsTotalLast = statsMetrics?.libbeat?.pipeline?.events?.total ?? null; + const eventsEmittedLast = statsMetrics?.libbeat?.pipeline?.events?.published ?? null; + const eventsDroppedLast = statsMetrics?.libbeat?.pipeline?.events?.dropped ?? null; + const bytesWrittenLast = statsMetrics?.libbeat?.output?.write?.bytes ?? null; return { uuid: apmUuid, - transportAddress: stats.beat?.host, - version: stats.beat?.version, - name: stats.beat?.name, - type: upperFirst(stats.beat?.type) || null, - output: upperFirst(stats.metrics?.libbeat?.output?.type) || null, - configReloads: stats.metrics?.libbeat?.config?.reloads, - uptime: stats.metrics?.beat?.info?.uptime?.ms, + transportAddress: stats?.beat?.host, + version: stats?.beat?.version, + name: stats?.beat?.name, + type: upperFirst(stats?.beat?.type) || null, + output: upperFirst(statsMetrics?.libbeat?.output?.type) ?? null, + configReloads: statsMetrics?.libbeat?.config?.reloads ?? null, + uptime: + firstHit._source.beats_stats?.metrics?.beat?.info?.uptime?.ms ?? + firstHit._source.beat?.stats?.info?.uptime?.ms, eventsTotal: getDiffCalculation(eventsTotalLast, eventsTotalFirst), eventsEmitted: getDiffCalculation(eventsEmittedLast, eventsEmittedFirst), eventsDropped: getDiffCalculation(eventsDroppedLast, eventsDroppedFirst), @@ -110,6 +114,22 @@ export async function getApmInfo( 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.dropped', 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', + + 'hits.hits._source.beat.stats.beat.host', + 'hits.hits._source.beat.stats.beat.version', + 'hits.hits._source.beat.stats.beat.name', + 'hits.hits._source.beat.stats.beat.type', + 'hits.hits._source.beat.stats.libbeat.output.type', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.published', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.total', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.dropped', + 'hits.hits._source.beat.stats.libbeat.output.write.bytes', + 'hits.hits._source.beat.stats.libbeat.config.reloads', + 'hits.hits._source.beat.stats.info.uptime.ms', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.pipeline.events.published', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.pipeline.events.total', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.pipeline.events.dropped', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.output.write.bytes', ], body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, @@ -125,7 +145,10 @@ export async function getApmInfo( inner_hits: { name: 'first_hit', size: 1, - sort: { 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }, + sort: [ + { 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }, + { '@timestamp': { order: 'asc', unmapped_type: 'long' } }, + ], }, }, }, diff --git a/x-pack/plugins/monitoring/server/lib/apm/get_apms.ts b/x-pack/plugins/monitoring/server/lib/apm/get_apms.ts index 7a577d475579..05c52a56da93 100644 --- a/x-pack/plugins/monitoring/server/lib/apm/get_apms.ts +++ b/x-pack/plugins/monitoring/server/lib/apm/get_apms.ts @@ -21,18 +21,21 @@ import { ElasticsearchResponse, ElasticsearchResponseHit } from '../../../common export function handleResponse(response: ElasticsearchResponse, start: number, end: number) { const initial = { ids: new Set(), beats: [] }; const { beats } = response.hits?.hits.reduce((accum: any, hit: ElasticsearchResponseHit) => { - const stats = hit._source.beats_stats; + const stats = hit._source.beats_stats ?? hit._source.beat?.stats; + const statsMetrics = hit._source.beats_stats?.metrics ?? hit._source.beat?.stats; if (!stats) { return accum; } let earliestStats = null; - if ( - hit.inner_hits?.earliest?.hits?.hits && - hit.inner_hits?.earliest?.hits?.hits.length > 0 && - hit.inner_hits.earliest.hits.hits[0]._source.beats_stats - ) { - earliestStats = hit.inner_hits.earliest.hits.hits[0]._source.beats_stats; + let earliestStatsMetrics = null; + if (hit.inner_hits?.earliest?.hits?.hits && hit.inner_hits?.earliest?.hits?.hits.length > 0) { + earliestStats = + hit.inner_hits.earliest.hits.hits[0]._source.beats_stats ?? + hit.inner_hits.earliest.hits.hits[0]._source.beat?.stats; + earliestStatsMetrics = + hit.inner_hits.earliest.hits.hits[0]._source.beats_stats?.metrics ?? + hit.inner_hits.earliest.hits.hits[0]._source.beat?.stats; } const uuid = stats?.beat?.uuid; @@ -46,44 +49,47 @@ export function handleResponse(response: ElasticsearchResponse, start: number, e // add the beat const rateOptions = { - hitTimestamp: stats.timestamp, - earliestHitTimestamp: earliestStats?.timestamp, + hitTimestamp: stats?.timestamp ?? hit._source['@timestamp'], + earliestHitTimestamp: + earliestStats?.timestamp ?? hit.inner_hits?.earliest.hits?.hits[0]._source['@timestamp'], timeWindowMin: start, timeWindowMax: end, }; const { rate: bytesSentRate } = calculateRate({ - latestTotal: stats.metrics?.libbeat?.output?.write?.bytes, - earliestTotal: earliestStats?.metrics?.libbeat?.output?.write?.bytes, + latestTotal: statsMetrics?.libbeat?.output?.write?.bytes, + earliestTotal: earliestStatsMetrics?.libbeat?.output?.write?.bytes, ...rateOptions, }); const { rate: totalEventsRate } = calculateRate({ - latestTotal: stats.metrics?.libbeat?.pipeline?.events?.total, - earliestTotal: earliestStats?.metrics?.libbeat?.pipeline?.events?.total, + latestTotal: statsMetrics?.libbeat?.pipeline?.events?.total, + earliestTotal: earliestStatsMetrics?.libbeat?.pipeline?.events?.total, ...rateOptions, }); - const errorsWrittenLatest = stats.metrics?.libbeat?.output?.write?.errors ?? 0; - const errorsWrittenEarliest = earliestStats?.metrics?.libbeat?.output?.write?.errors ?? 0; - const errorsReadLatest = stats.metrics?.libbeat?.output?.read?.errors ?? 0; - const errorsReadEarliest = earliestStats?.metrics?.libbeat?.output?.read?.errors ?? 0; + const errorsWrittenLatest = statsMetrics?.libbeat?.output?.write?.errors ?? 0; + const errorsWrittenEarliest = earliestStatsMetrics?.libbeat?.output?.write?.errors ?? 0; + const errorsReadLatest = statsMetrics?.libbeat?.output?.read?.errors ?? 0; + const errorsReadEarliest = earliestStatsMetrics?.libbeat?.output?.read?.errors ?? 0; const errors = getDiffCalculation( errorsWrittenLatest + errorsReadLatest, errorsWrittenEarliest + errorsReadEarliest ); accum.beats.push({ - uuid: stats.beat?.uuid, - name: stats.beat?.name, - type: upperFirst(stats.beat?.type), - output: upperFirst(stats.metrics?.libbeat?.output?.type), + uuid: stats?.beat?.uuid, + name: stats?.beat?.name, + type: upperFirst(stats?.beat?.type), + output: upperFirst(statsMetrics?.libbeat?.output?.type), total_events_rate: totalEventsRate, bytes_sent_rate: bytesSentRate, errors, - memory: stats.metrics?.beat?.memstats?.memory_alloc, - version: stats.beat?.version, - time_of_last_event: hit._source.timestamp, + memory: + hit._source.beats_stats?.metrics?.beat?.memstats?.memory_alloc ?? + hit._source.beat?.stats?.memstats?.memory?.alloc, + version: stats?.beat?.version, + time_of_last_event: hit._source.beats_stats?.timestamp ?? hit._source['@timestamp'], }); return accum; @@ -106,6 +112,7 @@ export async function getApms(req: LegacyRequest, apmIndexPattern: string, clust filterPath: [ // only filter path can filter for inner_hits 'hits.hits._source.timestamp', + 'hits.hits._source.@timestamp', 'hits.hits._source.beats_stats.beat.uuid', 'hits.hits._source.beats_stats.beat.name', 'hits.hits._source.beats_stats.beat.host', @@ -115,20 +122,36 @@ export async function getApms(req: LegacyRequest, apmIndexPattern: string, clust 'hits.hits._source.beats_stats.metrics.libbeat.output.read.errors', 'hits.hits._source.beats_stats.metrics.libbeat.output.write.errors', 'hits.hits._source.beats_stats.metrics.beat.memstats.memory_alloc', + 'hits.hits._source.beat.stats.beat.uuid', + 'hits.hits._source.beat.stats.beat.name', + 'hits.hits._source.beat.stats.beat.host', + 'hits.hits._source.beat.stats.beat.type', + 'hits.hits._source.beat.stats.beat.version', + 'hits.hits._source.beat.stats.libbeat.output.type', + 'hits.hits._source.beat.stats.libbeat.output.read.errors', + 'hits.hits._source.beat.stats.libbeat.output.write.errors', + 'hits.hits._source.beat.stats.memstats.memory.alloc', // latest hits for calculating metrics 'hits.hits._source.beats_stats.timestamp', 'hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', 'hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', + 'hits.hits._source.beat.stats.libbeat.output.write.bytes', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.total', // earliest hits for calculating metrics 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.timestamp', 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', + 'hits.hits.inner_hits.earliest.hits.hits._source.@timestamp', + 'hits.hits.inner_hits.earliest.hits.hits._source.beat.stats.libbeat.output.write.bytes', + 'hits.hits.inner_hits.earliest.hits.hits._source.beat.stats.libbeat.pipeline.events.total', // earliest hits for calculating diffs 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.read.errors', 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.write.errors', + 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.read.errors', + 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.write.errors', ], body: { query: createApmQuery({ @@ -141,7 +164,10 @@ export async function getApms(req: LegacyRequest, apmIndexPattern: string, clust inner_hits: { name: 'earliest', size: 1, - sort: [{ 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }], + sort: [ + { 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }, + { '@timestamp': { order: 'asc', unmapped_type: 'long' } }, + ], }, }, sort: [ diff --git a/x-pack/plugins/monitoring/server/lib/apm/get_apms_for_clusters.js b/x-pack/plugins/monitoring/server/lib/apm/get_apms_for_clusters.js index 446cf19adf2a..ce40c52cdde2 100644 --- a/x-pack/plugins/monitoring/server/lib/apm/get_apms_for_clusters.js +++ b/x-pack/plugins/monitoring/server/lib/apm/get_apms_for_clusters.js @@ -5,6 +5,7 @@ * 2.0. */ +import { get } from 'lodash'; import { checkParam } from '../error_missing_required'; import { createApmQuery } from './create_apm_query'; import { ApmMetric } from '../metrics'; @@ -40,7 +41,7 @@ export function getApmsForClusters(req, apmIndexPattern, clusters) { return Promise.all( clusters.map(async (cluster) => { - const clusterUuid = cluster.cluster_uuid; + const clusterUuid = get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid); const params = { index: apmIndexPattern, size: 0, diff --git a/x-pack/plugins/monitoring/server/lib/beats/_beats_stats.js b/x-pack/plugins/monitoring/server/lib/beats/_beats_stats.js index 753aaeea330b..0d4dc0ba59d1 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/_beats_stats.js +++ b/x-pack/plugins/monitoring/server/lib/beats/_beats_stats.js @@ -101,7 +101,7 @@ export const beatsUuidsAgg = (maxBucketSize) => ({ export const beatsAggResponseHandler = (response) => { // beat types stat const buckets = get(response, 'aggregations.types.buckets', []); - const beatTotal = get(response, 'aggregations.total.value', null); + const beatTotal = get(response, 'aggregations.total.value', 0); const beatTypes = buckets.reduce((types, typeBucket) => { return [ ...types, @@ -112,10 +112,10 @@ export const beatsAggResponseHandler = (response) => { ]; }, []); - const eventsTotalMax = get(response, 'aggregations.max_events_total.value', null); - const eventsTotalMin = get(response, 'aggregations.min_events_total.value', null); - const bytesSentMax = get(response, 'aggregations.max_bytes_sent_total.value', null); - const bytesSentMin = get(response, 'aggregations.min_bytes_sent_total.value', null); + const eventsTotalMax = get(response, 'aggregations.max_events_total.value', 0); + const eventsTotalMin = get(response, 'aggregations.min_events_total.value', 0); + const bytesSentMax = get(response, 'aggregations.max_bytes_sent_total.value', 0); + const bytesSentMin = get(response, 'aggregations.min_bytes_sent_total.value', 0); return { beatTotal, diff --git a/x-pack/plugins/monitoring/server/lib/beats/create_beats_query.js b/x-pack/plugins/monitoring/server/lib/beats/create_beats_query.js index 6418e2af72a7..c6ec39ed3ba2 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/create_beats_query.js +++ b/x-pack/plugins/monitoring/server/lib/beats/create_beats_query.js @@ -21,7 +21,7 @@ export function createBeatsQuery(options = {}) { options = defaults(options, { filters: [], metric: BeatsMetric.getMetricFields(), - type: 'beats_stats', + types: ['stats', 'beats_stats'], }); // avoid showing APM Server stats alongside other Beats because APM Server will have its own UI diff --git a/x-pack/plugins/monitoring/server/lib/beats/get_beat_summary.ts b/x-pack/plugins/monitoring/server/lib/beats/get_beat_summary.ts index 3864fd51dec3..13b4f0041c99 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/get_beat_summary.ts +++ b/x-pack/plugins/monitoring/server/lib/beats/get_beat_summary.ts @@ -22,28 +22,36 @@ export function handleResponse(response: ElasticsearchResponse, beatUuid: string const firstHit = response.hits.hits[0]; - let firstStats = null; + let firstStatsMetrics = null; if ( firstHit.inner_hits?.first_hit?.hits?.hits && - firstHit.inner_hits?.first_hit?.hits?.hits.length > 0 && - firstHit.inner_hits.first_hit.hits.hits[0]._source.beats_stats + firstHit.inner_hits?.first_hit?.hits?.hits.length > 0 ) { - firstStats = firstHit.inner_hits.first_hit.hits.hits[0]._source.beats_stats; + firstStatsMetrics = + firstHit.inner_hits.first_hit.hits.hits[0]._source.beats_stats?.metrics ?? + firstHit.inner_hits.first_hit.hits.hits[0]._source.beat?.stats; } - const stats = firstHit._source.beats_stats ?? {}; + const stats = firstHit._source.beats_stats ?? firstHit._source?.beat?.stats; + const statsMetrics = firstHit._source.beats_stats?.metrics ?? firstHit._source?.beat?.stats; - const eventsTotalFirst = firstStats?.metrics?.libbeat?.pipeline?.events?.total ?? null; - const eventsEmittedFirst = firstStats?.metrics?.libbeat?.pipeline?.events?.published ?? null; - const eventsDroppedFirst = firstStats?.metrics?.libbeat?.pipeline?.events?.dropped ?? null; - const bytesWrittenFirst = firstStats?.metrics?.libbeat?.output?.write?.bytes ?? null; + const eventsTotalFirst = firstStatsMetrics?.libbeat?.pipeline?.events?.total ?? null; + const eventsEmittedFirst = firstStatsMetrics?.libbeat?.pipeline?.events?.published ?? null; + const eventsDroppedFirst = firstStatsMetrics?.libbeat?.pipeline?.events?.dropped ?? null; + const bytesWrittenFirst = firstStatsMetrics?.libbeat?.output?.write?.bytes ?? null; - const eventsTotalLast = stats?.metrics?.libbeat?.pipeline?.events?.total ?? null; - const eventsEmittedLast = stats?.metrics?.libbeat?.pipeline?.events?.published ?? null; - const eventsDroppedLast = stats?.metrics?.libbeat?.pipeline?.events?.dropped ?? null; - const bytesWrittenLast = stats?.metrics?.libbeat?.output?.write?.bytes ?? null; - const handlesHardLimit = stats?.metrics?.beat?.handles?.limit?.hard ?? null; - const handlesSoftLimit = stats?.metrics?.beat?.handles?.limit?.soft ?? null; + const eventsTotalLast = statsMetrics?.libbeat?.pipeline?.events?.total ?? null; + const eventsEmittedLast = statsMetrics?.libbeat?.pipeline?.events?.published ?? null; + const eventsDroppedLast = statsMetrics?.libbeat?.pipeline?.events?.dropped ?? null; + const bytesWrittenLast = statsMetrics?.libbeat?.output?.write?.bytes ?? null; + const handlesHardLimit = + firstHit._source.beats_stats?.metrics?.beat?.handles?.limit?.hard ?? + firstHit._source.beat?.stats?.handles?.limit?.hard ?? + null; + const handlesSoftLimit = + firstHit._source.beats_stats?.metrics?.beat?.handles?.limit?.soft ?? + firstHit._source.beat?.stats?.handles?.limit?.soft ?? + null; return { uuid: beatUuid, @@ -51,9 +59,11 @@ export function handleResponse(response: ElasticsearchResponse, beatUuid: string version: stats?.beat?.version ?? null, name: stats?.beat?.name ?? null, type: upperFirst(stats?.beat?.type) ?? null, - output: upperFirst(stats?.metrics?.libbeat?.output?.type) ?? null, - configReloads: stats?.metrics?.libbeat?.config?.reloads ?? null, - uptime: stats?.metrics?.beat?.info?.uptime?.ms ?? null, + output: upperFirst(statsMetrics?.libbeat?.output?.type) ?? null, + configReloads: statsMetrics?.libbeat?.config?.reloads ?? null, + uptime: + firstHit._source.beats_stats?.metrics?.beat?.info?.uptime?.ms ?? + firstHit._source.beat?.stats?.info?.uptime?.ms, eventsTotal: getDiffCalculation(eventsTotalLast, eventsTotalFirst) ?? null, eventsEmitted: getDiffCalculation(eventsEmittedLast, eventsEmittedFirst) ?? null, eventsDropped: getDiffCalculation(eventsDroppedLast, eventsDroppedFirst) ?? null, @@ -82,22 +92,39 @@ export async function getBeatSummary( ignoreUnavailable: true, filterPath: [ 'hits.hits._source.beats_stats.beat.host', + 'hits.hits._source.beat.stats.beat.host', 'hits.hits._source.beats_stats.beat.version', + 'hits.hits._source.beat.stats.beat.version', 'hits.hits._source.beats_stats.beat.name', + 'hits.hits._source.beat.stats.beat.name', 'hits.hits._source.beats_stats.beat.type', + 'hits.hits._source.beat.stats.beat.type', 'hits.hits._source.beats_stats.metrics.libbeat.output.type', + 'hits.hits._source.beat.stats.libbeat.output.type', 'hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.published', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.published', 'hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.total', 'hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.dropped', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.dropped', 'hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', + 'hits.hits._source.beat.stats.libbeat.output.write.bytes', 'hits.hits._source.beats_stats.metrics.libbeat.config.reloads', + 'hits.hits._source.beat.stats.libbeat.config.reloads', 'hits.hits._source.beats_stats.metrics.beat.info.uptime.ms', - 'hits.hits._source.beats_stats.metrics.beat.handles.limit.hard', + 'hits.hits._source.beat.stats.info.uptime.ms', + 'hits.hits._source.beats_stats.metrics.beat.handles.limit.s', + 'hits.hits._source.beat.stats.handles.limit.hard', 'hits.hits._source.beats_stats.metrics.beat.handles.limit.soft', + 'hits.hits._source.beat.stats.handles.limit.soft', 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.published', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.pipeline.events.published', 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.pipeline.events.total', 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.dropped', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.pipeline.events.dropped', 'hits.hits.inner_hits.first_hit.hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', + 'hits.hits.inner_hits.first_hit.hits.hits._source.beat.stats.libbeat.output.write.bytes', ], body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, @@ -112,7 +139,10 @@ export async function getBeatSummary( inner_hits: { name: 'first_hit', size: 1, - sort: { 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }, + sort: [ + { 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }, + { '@timestamp': { order: 'asc', unmapped_type: 'long' } }, + ], }, }, }, diff --git a/x-pack/plugins/monitoring/server/lib/beats/get_beats.ts b/x-pack/plugins/monitoring/server/lib/beats/get_beats.ts index 7c5ef5c45228..641039331bbc 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/get_beats.ts +++ b/x-pack/plugins/monitoring/server/lib/beats/get_beats.ts @@ -34,7 +34,8 @@ export function handleResponse(response: ElasticsearchResponse, start: number, e const hits = response.hits?.hits ?? []; const initial: { ids: Set; beats: Beat[] } = { ids: new Set(), beats: [] }; const { beats } = hits.reduce((accum, hit) => { - const stats = hit._source.beats_stats; + const stats = hit._source.beats_stats ?? hit._source.beat?.stats; + const statsMetrics = hit._source.beats_stats?.metrics ?? hit._source.beat?.stats; const uuid = stats?.beat?.uuid; if (!uuid) { @@ -50,38 +51,41 @@ export function handleResponse(response: ElasticsearchResponse, start: number, e accum.ids.add(uuid); let earliestStats = null; - if ( - hit.inner_hits?.earliest?.hits?.hits && - hit.inner_hits?.earliest?.hits?.hits.length > 0 && - hit.inner_hits.earliest.hits.hits[0]._source.beats_stats - ) { - earliestStats = hit.inner_hits.earliest.hits.hits[0]._source.beats_stats; + let earliestStatsMetrics = null; + if (hit.inner_hits?.earliest?.hits?.hits && hit.inner_hits?.earliest?.hits?.hits.length > 0) { + earliestStats = + hit.inner_hits.earliest.hits.hits[0]._source.beats_stats ?? + hit.inner_hits.earliest.hits.hits[0]._source.beat?.stats; + earliestStatsMetrics = + hit.inner_hits.earliest.hits.hits[0]._source.beats_stats?.metrics ?? + hit.inner_hits.earliest.hits.hits[0]._source.beat?.stats; } // add the beat const rateOptions = { - hitTimestamp: stats?.timestamp, - earliestHitTimestamp: earliestStats?.timestamp, + hitTimestamp: stats?.timestamp ?? hit._source['@timestamp'], + earliestHitTimestamp: + earliestStats?.timestamp ?? hit.inner_hits?.earliest.hits?.hits[0]._source['@timestamp'], timeWindowMin: start, timeWindowMax: end, }; const { rate: bytesSentRate } = calculateRate({ - latestTotal: stats?.metrics?.libbeat?.output?.write?.bytes, - earliestTotal: earliestStats?.metrics?.libbeat?.output?.write?.bytes, + latestTotal: statsMetrics?.libbeat?.output?.write?.bytes, + earliestTotal: earliestStatsMetrics?.libbeat?.output?.write?.bytes, ...rateOptions, }); const { rate: totalEventsRate } = calculateRate({ - latestTotal: stats?.metrics?.libbeat?.pipeline?.events?.total, - earliestTotal: earliestStats?.metrics?.libbeat?.pipeline?.events?.total, + latestTotal: statsMetrics?.libbeat?.pipeline?.events?.total, + earliestTotal: earliestStatsMetrics?.libbeat?.pipeline?.events?.total, ...rateOptions, }); - const errorsWrittenLatest = stats?.metrics?.libbeat?.output?.write?.errors ?? 0; - const errorsWrittenEarliest = earliestStats?.metrics?.libbeat?.output?.write?.errors ?? 0; - const errorsReadLatest = stats?.metrics?.libbeat?.output?.read?.errors ?? 0; - const errorsReadEarliest = earliestStats?.metrics?.libbeat?.output?.read?.errors ?? 0; + const errorsWrittenLatest = statsMetrics?.libbeat?.output?.write?.errors ?? 0; + const errorsWrittenEarliest = earliestStatsMetrics?.libbeat?.output?.write?.errors ?? 0; + const errorsReadLatest = statsMetrics?.libbeat?.output?.read?.errors ?? 0; + const errorsReadEarliest = earliestStatsMetrics?.libbeat?.output?.read?.errors ?? 0; const errors = getDiffCalculation( errorsWrittenLatest + errorsReadLatest, errorsWrittenEarliest + errorsReadEarliest @@ -91,11 +95,13 @@ export function handleResponse(response: ElasticsearchResponse, start: number, e uuid: stats?.beat?.uuid, name: stats?.beat?.name, type: upperFirst(stats?.beat?.type), - output: upperFirst(stats?.metrics?.libbeat?.output?.type), + output: upperFirst(statsMetrics?.libbeat?.output?.type), total_events_rate: totalEventsRate, bytes_sent_rate: bytesSentRate, errors, - memory: stats?.metrics?.beat?.memstats?.memory_alloc, + memory: + hit._source.beats_stats?.metrics?.beat?.memstats?.memory_alloc ?? + hit._source.beat?.stats?.memstats?.memory?.alloc, version: stats?.beat?.version, }); @@ -119,28 +125,45 @@ export async function getBeats(req: LegacyRequest, beatsIndexPattern: string, cl filterPath: [ // only filter path can filter for inner_hits 'hits.hits._source.beats_stats.beat.uuid', + 'hits.hits._source.beat.stats.beat.uuid', 'hits.hits._source.beats_stats.beat.name', + 'hits.hits._source.beat.stats.beat.name', 'hits.hits._source.beats_stats.beat.host', + 'hits.hits._source.beat.stats.beat.host', 'hits.hits._source.beats_stats.beat.type', + 'hits.hits._source.beat.stats.beat.type', 'hits.hits._source.beats_stats.beat.version', + 'hits.hits._source.beat.stats.beat.version', 'hits.hits._source.beats_stats.metrics.libbeat.output.type', + 'hits.hits._source.beat.stats.libbeat.output.type', 'hits.hits._source.beats_stats.metrics.libbeat.output.read.errors', + 'hits.hits._source.beat.stats.libbeat.output.read.errors', 'hits.hits._source.beats_stats.metrics.libbeat.output.write.errors', + 'hits.hits._source.beat.stats.libbeat.output.write.errors', 'hits.hits._source.beats_stats.metrics.beat.memstats.memory_alloc', + 'hits.hits._source.beat.stats.memstats.memory.alloc', // latest hits for calculating metrics 'hits.hits._source.beats_stats.timestamp', + 'hits.hits._source.@timestamp', 'hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', + 'hits.hits._source.beat.stats.libbeat.output.write.bytes', 'hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', + 'hits.hits._source.beat.stats.libbeat.pipeline.events.total', // earliest hits for calculating metrics 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.timestamp', + 'hits.hits.inner_hits.earliest.hits.hits._source.@timestamp', + 'hits.hits.inner_hits.earliest.hits.hits._source.beat.stats.libbeat.output.write.bytes', 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.write.bytes', + 'hits.hits.inner_hits.earliest.hits.hits._source.beat.stats.libbeat.pipeline.events.total', 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.pipeline.events.total', // earliest hits for calculating diffs 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.read.errors', + 'hits.hits.inner_hits.earliest.hits.hits._source.beat.stats.libbeat.output.read.errors', 'hits.hits.inner_hits.earliest.hits.hits._source.beats_stats.metrics.libbeat.output.write.errors', + 'hits.hits.inner_hits.earliest.hits.hits._source.beat.stats.libbeat.output.write.errors', ], body: { query: createBeatsQuery({ @@ -153,7 +176,10 @@ export async function getBeats(req: LegacyRequest, beatsIndexPattern: string, cl inner_hits: { name: 'earliest', size: 1, - sort: [{ 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }], + sort: [ + { 'beats_stats.timestamp': { order: 'asc', unmapped_type: 'long' } }, + { '@timestamp': { order: 'asc', unmapped_type: 'long' } }, + ], }, }, sort: [ diff --git a/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.js b/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.js index 0f214eedc468..5ceca7a02d89 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.js +++ b/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.js @@ -5,6 +5,7 @@ * 2.0. */ +import { get } from 'lodash'; import { checkParam } from '../error_missing_required'; import { BeatsClusterMetric } from '../metrics'; import { createBeatsQuery } from './create_beats_query'; @@ -39,7 +40,7 @@ export function getBeatsForClusters(req, beatsIndexPattern, clusters) { return Promise.all( clusters.map(async (cluster) => { - const clusterUuid = cluster.cluster_uuid; + const clusterUuid = get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid); const params = { index: beatsIndexPattern, size: 0, diff --git a/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.test.js b/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.test.js index 9f33c4c78d34..b9abfd3ed172 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.test.js +++ b/x-pack/plugins/monitoring/server/lib/beats/get_beats_for_clusters.test.js @@ -14,10 +14,10 @@ describe('get_beats_for_clusters', () => { expect(handleResponse(clusterUuid, response)).toEqual({ clusterUuid: 'foo_uuid', stats: { - totalEvents: null, - bytesSent: null, + totalEvents: 0, + bytesSent: 0, beats: { - total: null, + total: 0, types: [], }, }, diff --git a/x-pack/plugins/monitoring/server/lib/beats/get_stats.test.js b/x-pack/plugins/monitoring/server/lib/beats/get_stats.test.js index 80f6e3a9262a..dbef41180d3e 100644 --- a/x-pack/plugins/monitoring/server/lib/beats/get_stats.test.js +++ b/x-pack/plugins/monitoring/server/lib/beats/get_stats.test.js @@ -11,10 +11,10 @@ describe('beats/get_stats', () => { it('Handle empty response', () => { expect(handleResponse()).toEqual({ stats: { - bytesSent: null, - totalEvents: null, + bytesSent: 0, + totalEvents: 0, }, - total: null, + total: 0, types: [], }); }); diff --git a/x-pack/plugins/monitoring/server/lib/ccs_utils.js b/x-pack/plugins/monitoring/server/lib/ccs_utils.js index 37cc7f9c07af..08ed8d5a7b35 100644 --- a/x-pack/plugins/monitoring/server/lib/ccs_utils.js +++ b/x-pack/plugins/monitoring/server/lib/ccs_utils.js @@ -7,7 +7,7 @@ import { isFunction, get } from 'lodash'; -export function appendMetricbeatIndex(config, indexPattern, bypass = false) { +export function appendMetricbeatIndex(config, indexPattern, ccs, bypass = false) { if (bypass) { return indexPattern; } @@ -21,6 +21,10 @@ export function appendMetricbeatIndex(config, indexPattern, bypass = false) { mbIndex = get(config, 'ui.metricbeat.index'); } + if (ccs) { + mbIndex = `${mbIndex},${ccs}:${mbIndex}`; + } + return `${indexPattern},${mbIndex}`; } @@ -46,7 +50,12 @@ export function prefixIndexPattern(config, indexPattern, ccs, monitoringIndicesO } if (!ccsEnabled || !ccs) { - return appendMetricbeatIndex(config, indexPattern, monitoringIndicesOnly); + return appendMetricbeatIndex( + config, + indexPattern, + ccsEnabled ? ccs : undefined, + monitoringIndicesOnly + ); } const patterns = indexPattern.split(','); @@ -57,11 +66,12 @@ export function prefixIndexPattern(config, indexPattern, ccs, monitoringIndicesO return appendMetricbeatIndex( config, `${prefixedPattern},${indexPattern}`, + ccs, monitoringIndicesOnly ); } - return appendMetricbeatIndex(config, prefixedPattern, monitoringIndicesOnly); + return appendMetricbeatIndex(config, prefixedPattern, ccs, monitoringIndicesOnly); } /** diff --git a/x-pack/plugins/monitoring/server/lib/cluster/__fixtures__/clusters.json b/x-pack/plugins/monitoring/server/lib/cluster/__fixtures__/clusters.json index b8ba0a569ad7..49a82492a230 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/__fixtures__/clusters.json +++ b/x-pack/plugins/monitoring/server/lib/cluster/__fixtures__/clusters.json @@ -340,10 +340,10 @@ "versions": [] }, "beats": { - "totalEvents": null, - "bytesSent": null, + "totalEvents": 0, + "bytesSent": 0, "beats": { - "total": null, + "total": 0, "types": [] } } @@ -679,10 +679,10 @@ "versions": [] }, "beats": { - "totalEvents": null, - "bytesSent": null, + "totalEvents": 0, + "bytesSent": 0, "beats": { - "total": null, + "total": 0, "types": [] } } diff --git a/x-pack/plugins/monitoring/server/lib/cluster/__snapshots__/get_clusters_summary.test.js.snap b/x-pack/plugins/monitoring/server/lib/cluster/__snapshots__/get_clusters_summary.test.js.snap index 71e8b28ce1dc..12964129b518 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/__snapshots__/get_clusters_summary.test.js.snap +++ b/x-pack/plugins/monitoring/server/lib/cluster/__snapshots__/get_clusters_summary.test.js.snap @@ -11,11 +11,11 @@ Array [ "apm": undefined, "beats": Object { "beats": Object { - "total": null, + "total": 0, "types": Array [], }, - "bytesSent": null, - "totalEvents": null, + "bytesSent": 0, + "totalEvents": 0, }, "ccs": "proddy1", "cluster_name": "Custom name", @@ -29,25 +29,7 @@ Array [ "deleted": 0, }, "shards": Object { - "index": Object { - "primaries": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - "replication": Object { - "avg": 0, - "max": 0, - "min": 0, - }, - "shards": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - }, "primaries": 1, - "replication": 0, "total": 1, }, "store": Object { @@ -60,7 +42,6 @@ Array [ }, "fs": Object { "available_in_bytes": 224468717568, - "free_in_bytes": 228403855360, "total_in_bytes": 499963170816, }, "jvm": Object { @@ -115,11 +96,11 @@ Array [ "apm": undefined, "beats": Object { "beats": Object { - "total": null, + "total": 0, "types": Array [], }, - "bytesSent": null, - "totalEvents": null, + "bytesSent": 0, + "totalEvents": 0, }, "ccs": undefined, "cluster_name": "monitoring-one", @@ -133,25 +114,7 @@ Array [ "deleted": 1, }, "shards": Object { - "index": Object { - "primaries": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - "replication": Object { - "avg": 0, - "max": 0, - "min": 0, - }, - "shards": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - }, "primaries": 6, - "replication": 0, "total": 6, }, "store": Object { @@ -164,7 +127,6 @@ Array [ }, "fs": Object { "available_in_bytes": 224468783104, - "free_in_bytes": 228403920896, "total_in_bytes": 499963170816, }, "jvm": Object { @@ -224,11 +186,11 @@ Array [ "apm": undefined, "beats": Object { "beats": Object { - "total": null, + "total": 0, "types": Array [], }, - "bytesSent": null, - "totalEvents": null, + "bytesSent": 0, + "totalEvents": 0, }, "ccs": "proddy1", "cluster_name": "Custom name", @@ -242,25 +204,7 @@ Array [ "deleted": 0, }, "shards": Object { - "index": Object { - "primaries": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - "replication": Object { - "avg": 0, - "max": 0, - "min": 0, - }, - "shards": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - }, "primaries": 1, - "replication": 0, "total": 1, }, "store": Object { @@ -273,7 +217,6 @@ Array [ }, "fs": Object { "available_in_bytes": 224468717568, - "free_in_bytes": 228403855360, "total_in_bytes": 499963170816, }, "jvm": Object { @@ -328,11 +271,11 @@ Array [ "apm": undefined, "beats": Object { "beats": Object { - "total": null, + "total": 0, "types": Array [], }, - "bytesSent": null, - "totalEvents": null, + "bytesSent": 0, + "totalEvents": 0, }, "ccs": undefined, "cluster_name": "monitoring-one", @@ -346,25 +289,7 @@ Array [ "deleted": 1, }, "shards": Object { - "index": Object { - "primaries": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - "replication": Object { - "avg": 0, - "max": 0, - "min": 0, - }, - "shards": Object { - "avg": 1, - "max": 1, - "min": 1, - }, - }, "primaries": 6, - "replication": 0, "total": 6, }, "store": Object { @@ -377,7 +302,6 @@ Array [ }, "fs": Object { "available_in_bytes": 224468783104, - "free_in_bytes": 228403920896, "total_in_bytes": 499963170816, }, "jvm": Object { diff --git a/x-pack/plugins/monitoring/server/lib/cluster/flag_supported_clusters.ts b/x-pack/plugins/monitoring/server/lib/cluster/flag_supported_clusters.ts index 25fbeb20fd1e..42041832cfee 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/flag_supported_clusters.ts +++ b/x-pack/plugins/monitoring/server/lib/cluster/flag_supported_clusters.ts @@ -31,13 +31,20 @@ async function findSupportedBasicLicenseCluster( index: kbnIndexPattern, size: 1, ignoreUnavailable: true, - filterPath: 'hits.hits._source.cluster_uuid', + filterPath: ['hits.hits._source.cluster_uuid', 'hits.hits._source.cluster.id'], body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, query: { bool: { filter: [ - { term: { type: 'kibana_stats' } }, + { + bool: { + should: [ + { term: { type: 'kibana_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, { term: { 'kibana_stats.kibana.uuid': kibanaUuid } }, { range: { timestamp: { gte, lte, format: 'strict_date_optional_time' } } }, ], @@ -80,7 +87,7 @@ export function flagSupportedClusters(req: LegacyRequest, kbnIndexPattern: strin const serverLog = (message: string) => req.getLogger('supported-clusters').debug(message); const flagAllSupported = (clusters: ElasticsearchModifiedSource[]) => { clusters.forEach((cluster) => { - if (cluster.license) { + if (cluster.license || cluster.elasticsearch?.cluster?.stats?.license) { cluster.isSupported = true; } }); @@ -100,7 +107,9 @@ export function flagSupportedClusters(req: LegacyRequest, kbnIndexPattern: strin } if (linkedClusterCount > 1) { const basicLicenseCount = clusters.reduce((accumCount, cluster) => { - if (cluster.license && cluster.license.type === 'basic') { + const licenseType = + cluster.license?.type ?? cluster.elasticsearch?.cluster?.stats?.license?.type; + if (licenseType === 'basic') { accumCount++; } return accumCount; @@ -129,7 +138,10 @@ export function flagSupportedClusters(req: LegacyRequest, kbnIndexPattern: strin 'Found some basic license clusters in monitoring data. Only non-basic will be supported.' ); clusters.forEach((cluster) => { - if (cluster.license && cluster.license.type !== 'basic') { + if ( + cluster.license?.type !== 'basic' && + cluster.elasticsearch?.cluster?.stats?.license?.type !== 'basic' + ) { cluster.isSupported = true; } }); diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_cluster_status.ts b/x-pack/plugins/monitoring/server/lib/cluster/get_cluster_status.ts index e36dc8a31318..3c993fc8e392 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_cluster_status.ts +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_cluster_status.ts @@ -14,11 +14,11 @@ import { ElasticsearchSource } from '../../../common/types/es'; * @return top-level cluster summary data */ export function getClusterStatus(cluster: ElasticsearchSource, shardStats: unknown) { - const clusterStats = cluster.cluster_stats ?? {}; - const clusterNodes = clusterStats.nodes ?? {}; - const clusterIndices = clusterStats.indices ?? {}; + const clusterStatsLegacy = cluster.cluster_stats; + const clusterStatsMB = cluster.elasticsearch?.cluster?.stats; - const clusterTotalShards = clusterIndices.shards?.total ?? 0; + const clusterTotalShards = + clusterStatsLegacy?.indices?.shards?.total ?? clusterStatsMB?.indices?.shards?.count ?? 0; let unassignedShardsTotal = 0; const unassignedShards = get(shardStats, 'indicesTotals.unassigned'); if (unassignedShards !== undefined) { @@ -28,17 +28,31 @@ export function getClusterStatus(cluster: ElasticsearchSource, shardStats: unkno const totalShards = clusterTotalShards + unassignedShardsTotal; return { - status: cluster.cluster_state?.status ?? 'unknown', + status: + cluster.elasticsearch?.cluster?.stats?.status ?? cluster.cluster_state?.status ?? 'unknown', // index-based stats - indicesCount: clusterIndices.count ?? 0, - documentCount: clusterIndices.docs?.count ?? 0, - dataSize: clusterIndices.store?.size_in_bytes ?? 0, + indicesCount: clusterStatsLegacy?.indices?.count ?? clusterStatsMB?.indices?.total ?? 0, + documentCount: + clusterStatsLegacy?.indices?.docs?.count ?? clusterStatsMB?.indices?.docs?.total ?? 0, + dataSize: + clusterStatsMB?.indices?.store?.size?.bytes ?? + clusterStatsLegacy?.indices?.store?.size_in_bytes ?? + 0, // node-based stats - nodesCount: clusterNodes.count?.total ?? 0, - upTime: clusterNodes.jvm?.max_uptime_in_millis ?? 0, - version: clusterNodes.versions ?? null, - memUsed: clusterNodes.jvm?.mem?.heap_used_in_bytes ?? 0, - memMax: clusterNodes.jvm?.mem?.heap_max_in_bytes ?? 0, + nodesCount: clusterStatsLegacy?.nodes?.count?.total ?? clusterStatsMB?.nodes?.count ?? 0, + upTime: + clusterStatsMB?.nodes?.jvm?.max_uptime?.ms ?? + clusterStatsLegacy?.nodes?.jvm?.max_uptime_in_millis ?? + 0, + version: clusterStatsMB?.nodes?.versions ?? clusterStatsLegacy?.nodes?.versions ?? null, + memUsed: + clusterStatsMB?.nodes?.jvm?.memory?.heap?.used?.bytes ?? + clusterStatsLegacy?.nodes?.jvm?.mem?.heap_used_in_bytes ?? + 0, + memMax: + clusterStatsMB?.nodes?.jvm?.memory?.heap?.max?.bytes ?? + clusterStatsLegacy?.nodes?.jvm?.mem?.heap_max_in_bytes ?? + 0, unassignedShards: unassignedShardsTotal, totalShards, }; diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_from_request.js b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_from_request.js index 5143613a25b9..77b71d3e92f4 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_from_request.js +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_from_request.js @@ -7,7 +7,7 @@ import { notFound } from '@hapi/boom'; import { set } from '@elastic/safer-lodash-set'; -import { findIndex } from 'lodash'; +import { get } from 'lodash'; import { getClustersStats } from './get_clusters_stats'; import { flagSupportedClusters } from './flag_supported_clusters'; import { getMlJobsForCluster } from '../elasticsearch'; @@ -98,7 +98,7 @@ export async function getClustersFromRequest( cluster.logs = isInCodePath(codePaths, [CODE_PATH_LOGS]) ? await getLogTypes(req, filebeatIndexPattern, { - clusterUuid: cluster.cluster_uuid, + clusterUuid: get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid), start, end, }) @@ -122,7 +122,7 @@ export async function getClustersFromRequest( alertsClient, req.server.plugins.monitoring.info, undefined, - clusters.map((cluster) => cluster.cluster_uuid) + clusters.map((cluster) => get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid)) ); for (const cluster of clusters) { @@ -142,7 +142,9 @@ export async function getClustersFromRequest( accum[alertName] = { ...value, states: value.states.filter( - (state) => state.state.cluster.clusterUuid === cluster.cluster_uuid + (state) => + state.state.cluster.clusterUuid === + get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid) ), }; } else { @@ -177,7 +179,10 @@ export async function getClustersFromRequest( : []; // add the kibana data to each cluster kibanas.forEach((kibana) => { - const clusterIndex = findIndex(clusters, { cluster_uuid: kibana.clusterUuid }); + const clusterIndex = clusters.findIndex( + (cluster) => + get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid) === kibana.clusterUuid + ); set(clusters[clusterIndex], 'kibana', kibana.stats); }); @@ -186,8 +191,10 @@ export async function getClustersFromRequest( const logstashes = await getLogstashForClusters(req, lsIndexPattern, clusters); const pipelines = await getLogstashPipelineIds(req, lsIndexPattern, { clusterUuid }, 1); logstashes.forEach((logstash) => { - const clusterIndex = findIndex(clusters, { cluster_uuid: logstash.clusterUuid }); - + const clusterIndex = clusters.findIndex( + (cluster) => + get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid) === logstash.clusterUuid + ); // withhold LS overview stats until there is at least 1 pipeline if (logstash.clusterUuid === clusterUuid && !pipelines.length) { logstash.stats = {}; @@ -201,7 +208,10 @@ export async function getClustersFromRequest( ? await getBeatsForClusters(req, beatsIndexPattern, clusters) : []; beatsByCluster.forEach((beats) => { - const clusterIndex = findIndex(clusters, { cluster_uuid: beats.clusterUuid }); + const clusterIndex = clusters.findIndex( + (cluster) => + get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid) === beats.clusterUuid + ); set(clusters[clusterIndex], 'beats', beats.stats); }); @@ -210,12 +220,17 @@ export async function getClustersFromRequest( ? await getApmsForClusters(req, apmIndexPattern, clusters) : []; apmsByCluster.forEach((apm) => { - const clusterIndex = findIndex(clusters, { cluster_uuid: apm.clusterUuid }); - const { stats, config } = apm; - clusters[clusterIndex].apm = { - ...stats, - config, - }; + const clusterIndex = clusters.findIndex( + (cluster) => + get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid) === apm.clusterUuid + ); + if (clusterIndex >= 0) { + const { stats, config } = apm; + clusters[clusterIndex].apm = { + ...stats, + config, + }; + } }); // check ccr configuration diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_state.ts b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_state.ts index 4b46c44b57aa..2cec89b18aec 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_state.ts +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_state.ts @@ -54,8 +54,8 @@ export function getClustersState( checkParam(esIndexPattern, 'esIndexPattern in cluster/getClustersHealth'); const clusterUuids = clusters - .filter((cluster) => !cluster.cluster_state) - .map((cluster) => cluster.cluster_uuid); + .filter((cluster) => !cluster.cluster_state || !cluster.elasticsearch?.cluster?.stats?.state) + .map((cluster) => cluster.cluster_uuid || cluster.elasticsearch?.cluster?.id); // we only need to fetch the cluster state if we don't already have it // newer documents (those from the version 6 schema and later already have the cluster state with cluster stats) @@ -69,8 +69,9 @@ export function getClustersState( ignoreUnavailable: true, filterPath: [ 'hits.hits._source.cluster_uuid', + 'hits.hits._source.elasticsearch.cluster.id', 'hits.hits._source.cluster_state', - 'hits.hits._source.cluster_state', + 'hits.hits._source.elasticsearch.cluster.stats.state', ], body: { query: { diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_stats.ts b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_stats.ts index df62346f965a..4067293e7829 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_stats.ts +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_stats.ts @@ -57,15 +57,26 @@ function fetchClusterStats(req: LegacyRequest, esIndexPattern: string, clusterUu filterPath: [ 'hits.hits._index', 'hits.hits._source.cluster_uuid', + 'hits.hits._source.elasticsearch.cluster.id', 'hits.hits._source.cluster_name', + 'hits.hits._source.elasticsearch.cluster.name', 'hits.hits._source.version', + 'hits.hits._source.elasticsearch.version', + 'hits.hits._source.elasticsearch.cluster.node.version', 'hits.hits._source.license.status', // license data only includes necessary fields to drive UI + 'hits.hits._source.elasticsearch.cluster.stats.license.status', 'hits.hits._source.license.type', + 'hits.hits._source.elasticsearch.cluster.stats.license.type', 'hits.hits._source.license.issue_date', + 'hits.hits._source.elasticsearch.cluster.stats.license.issue_date', 'hits.hits._source.license.expiry_date', + 'hits.hits._source.elasticsearch.cluster.stats.license.expiry_date', 'hits.hits._source.license.expiry_date_in_millis', + 'hits.hits._source.elasticsearch.cluster.stats.license.expiry_date_in_millis', 'hits.hits._source.cluster_stats', + 'hits.hits._source.elasticsearch.cluster.stats', 'hits.hits._source.cluster_state', + 'hits.hits._source.elasticsearch.cluster.stats.state', 'hits.hits._source.cluster_settings.cluster.metadata.display_name', ], body: { diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.js b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.js deleted file mode 100644 index 94cef6eb08e9..000000000000 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.js +++ /dev/null @@ -1,99 +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 - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { pick, omit, get } from 'lodash'; -import { calculateOverallStatus } from '../calculate_overall_status'; -import { LOGGING_TAG } from '../../../common/constants'; -import { MonitoringLicenseError } from '../errors/custom_errors'; - -export function getClustersSummary(server, clusters, kibanaUuid, isCcrEnabled) { - return clusters.map((cluster) => { - const { - isSupported, - cluster_uuid: clusterUuid, - version, - license, - cluster_stats: clusterStats, - logstash, - kibana, - ml, - beats, - apm, - alerts, - ccs, - cluster_settings: clusterSettings, - logs, - } = cluster; - - const clusterName = get(clusterSettings, 'cluster.metadata.display_name', cluster.cluster_name); - - // check for any missing licenses - if (!license) { - const clusterId = cluster.name || clusterName || clusterUuid; - server.log( - ['error', LOGGING_TAG], - "Could not find license information for cluster = '" + - clusterId + - "'. " + - "Please check the cluster's master node server logs for errors or warnings." - ); - throw new MonitoringLicenseError(clusterId); - } - - const { - status: licenseStatus, - type: licenseType, - expiry_date_in_millis: licenseExpiry, - } = license; - - const indices = pick(clusterStats.indices, ['count', 'docs', 'shards', 'store']); - - const jvm = { - max_uptime_in_millis: clusterStats.nodes.jvm.max_uptime_in_millis, - mem: clusterStats.nodes.jvm.mem, - }; - - const nodes = { - fs: clusterStats.nodes.fs, - count: { - total: clusterStats.nodes.count.total, - }, - jvm, - }; - const { status } = cluster.cluster_state; - - return { - isSupported, - cluster_uuid: clusterUuid, - cluster_name: clusterName, - version, - license: { - status: licenseStatus, - type: licenseType, - expiry_date_in_millis: licenseExpiry, - }, - elasticsearch: { - cluster_stats: { - indices, - nodes, - status, - }, - logs, - }, - logstash, - kibana: omit(kibana, 'uuids'), - ml, - ccs, - beats, - apm, - alerts, - isPrimary: kibana ? kibana.uuids.includes(kibanaUuid) : false, - status: calculateOverallStatus([status, (kibana && kibana.status) || null]), - isCcrEnabled, - }; - }); -} diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.test.js b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.test.js index 22e8cb65cec6..0ddb87104ec7 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.test.js +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.test.js @@ -10,7 +10,9 @@ import { getClustersSummary } from './get_clusters_summary'; const mockLog = jest.fn(); const mockServer = { - log: mockLog, + log: { + error: mockLog, + }, }; describe('getClustersSummary', () => { @@ -34,7 +36,6 @@ describe('getClustersSummary', () => { expect(() => getClustersSummary(mockServer, fakeClusters)).toThrow('Monitoring License Error'); expect(mockLog).toHaveBeenCalledWith( - ['error', 'monitoring'], "Could not find license information for cluster = 'Custom name'. " + "Please check the cluster's master node server logs for errors or warnings." ); diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.ts b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.ts new file mode 100644 index 000000000000..955c4d3d3b62 --- /dev/null +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_clusters_summary.ts @@ -0,0 +1,161 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { omit, get } from 'lodash'; +import { + ElasticsearchModifiedSource, + ElasticsearchLegacySource, + ElasticsearchSourceKibanaStats, +} from '../../../common/types/es'; +// @ts-ignore +import { calculateOverallStatus } from '../calculate_overall_status'; +// @ts-ignore +import { MonitoringLicenseError } from '../errors/custom_errors'; + +type EnhancedClusters = ElasticsearchModifiedSource & { + license: ElasticsearchLegacySource['license']; + [key: string]: any; +}; + +type EnhancedKibana = ElasticsearchSourceKibanaStats['kibana'] & { + uuids?: string[]; +}; + +export function getClustersSummary( + server: any, + clusters: EnhancedClusters[], + kibanaUuid: string, + isCcrEnabled: boolean +) { + return clusters.map((cluster) => { + const { + isSupported, + logstash, + kibana, + ml, + beats, + apm, + alerts, + ccs, + cluster_settings: clusterSettings, + logs, + } = cluster; + + const license = cluster.license || cluster.elasticsearch?.cluster?.stats?.license; + const version = cluster.version || cluster.elasticsearch?.version; + const clusterUuid = cluster.cluster_uuid || cluster.elasticsearch?.cluster?.id; + const clusterStatsLegacy = cluster.cluster_stats; + const clusterStatsMB = cluster.elasticsearch?.cluster?.stats; + + const clusterName = get( + clusterSettings, + 'cluster.metadata.display_name', + cluster.elasticsearch?.cluster?.name ?? cluster.cluster_name + ); + + // check for any missing licenses + if (!license) { + const clusterId = cluster.name || clusterName || clusterUuid; + server.log.error( + "Could not find license information for cluster = '" + + clusterId + + "'. " + + "Please check the cluster's master node server logs for errors or warnings." + ); + throw new MonitoringLicenseError(clusterId); + } + + const { + status: licenseStatus, + type: licenseType, + expiry_date_in_millis: licenseExpiry, + } = license; + + const indices = { + count: clusterStatsLegacy?.indices?.count ?? clusterStatsMB?.indices?.total, + docs: { + deleted: + clusterStatsLegacy?.indices?.docs?.deleted ?? clusterStatsMB?.indices?.docs?.deleted, + count: clusterStatsLegacy?.indices?.docs?.count ?? clusterStatsMB?.indices?.docs?.total, + }, + shards: { + total: clusterStatsLegacy?.indices?.shards?.total ?? clusterStatsMB?.indices?.shards?.count, + primaries: + clusterStatsLegacy?.indices?.shards?.primaries ?? + clusterStatsMB?.indices?.shards?.primaries, + }, + store: { + size_in_bytes: + clusterStatsLegacy?.indices?.store?.size_in_bytes ?? + clusterStatsMB?.indices?.store?.size?.bytes, + }, + }; + + const jvm = { + max_uptime_in_millis: + clusterStatsLegacy?.nodes?.jvm?.max_uptime_in_millis ?? + clusterStatsMB?.nodes?.jvm?.max_uptime?.ms, + mem: { + heap_max_in_bytes: + clusterStatsLegacy?.nodes?.jvm?.mem?.heap_max_in_bytes ?? + clusterStatsMB?.nodes?.jvm?.memory?.heap?.max?.bytes, + heap_used_in_bytes: + clusterStatsLegacy?.nodes?.jvm?.mem?.heap_used_in_bytes ?? + clusterStatsMB?.nodes?.jvm?.memory?.heap?.used?.bytes, + }, + }; + + const nodes = { + fs: { + total_in_bytes: + clusterStatsLegacy?.nodes?.fs?.total_in_bytes ?? clusterStatsMB?.nodes?.fs?.total?.bytes, + available_in_bytes: + clusterStatsLegacy?.nodes?.fs?.available_in_bytes ?? + clusterStatsMB?.nodes?.fs?.available?.bytes, + }, + count: { + total: clusterStatsLegacy?.nodes?.count?.total ?? clusterStatsMB?.nodes?.count, + }, + jvm, + }; + const { status } = cluster.cluster_state ?? + cluster?.elasticsearch?.cluster?.stats ?? { status: null }; + + return { + isSupported, + cluster_uuid: clusterUuid, + cluster_name: clusterName, + version, + license: { + status: licenseStatus, + type: licenseType, + expiry_date_in_millis: licenseExpiry, + }, + elasticsearch: { + cluster_stats: { + indices, + nodes, + status, + }, + logs, + }, + logstash, + kibana: omit(kibana, 'uuids'), + ml, + ccs, + beats, + apm, + alerts, + isPrimary: kibana ? (kibana as EnhancedKibana).uuids?.includes(kibanaUuid) : false, + status: calculateOverallStatus([ + status, + (kibana && (kibana as EnhancedKibana).status) || null, + ]), + isCcrEnabled, + }; + }); +} diff --git a/x-pack/plugins/monitoring/server/lib/cluster/get_index_patterns.js b/x-pack/plugins/monitoring/server/lib/cluster/get_index_patterns.js index 970acf901e92..52f2bb7b1973 100644 --- a/x-pack/plugins/monitoring/server/lib/cluster/get_index_patterns.js +++ b/x-pack/plugins/monitoring/server/lib/cluster/get_index_patterns.js @@ -32,7 +32,7 @@ export function getIndexPatterns(server, additionalPatterns = {}, ccs = '*') { ...Object.keys(additionalPatterns).reduce((accum, varName) => { return { ...accum, - [varName]: prefixIndexPattern(config, additionalPatterns[varName], ccs), + [varName]: prefixIndexPattern(config, additionalPatterns[varName], ccs, true), }; }, {}), }; diff --git a/x-pack/plugins/monitoring/server/lib/create_query.js b/x-pack/plugins/monitoring/server/lib/create_query.js index 532fc2beb7f5..c9a5ffeca3ce 100644 --- a/x-pack/plugins/monitoring/server/lib/create_query.js +++ b/x-pack/plugins/monitoring/server/lib/create_query.js @@ -52,13 +52,22 @@ export function createTimeFilter(options) { */ export function createQuery(options) { options = defaults(options, { filters: [] }); - const { type, clusterUuid, uuid, filters } = options; + const { type, types, clusterUuid, uuid, filters } = options; const isFromStandaloneCluster = clusterUuid === STANDALONE_CLUSTER_CLUSTER_UUID; let typeFilter; if (type) { typeFilter = { bool: { should: [{ term: { type } }, { term: { 'metricset.name': type } }] } }; + } else if (types) { + typeFilter = { + bool: { + should: [ + ...types.map((type) => ({ term: { type } })), + ...types.map((type) => ({ term: { 'metricset.name': type } })), + ], + }, + }; } let clusterUuidFilter; diff --git a/x-pack/plugins/monitoring/server/lib/details/get_series.js b/x-pack/plugins/monitoring/server/lib/details/get_series.js index d89370ba8d4c..ca062ad5599f 100644 --- a/x-pack/plugins/monitoring/server/lib/details/get_series.js +++ b/x-pack/plugins/monitoring/server/lib/details/get_series.js @@ -43,7 +43,15 @@ function getUuid(req, metric) { } function defaultCalculation(bucket, key) { - const value = get(bucket, key, null); + const mbKey = `metric_mb_deriv.normalized_value`; + const legacyValue = get(bucket, key, null); + const mbValue = get(bucket, mbKey, null); + let value; + if (!isNaN(mbValue) && mbValue > 0) { + value = mbValue; + } else { + value = legacyValue; + } // negatives suggest derivatives that have been reset (usually due to restarts that reset the count) if (value < 0) { return null; @@ -54,6 +62,17 @@ function defaultCalculation(bucket, key) { function createMetricAggs(metric) { if (metric.derivative) { + const mbDerivative = metric.mbField + ? { + metric_mb_deriv: { + derivative: { + buckets_path: 'metric_mb', + gap_policy: 'skip', + unit: NORMALIZED_DERIVATIVE_UNIT, + }, + }, + } + : {}; return { metric_deriv: { derivative: { @@ -62,6 +81,7 @@ function createMetricAggs(metric) { unit: NORMALIZED_DERIVATIVE_UNIT, }, }, + ...mbDerivative, ...metric.aggs, }; } @@ -97,6 +117,13 @@ async function fetchSeries( }, ...createMetricAggs(metric), }; + if (metric.mbField) { + dateHistogramSubAggs.metric_mb = { + [metric.metricAgg]: { + field: metric.mbField, + }, + }; + } } let aggs = { @@ -209,7 +236,7 @@ function isObject(value) { } function countBuckets(data, count = 0) { - if (data.buckets) { + if (data && data.buckets) { count += data.buckets.length; for (const bucket of data.buckets) { for (const key of Object.keys(bucket)) { @@ -218,7 +245,7 @@ function countBuckets(data, count = 0) { } } } - } else { + } else if (data) { for (const key of Object.keys(data)) { if (isObject(data[key])) { count = countBuckets(data[key], count); diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/ccr.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/ccr.ts index d86ef0218aba..d0abed2ad8b8 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/ccr.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/ccr.ts @@ -15,15 +15,8 @@ import { createQuery } from '../create_query'; import { ElasticsearchResponse } from '../../../common/types/es'; import { LegacyRequest } from '../../types'; -export function handleResponse(response: ElasticsearchResponse) { - const isEnabled = response.hits?.hits[0]?._source.stack_stats?.xpack?.ccr?.enabled ?? undefined; - const isAvailable = - response.hits?.hits[0]?._source.stack_stats?.xpack?.ccr?.available ?? undefined; - return isEnabled && isAvailable; -} - export async function checkCcrEnabled(req: LegacyRequest, esIndexPattern: string) { - checkParam(esIndexPattern, 'esIndexPattern in getNodes'); + checkParam(esIndexPattern, 'esIndexPattern in checkCcrEnabled'); const start = moment.utc(req.payload.timeRange.min).valueOf(); const end = moment.utc(req.payload.timeRange.max).valueOf(); @@ -45,10 +38,17 @@ export async function checkCcrEnabled(req: LegacyRequest, esIndexPattern: string }), sort: [{ timestamp: { order: 'desc', unmapped_type: 'long' } }], }, - filterPath: ['hits.hits._source.stack_stats.xpack.ccr'], + filterPath: [ + 'hits.hits._source.stack_stats.xpack.ccr', + 'hits.hits._source.elasticsearch.cluster.stats.stack.xpack.ccr', + ], }; const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - const response = await callWithRequest(req, 'search', params); - return handleResponse(response); + const response: ElasticsearchResponse = await callWithRequest(req, 'search', params); + const legacyCcr = response.hits?.hits[0]?._source.stack_stats?.xpack?.ccr; + const mbCcr = response.hits?.hits[0]?._source?.elasticsearch?.cluster?.stats?.stack?.xpack?.ccr; + const isEnabled = legacyCcr?.enabled ?? mbCcr?.enabled; + const isAvailable = legacyCcr?.available ?? mbCcr?.available; + return isEnabled && isAvailable; } diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.test.js b/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.test.js index 791d9ac78f64..2b43e6523128 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.test.js +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.test.js @@ -5,7 +5,7 @@ * 2.0. */ -import { handleLastRecoveries, filterOldShardActivity } from './get_last_recovery'; +import { handleLegacyLastRecoveries, filterOldShardActivity } from './get_last_recovery'; describe('get_last_recovery', () => { // Note: times are from the epoch! @@ -47,24 +47,24 @@ describe('get_last_recovery', () => { it('No hits results in an empty array', () => { // Note: we don't expect it to touch hits without total === 1 - expect(handleLastRecoveries({ hits: { hits: [] } }, new Date(0))).toHaveLength(0); + expect(handleLegacyLastRecoveries({ hits: { hits: [] } }, new Date(0))).toHaveLength(0); }); it('Filters on stop time', () => { - expect(handleLastRecoveries(resp, new Date(0))).toHaveLength(5); - expect(handleLastRecoveries(resp, new Date(99))).toHaveLength(5); - expect(handleLastRecoveries(resp, new Date(100))).toHaveLength(5); - expect(handleLastRecoveries(resp, new Date(101))).toHaveLength(3); - expect(handleLastRecoveries(resp, new Date(501))).toHaveLength(0); + expect(handleLegacyLastRecoveries(resp, new Date(0))).toHaveLength(5); + expect(handleLegacyLastRecoveries(resp, new Date(99))).toHaveLength(5); + expect(handleLegacyLastRecoveries(resp, new Date(100))).toHaveLength(5); + expect(handleLegacyLastRecoveries(resp, new Date(101))).toHaveLength(3); + expect(handleLegacyLastRecoveries(resp, new Date(501))).toHaveLength(0); - const filteredActivities = handleLastRecoveries(resp, new Date(301)); + const filteredActivities = handleLegacyLastRecoveries(resp, new Date(301)); expect(filteredActivities).toHaveLength(1); expect(filteredActivities[0].stop_time_in_millis).toEqual(500); }); it('Sorts based on start time (descending)', () => { - const sortedActivities = handleLastRecoveries(resp, new Date(0)); + const sortedActivities = handleLegacyLastRecoveries(resp, new Date(0)); expect(sortedActivities[0].start_time_in_millis).toEqual(100); expect(sortedActivities[4].start_time_in_millis).toEqual(0); diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.ts index 5350fe3e96ee..b66693426493 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/get_last_recovery.ts @@ -13,7 +13,11 @@ import { checkParam } from '../error_missing_required'; import { createQuery } from '../create_query'; // @ts-ignore import { ElasticsearchMetric } from '../metrics'; -import { ElasticsearchResponse, ElasticsearchIndexRecoveryShard } from '../../../common/types/es'; +import { + ElasticsearchResponse, + ElasticsearchIndexRecoveryShard, + ElasticsearchResponseHit, +} from '../../../common/types/es'; import { LegacyRequest } from '../../types'; /** @@ -28,9 +32,12 @@ import { LegacyRequest } from '../../types'; * @returns {boolean} true to keep */ export function filterOldShardActivity(startMs: number) { - return (activity: ElasticsearchIndexRecoveryShard) => { + return (activity?: ElasticsearchIndexRecoveryShard) => { // either it's still going and there is no stop time, or the stop time happened after we started looking for one - return !_.isNumber(activity.stop_time_in_millis) || activity.stop_time_in_millis >= startMs; + return ( + activity && + (!_.isNumber(activity.stop_time_in_millis) || activity.stop_time_in_millis >= startMs) + ); }; } @@ -42,19 +49,44 @@ export function filterOldShardActivity(startMs: number) { * @param {Date} start The start time from the request payload (expected to be of type {@code Date}) * @returns {Object[]} An array of shards representing active shard activity from {@code _source.index_recovery.shards}. */ -export function handleLastRecoveries(resp: ElasticsearchResponse, start: number) { +export function handleLegacyLastRecoveries(resp: ElasticsearchResponse, start: number) { if (resp.hits?.hits.length === 1) { const data = (resp.hits?.hits[0]?._source.index_recovery?.shards ?? []).filter( filterOldShardActivity(moment.utc(start).valueOf()) ); - data.sort((a, b) => b.start_time_in_millis - a.start_time_in_millis); + data.sort((a, b) => (b.start_time_in_millis ?? 0) - (a.start_time_in_millis ?? 0)); return data; } return []; } -export function getLastRecovery(req: LegacyRequest, esIndexPattern: string) { +// For MB, we index individual documents instead of a single document with a list of recovered shards +// This means we need to query a bit differently to end up with the same result. We need to ensure +// that our recovered shards are within the same time window to match the legacy query (of size: 1) +export function handleMbLastRecoveries(resp: ElasticsearchResponse, start: number) { + const hits = resp.hits?.hits ?? []; + const groupedByTimestamp = hits.reduce( + (accum: { [timestamp: string]: ElasticsearchResponseHit[] }, hit) => { + const timestamp = hit._source['@timestamp'] ?? ''; + accum[timestamp] = accum[timestamp] || []; + accum[timestamp].push(hit); + return accum; + }, + {} + ); + const maxTimestamp = resp.aggregations?.max_timestamp?.value_as_string; + const mapped = (groupedByTimestamp[maxTimestamp] ?? []).map( + (hit) => hit._source.elasticsearch?.index?.recovery + ); + const filtered = mapped.filter(filterOldShardActivity(moment.utc(start).valueOf())); + filtered.sort((a, b) => + a && b ? (b.start_time_in_millis ?? 0) - (a.start_time_in_millis ?? 0) : 0 + ); + return filtered; +} + +export async function getLastRecovery(req: LegacyRequest, esIndexPattern: string, size: number) { checkParam(esIndexPattern, 'esIndexPattern in elasticsearch/getLastRecovery'); const start = req.payload.timeRange.min; @@ -62,7 +94,7 @@ export function getLastRecovery(req: LegacyRequest, esIndexPattern: string) { const clusterUuid = req.params.clusterUuid; const metric = ElasticsearchMetric.getMetricFields(); - const params = { + const legacyParams = { index: esIndexPattern, size: 1, ignoreUnavailable: true, @@ -72,9 +104,31 @@ export function getLastRecovery(req: LegacyRequest, esIndexPattern: string) { query: createQuery({ type: 'index_recovery', start, end, clusterUuid, metric }), }, }; + const mbParams = { + index: esIndexPattern, + size, + ignoreUnavailable: true, + body: { + _source: ['elasticsearch.index.recovery', '@timestamp'], + sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, + query: createQuery({ type: 'index_recovery', start, end, clusterUuid, metric }), + aggs: { + max_timestamp: { + max: { + field: '@timestamp', + }, + }, + }, + }, + }; const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - return callWithRequest(req, 'search', params).then((resp) => { - return handleLastRecoveries(resp, start); - }); + const [legacyResp, mbResp] = await Promise.all([ + callWithRequest(req, 'search', legacyParams), + callWithRequest(req, 'search', mbParams), + ]); + const legacyResult = handleLegacyLastRecoveries(legacyResp, start); + const mbResult = handleMbLastRecoveries(mbResp, start); + + return [...legacyResult, ...mbResult]; } diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/get_ml_jobs.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/get_ml_jobs.ts index dcd2040c0371..e825c1156613 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/get_ml_jobs.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/get_ml_jobs.ts @@ -21,7 +21,18 @@ import { LegacyRequest } from '../../types'; */ export function handleResponse(response: ElasticsearchResponse) { const hits = response.hits?.hits; - return hits?.map((hit) => hit._source.job_stats) ?? []; + return ( + hits?.map((hit) => { + const job = hit._source.job_stats ?? hit._source.elasticsearch; + return { + ...job, + node: { + ...job?.node, + name: job?.node?.name ?? job?.node?.id, + }, + }; + }) ?? [] + ); } export function getMlJobs(req: LegacyRequest, esIndexPattern: string) { @@ -39,17 +50,24 @@ export function getMlJobs(req: LegacyRequest, esIndexPattern: string) { ignoreUnavailable: true, filterPath: [ 'hits.hits._source.job_stats.job_id', + 'hits.hits._source.elasticsearch.ml.job.id', 'hits.hits._source.job_stats.state', + 'hits.hits._source.elasticsearch.ml.job.state', 'hits.hits._source.job_stats.data_counts.processed_record_count', + 'hits.hits._source.elasticsearch.ml.job.data_counts.processed_record_count', 'hits.hits._source.job_stats.model_size_stats.model_bytes', + 'hits.hits._source.elasticsearch.ml.job.model_size_stats.model_bytes', 'hits.hits._source.job_stats.forecasts_stats.total', + 'hits.hits._source.elasticsearch.ml.job.forecasts_stats.total', 'hits.hits._source.job_stats.node.id', + 'hits.hits._source.elasticsearch.node.id', 'hits.hits._source.job_stats.node.name', + 'hits.hits._source.elasticsearch.node.name', ], body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, collapse: { field: 'job_stats.job_id' }, - query: createQuery({ type: 'job_stats', start, end, clusterUuid, metric }), + query: createQuery({ types: ['ml_job', 'job_stats'], start, end, clusterUuid, metric }), }, }; @@ -66,7 +84,7 @@ export function getMlJobsForCluster( esIndexPattern: string, cluster: ElasticsearchSource ) { - const license = cluster.license ?? {}; + const license = cluster.license ?? cluster.elasticsearch?.cluster?.stats?.license ?? {}; if (license.status === 'active' && includes(ML_SUPPORTED_LICENSES, license.type)) { // ML is supported @@ -80,7 +98,7 @@ export function getMlJobsForCluster( ignoreUnavailable: true, filterPath: 'aggregations.jobs_count.value', body: { - query: createQuery({ type: 'job_stats', start, end, clusterUuid, metric }), + query: createQuery({ types: ['ml_job', 'job_stats'], start, end, clusterUuid, metric }), aggs: { jobs_count: { cardinality: { field: 'job_stats.job_id' } }, }, diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_index_summary.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_index_summary.ts index eda096bd0af1..ee4988d77397 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_index_summary.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_index_summary.ts @@ -18,7 +18,9 @@ import { LegacyRequest } from '../../../types'; export function handleResponse(shardStats: any, indexUuid: string) { return (response: ElasticsearchResponse) => { - const indexStats = response.hits?.hits[0]?._source.index_stats; + const indexStats = + response.hits?.hits[0]?._source.index_stats ?? + response.hits?.hits[0]?._source.elasticsearch?.index; const primaries = indexStats?.primaries; const total = indexStats?.total; @@ -74,14 +76,30 @@ export function getIndexSummary( checkParam(esIndexPattern, 'esIndexPattern in elasticsearch/getIndexSummary'); const metric = ElasticsearchMetric.getMetricFields(); - const filters = [{ term: { 'index_stats.index': indexUuid } }]; + const filters = [ + { + bool: { + should: [ + { term: { 'index_stats.index': indexUuid } }, + { term: { 'elasticsearch.index.name': indexUuid } }, + ], + }, + }, + ]; const params = { index: esIndexPattern, size: 1, ignoreUnavailable: true, body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, - query: createQuery({ type: 'index_stats', start, end, clusterUuid, metric, filters }), + query: createQuery({ + types: ['index', 'index_stats'], + start, + end, + clusterUuid, + metric, + filters, + }), }, }; diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_indices.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_indices.ts index 47a6f31430c7..9a61d6c603b9 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_indices.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/indices/get_indices.ts @@ -29,12 +29,16 @@ export function handleResponse( // map the hits const hits = resp?.hits?.hits ?? []; return hits.map((hit) => { - const stats = hit._source.index_stats; - const earliestStats = hit.inner_hits?.earliest?.hits?.hits[0]?._source.index_stats; + const stats = hit._source.index_stats ?? hit._source.elasticsearch?.index; + const earliestStats = + hit.inner_hits?.earliest?.hits?.hits[0]?._source.index_stats ?? + hit.inner_hits?.earliest?.hits?.hits[0]?._source.elasticsearch?.index; const rateOptions = { - hitTimestamp: hit._source.timestamp, - earliestHitTimestamp: hit.inner_hits?.earliest?.hits?.hits[0]?._source.timestamp, + hitTimestamp: hit._source.timestamp ?? hit._source['@timestamp'], + earliestHitTimestamp: + hit.inner_hits?.earliest?.hits?.hits[0]?._source.timestamp ?? + hit.inner_hits?.earliest?.hits?.hits[0]?._source['@timestamp'], timeWindowMin: min, timeWindowMax: max, }; @@ -53,7 +57,7 @@ export function handleResponse( ...rateOptions, }); - const shardStatsForIndex = get(shardStats, ['indices', stats?.index ?? '']); + const shardStatsForIndex = get(shardStats, ['indices', stats?.index ?? stats?.name ?? '']); let status; let statusSort; let unassignedShards; @@ -77,7 +81,7 @@ export function handleResponse( } return { - name: stats?.index, + name: stats?.index ?? stats?.name, status, doc_count: stats?.primaries?.docs?.count, data_size: stats?.total?.store?.size_in_bytes, @@ -116,22 +120,31 @@ export function buildGetIndicesQuery( filterPath: [ // only filter path can filter for inner_hits 'hits.hits._source.index_stats.index', + 'hits.hits._source.elasticsearch.index.name', 'hits.hits._source.index_stats.primaries.docs.count', + 'hits.hits._source.elasticsearch.index.primaries.docs.count', 'hits.hits._source.index_stats.total.store.size_in_bytes', + 'hits.hits._source.elasticsearch.index.total.store.size_in_bytes', // latest hits for calculating metrics 'hits.hits._source.timestamp', + 'hits.hits._source.@timestamp', 'hits.hits._source.index_stats.primaries.indexing.index_total', + 'hits.hits._source.elasticsearch.index.primaries.indexing.index_total', 'hits.hits._source.index_stats.total.search.query_total', + 'hits.hits._source.elasticsearch.index.total.search.query_total', // earliest hits for calculating metrics 'hits.hits.inner_hits.earliest.hits.hits._source.timestamp', + 'hits.hits.inner_hits.earliest.hits.hits._source.@timestamp', 'hits.hits.inner_hits.earliest.hits.hits._source.index_stats.primaries.indexing.index_total', + 'hits.hits.inner_hits.earliest.hits.hits._source.elasticsearch.index.primaries.indexing.index_total', 'hits.hits.inner_hits.earliest.hits.hits._source.index_stats.total.search.query_total', + 'hits.hits.inner_hits.earliest.hits.hits._source.elasticsearch.index.total.search.query_total', ], body: { query: createQuery({ - type: 'index_stats', + types: ['index', 'index_stats'], start, end, clusterUuid, diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/calculate_node_type.js b/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/calculate_node_type.js index 8f15132930fd..4b2bcb4cda43 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/calculate_node_type.js +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/calculate_node_type.js @@ -25,7 +25,9 @@ export function calculateNodeType(node, masterNodeId) { return attr === 'false'; } - if (node.uuid !== undefined && node.uuid === masterNodeId) { + const uuid = node.uuid ?? node.id; + + if (uuid !== undefined && uuid === masterNodeId) { return 'master'; } if (includes(node.node_ids, masterNodeId)) { diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/get_nodes.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/get_nodes.ts index ace6baf76f80..2235d3d2f322 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/get_nodes.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/get_nodes.ts @@ -112,6 +112,7 @@ export async function getNodes( }, filterPath: [ 'hits.hits._source.source_node', + 'hits.hits._source.service.address', 'hits.hits._source.elasticsearch.node', 'aggregations.nodes.buckets.key', ...LISTING_METRICS_PATHS, diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/map_nodes_info.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/map_nodes_info.ts index 8139ae48c018..745556f5d2c8 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/map_nodes_info.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/nodes/get_nodes/map_nodes_info.ts @@ -26,12 +26,13 @@ export function mapNodesInfo( clusterStats?: ElasticsearchModifiedSource, nodesShardCount?: { nodes: { [nodeId: string]: { shardCount: number } } } ) { - const clusterState = clusterStats?.cluster_state ?? { nodes: {} }; + const clusterState = + clusterStats?.cluster_state ?? clusterStats?.elasticsearch?.cluster?.stats?.state; return nodeHits.reduce((prev, node) => { const sourceNode = node._source.source_node || node._source.elasticsearch?.node; - const calculatedNodeType = calculateNodeType(sourceNode, clusterState.master_node); + const calculatedNodeType = calculateNodeType(sourceNode, clusterState?.master_node); const { nodeType, nodeTypeLabel, nodeTypeClass } = getNodeTypeClassLabel( sourceNode, calculatedNodeType @@ -40,13 +41,13 @@ export function mapNodesInfo( if (!uuid) { return prev; } - const isOnline = !isUndefined(clusterState.nodes ? clusterState.nodes[uuid] : undefined); + const isOnline = !isUndefined(clusterState?.nodes ? clusterState.nodes[uuid] : undefined); return { ...prev, [uuid]: { name: sourceNode?.name, - transport_address: sourceNode?.transport_address, + transport_address: node._source.service?.address ?? sourceNode?.transport_address, type: nodeType, isOnline, nodeTypeLabel, diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_indices_unassigned_shard_stats.js b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_indices_unassigned_shard_stats.ts similarity index 52% rename from x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_indices_unassigned_shard_stats.js rename to x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_indices_unassigned_shard_stats.ts index e5ae6bf448ac..d3acf8ccaf44 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_indices_unassigned_shard_stats.js +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_indices_unassigned_shard_stats.ts @@ -6,16 +6,38 @@ */ import { get } from 'lodash'; +// @ts-ignore import { checkParam } from '../../error_missing_required'; +// @ts-ignore import { createQuery } from '../../create_query'; +// @ts-ignore import { ElasticsearchMetric } from '../../metrics'; +// @ts-ignore import { calculateIndicesTotals } from './calculate_shard_stat_indices_totals'; +import { LegacyRequest } from '../../../types'; +import { ElasticsearchModifiedSource } from '../../../../common/types/es'; -async function getUnassignedShardData(req, esIndexPattern, cluster) { +async function getUnassignedShardData( + req: LegacyRequest, + esIndexPattern: string, + cluster: ElasticsearchModifiedSource +) { const config = req.server.config(); const maxBucketSize = config.get('monitoring.ui.max_bucket_size'); const metric = ElasticsearchMetric.getMetricFields(); + const filters = []; + if (cluster.cluster_state?.state_uuid) { + filters.push({ term: { state_uuid: cluster.cluster_state?.state_uuid } }); + } else if (cluster.elasticsearch?.cluster?.stats?.state?.state_uuid) { + filters.push({ + term: { + 'elasticsearch.cluster.stats.state.state_uuid': + cluster.elasticsearch?.cluster?.stats?.state?.state_uuid, + }, + }); + } + const params = { index: esIndexPattern, size: 0, @@ -23,10 +45,10 @@ async function getUnassignedShardData(req, esIndexPattern, cluster) { body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, query: createQuery({ - type: 'shards', - clusterUuid: cluster.cluster_uuid, + types: ['shard', 'shards'], + clusterUuid: cluster.cluster_uuid ?? cluster.elasticsearch?.cluster?.id, metric, - filters: [{ term: { state_uuid: get(cluster, 'cluster_state.state_uuid') } }], + filters, }), aggs: { indices: { @@ -60,34 +82,41 @@ async function getUnassignedShardData(req, esIndexPattern, cluster) { return await callWithRequest(req, 'search', params); } -export async function getIndicesUnassignedShardStats(req, esIndexPattern, cluster) { +export async function getIndicesUnassignedShardStats( + req: LegacyRequest, + esIndexPattern: string, + cluster: ElasticsearchModifiedSource +) { checkParam(esIndexPattern, 'esIndexPattern in elasticsearch/getShardStats'); const response = await getUnassignedShardData(req, esIndexPattern, cluster); - const indices = get(response, 'aggregations.indices.buckets', []).reduce((accum, bucket) => { - const index = bucket.key; - const states = get(bucket, 'state.primary.buckets', []); - const unassignedReplica = states - .filter((state) => state.key_as_string === 'false') - .reduce((total, state) => total + state.doc_count, 0); - const unassignedPrimary = states - .filter((state) => state.key_as_string === 'true') - .reduce((total, state) => total + state.doc_count, 0); + const indices = get(response, 'aggregations.indices.buckets', []).reduce( + (accum: any, bucket: any) => { + const index = bucket.key; + const states = get(bucket, 'state.primary.buckets', []); + const unassignedReplica = states + .filter((state: any) => state.key_as_string === 'false') + .reduce((total: number, state: any) => total + state.doc_count, 0); + const unassignedPrimary = states + .filter((state: any) => state.key_as_string === 'true') + .reduce((total: number, state: any) => total + state.doc_count, 0); - let status = 'green'; - if (unassignedReplica > 0) { - status = 'yellow'; - } - if (unassignedPrimary > 0) { - status = 'red'; - } + let status = 'green'; + if (unassignedReplica > 0) { + status = 'yellow'; + } + if (unassignedPrimary > 0) { + status = 'red'; + } - accum[index] = { - unassigned: { primary: unassignedPrimary, replica: unassignedReplica }, - status, - }; - return accum; - }, {}); + accum[index] = { + unassigned: { primary: unassignedPrimary, replica: unassignedReplica }, + status, + }; + return accum; + }, + {} + ); const indicesTotals = calculateIndicesTotals(indices); return { indices, indicesTotals }; diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_nodes_shard_count.js b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_nodes_shard_count.ts similarity index 55% rename from x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_nodes_shard_count.js rename to x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_nodes_shard_count.ts index 68573653ac58..7cda87bf09af 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_nodes_shard_count.js +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_nodes_shard_count.ts @@ -6,15 +6,36 @@ */ import { get } from 'lodash'; +// @ts-ignore import { checkParam } from '../../error_missing_required'; +// @ts-ignore import { createQuery } from '../../create_query'; +// @ts-ignore import { ElasticsearchMetric } from '../../metrics'; +import { LegacyRequest } from '../../../types'; +import { ElasticsearchModifiedSource } from '../../../../common/types/es'; -async function getShardCountPerNode(req, esIndexPattern, cluster) { +async function getShardCountPerNode( + req: LegacyRequest, + esIndexPattern: string, + cluster: ElasticsearchModifiedSource +) { const config = req.server.config(); const maxBucketSize = config.get('monitoring.ui.max_bucket_size'); const metric = ElasticsearchMetric.getMetricFields(); + const filters = []; + if (cluster.cluster_state?.state_uuid) { + filters.push({ term: { state_uuid: cluster.cluster_state?.state_uuid } }); + } else if (cluster.elasticsearch?.cluster?.stats?.state?.state_uuid) { + filters.push({ + term: { + 'elasticsearch.cluster.stats.state.state_uuid': + cluster.elasticsearch?.cluster?.stats?.state?.state_uuid, + }, + }); + } + const params = { index: esIndexPattern, size: 0, @@ -22,10 +43,10 @@ async function getShardCountPerNode(req, esIndexPattern, cluster) { body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, query: createQuery({ - type: 'shards', - clusterUuid: cluster.cluster_uuid, + types: ['shard', 'shards'], + clusterUuid: cluster.cluster_uuid ?? cluster.elasticsearch?.cluster?.id, metric, - filters: [{ term: { state_uuid: get(cluster, 'cluster_state.state_uuid') } }], + filters, }), aggs: { nodes: { @@ -42,13 +63,20 @@ async function getShardCountPerNode(req, esIndexPattern, cluster) { return await callWithRequest(req, 'search', params); } -export async function getNodesShardCount(req, esIndexPattern, cluster) { +export async function getNodesShardCount( + req: LegacyRequest, + esIndexPattern: string, + cluster: ElasticsearchModifiedSource +) { checkParam(esIndexPattern, 'esIndexPattern in elasticsearch/getShardStats'); const response = await getShardCountPerNode(req, esIndexPattern, cluster); - const nodes = get(response, 'aggregations.nodes.buckets', []).reduce((accum, bucket) => { - accum[bucket.key] = { shardCount: bucket.doc_count }; - return accum; - }, {}); + const nodes = get(response, 'aggregations.nodes.buckets', []).reduce( + (accum: any, bucket: any) => { + accum[bucket.key] = { shardCount: bucket.doc_count }; + return accum; + }, + {} + ); return { nodes }; } diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_allocation.ts b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_allocation.ts index 4bbdad6fdee9..b739b4a6533d 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_allocation.ts +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_allocation.ts @@ -13,7 +13,6 @@ import { createQuery } from '../../create_query'; import { ElasticsearchMetric } from '../../metrics'; import { ElasticsearchResponse, ElasticsearchLegacySource } from '../../../../common/types/es'; import { LegacyRequest } from '../../../types'; - export function handleResponse(response: ElasticsearchResponse) { const hits = response.hits?.hits; if (!hits) { @@ -23,16 +22,31 @@ export function handleResponse(response: ElasticsearchResponse) { // deduplicate any shards from earlier days with the same cluster state state_uuid const uniqueShards = new Set(); - // map into object with shard and source properties + // map into object with shard and source propertiesd return hits.reduce((shards: Array, hit) => { - const shard = hit._source.shard; + const legacyShard = hit._source.shard; + const mbShard = hit._source.elasticsearch; - if (shard) { + if (legacyShard || mbShard) { + const index = mbShard?.index?.name ?? legacyShard?.index; + const shardNumber = mbShard?.shard?.number ?? legacyShard?.shard; + const primary = mbShard?.shard?.primary ?? legacyShard?.primary; + const relocatingNode = + mbShard?.shard?.relocating_node?.id ?? legacyShard?.relocating_node ?? null; + const node = mbShard?.node?.id ?? legacyShard?.node; // note: if the request is for a node, then it's enough to deduplicate without primary, but for indices it displays both - const shardId = `${shard.index}-${shard.shard}-${shard.primary}-${shard.relocating_node}-${shard.node}`; + const shardId = `${index}-${shardNumber}-${primary}-${relocatingNode}-${node}`; if (!uniqueShards.has(shardId)) { - shards.push(shard); + // @ts-ignore + shards.push({ + index, + node, + primary, + relocating_node: relocatingNode, + shard: shardNumber, + state: legacyShard?.state ?? mbShard?.shard?.state, + }); uniqueShards.add(shardId); } } @@ -52,10 +66,34 @@ export function getShardAllocation( ) { checkParam(esIndexPattern, 'esIndexPattern in elasticsearch/getShardAllocation'); - const filters = [{ term: { state_uuid: stateUuid } }, shardFilter]; + const filters = [ + { + bool: { + should: [ + { + term: { + state_uuid: stateUuid, + }, + }, + { + term: { + 'elasticsearch.cluster.state.id': stateUuid, + }, + }, + ], + }, + }, + shardFilter, + ]; + if (!showSystemIndices) { filters.push({ - bool: { must_not: [{ prefix: { 'shard.index': '.' } }] }, + bool: { + must_not: [ + { prefix: { 'shard.index': '.' } }, + { prefix: { 'elasticsearch.index.name': '.' } }, + ], + }, }); } @@ -67,7 +105,7 @@ export function getShardAllocation( size: config.get('monitoring.ui.max_bucket_size'), ignoreUnavailable: true, body: { - query: createQuery({ type: 'shards', clusterUuid, metric, filters }), + query: createQuery({ types: ['shard', 'shards'], clusterUuid, metric, filters }), }, }; diff --git a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_stats.js b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_stats.ts similarity index 58% rename from x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_stats.js rename to x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_stats.ts index df09cd977e25..f7e2775328e2 100644 --- a/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_stats.js +++ b/x-pack/plugins/monitoring/server/lib/elasticsearch/shards/get_shard_stats.ts @@ -6,14 +6,27 @@ */ import { get } from 'lodash'; +// @ts-ignore import { checkParam } from '../../error_missing_required'; +// @ts-ignore import { createQuery } from '../../create_query'; +// @ts-ignore import { ElasticsearchMetric } from '../../metrics'; +// @ts-ignore import { normalizeIndexShards, normalizeNodeShards } from './normalize_shard_objects'; +// @ts-ignore import { getShardAggs } from './get_shard_stat_aggs'; +// @ts-ignore import { calculateIndicesTotals } from './calculate_shard_stat_indices_totals'; +import { LegacyRequest } from '../../../types'; +import { ElasticsearchResponse, ElasticsearchModifiedSource } from '../../../../common/types/es'; -export function handleResponse(resp, includeNodes, includeIndices, cluster) { +export function handleResponse( + resp: ElasticsearchResponse, + includeNodes: boolean, + includeIndices: boolean, + cluster: ElasticsearchModifiedSource +) { let indices; let indicesTotals; let nodes; @@ -25,7 +38,11 @@ export function handleResponse(resp, includeNodes, includeIndices, cluster) { } if (includeNodes) { - const masterNode = get(cluster, 'cluster_state.master_node'); + const masterNode = get( + cluster, + 'elasticsearch.cluster.stats.state.master_node', + get(cluster, 'cluster_state.master_node') + ); nodes = resp.aggregations.nodes.buckets.reduce(normalizeNodeShards(masterNode), {}); } @@ -37,21 +54,44 @@ export function handleResponse(resp, includeNodes, includeIndices, cluster) { } export function getShardStats( - req, - esIndexPattern, - cluster, + req: LegacyRequest, + esIndexPattern: string, + cluster: ElasticsearchModifiedSource, { includeNodes = false, includeIndices = false, indexName = null, nodeUuid = null } = {} ) { checkParam(esIndexPattern, 'esIndexPattern in elasticsearch/getShardStats'); const config = req.server.config(); const metric = ElasticsearchMetric.getMetricFields(); - const filters = [{ term: { state_uuid: get(cluster, 'cluster_state.state_uuid') } }]; + const filters = []; + if (cluster.cluster_state?.state_uuid) { + filters.push({ term: { state_uuid: cluster.cluster_state.state_uuid } }); + } else if (cluster.elasticsearch?.cluster?.stats?.state?.state_uuid) { + filters.push({ + term: { + 'elasticsearch.cluster.state.id': cluster.elasticsearch.cluster.stats.state.state_uuid, + }, + }); + } if (indexName) { - filters.push({ term: { 'shard.index': indexName } }); + filters.push({ + bool: { + should: [ + { term: { 'shard.index': indexName } }, + { term: { 'elasticsearch.index.name': indexName } }, + ], + }, + }); } if (nodeUuid) { - filters.push({ term: { 'shard.node': nodeUuid } }); + filters.push({ + bool: { + should: [ + { term: { 'shard.node': nodeUuid } }, + { term: { 'elasticsearch.node.id': nodeUuid } }, + ], + }, + }); } const params = { index: esIndexPattern, @@ -60,8 +100,8 @@ export function getShardStats( body: { sort: { timestamp: { order: 'desc', unmapped_type: 'long' } }, query: createQuery({ - type: 'shards', - clusterUuid: cluster.cluster_uuid, + types: ['shard', 'shards'], + clusterUuid: cluster.cluster_uuid ?? cluster.elasticsearch?.cluster?.id, metric, filters, }), diff --git a/x-pack/plugins/monitoring/server/lib/kibana/get_kibana_info.ts b/x-pack/plugins/monitoring/server/lib/kibana/get_kibana_info.ts index a2b9e545fe17..3b0af657947e 100644 --- a/x-pack/plugins/monitoring/server/lib/kibana/get_kibana_info.ts +++ b/x-pack/plugins/monitoring/server/lib/kibana/get_kibana_info.ts @@ -14,12 +14,15 @@ import { LegacyRequest } from '../../types'; import { ElasticsearchResponse } from '../../../common/types/es'; export function handleResponse(resp: ElasticsearchResponse) { - const source = resp.hits?.hits[0]?._source.kibana_stats; - const kibana = source?.kibana; + const legacySource = resp.hits?.hits[0]?._source.kibana_stats; + const mbSource = resp.hits?.hits[0]?._source.kibana?.stats; + const kibana = resp.hits?.hits[0]?._source.kibana?.kibana ?? legacySource?.kibana; return merge(kibana, { - availability: calculateAvailability(source?.timestamp), - os_memory_free: source?.os?.memory?.free_in_bytes, - uptime: source?.process?.uptime_in_millis, + availability: calculateAvailability( + resp.hits?.hits[0]?._source['@timestamp'] ?? legacySource?.timestamp + ), + os_memory_free: mbSource?.os?.memory?.free_in_bytes ?? legacySource?.os?.memory?.free_in_bytes, + uptime: mbSource?.process?.uptime?.ms ?? legacySource?.process?.uptime_in_millis, }); } @@ -36,9 +39,13 @@ export function getKibanaInfo( ignoreUnavailable: true, filterPath: [ 'hits.hits._source.kibana_stats.kibana', + 'hits.hits._source.kibana.kibana', 'hits.hits._source.kibana_stats.os.memory.free_in_bytes', + 'hits.hits._source.kibana.stats.os.memory.free_in_bytes', 'hits.hits._source.kibana_stats.process.uptime_in_millis', + 'hits.hits._source.kibana.stats.process.uptime.ms', 'hits.hits._source.kibana_stats.timestamp', + 'hits.hits._source.@timestamp', ], body: { query: { diff --git a/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas.js b/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas.js deleted file mode 100644 index ec481d60767e..000000000000 --- a/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas.js +++ /dev/null @@ -1,77 +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 - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { get } from 'lodash'; -import moment from 'moment'; -import { checkParam } from '../error_missing_required'; -import { createQuery } from '../create_query'; -import { calculateAvailability } from '../calculate_availability'; -import { KibanaMetric } from '../metrics'; - -/* - * Get detailed info for Kibanas in the cluster - * for Kibana listing page - * For each instance: - * - name - * - status - * - memory - * - os load average - * - requests - * - response times - */ -export function getKibanas(req, kbnIndexPattern, { clusterUuid }) { - checkParam(kbnIndexPattern, 'kbnIndexPattern in getKibanas'); - - const config = req.server.config(); - const start = moment.utc(req.payload.timeRange.min).valueOf(); - const end = moment.utc(req.payload.timeRange.max).valueOf(); - - const params = { - index: kbnIndexPattern, - size: config.get('monitoring.ui.max_bucket_size'), - ignoreUnavailable: true, - body: { - query: createQuery({ - type: 'kibana_stats', - start, - end, - clusterUuid, - metric: KibanaMetric.getMetricFields(), - }), - collapse: { - field: 'kibana_stats.kibana.uuid', - }, - sort: [{ timestamp: { order: 'desc', unmapped_type: 'long' } }], - _source: [ - 'timestamp', - 'kibana_stats.process.memory.resident_set_size_in_bytes', - 'kibana_stats.os.load.1m', - 'kibana_stats.response_times.average', - 'kibana_stats.response_times.max', - 'kibana_stats.requests.total', - 'kibana_stats.kibana.transport_address', - 'kibana_stats.kibana.name', - 'kibana_stats.kibana.host', - 'kibana_stats.kibana.uuid', - 'kibana_stats.kibana.status', - 'kibana_stats.concurrent_connections', - ], - }, - }; - - const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - return callWithRequest(req, 'search', params).then((resp) => { - const instances = get(resp, 'hits.hits', []); - - return instances.map((hit) => { - return { - ...get(hit, '_source.kibana_stats'), - availability: calculateAvailability(get(hit, '_source.timestamp')), - }; - }); - }); -} diff --git a/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas.ts b/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas.ts new file mode 100644 index 000000000000..4da4c40b2556 --- /dev/null +++ b/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas.ts @@ -0,0 +1,151 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import moment from 'moment'; +// @ts-ignore +import { checkParam } from '../error_missing_required'; +// @ts-ignore +import { createQuery } from '../create_query'; +// @ts-ignore +import { calculateAvailability } from '../calculate_availability'; +// @ts-ignore +import { KibanaMetric } from '../metrics'; +import { LegacyRequest } from '../../types'; +import { ElasticsearchResponse } from '../../../common/types/es'; + +interface Kibana { + process?: { + memory?: { + resident_set_size_in_bytes?: number; + }; + }; + os?: { + load?: { + '1m'?: number; + }; + }; + response_times?: { + average?: number; + max?: number; + }; + requests?: { + total?: number; + }; + concurrent_connections?: number; + kibana?: { + transport_address?: string; + name?: string; + host?: string; + uuid?: string; + status?: string; + }; + availability: boolean; +} + +/* + * Get detailed info for Kibanas in the cluster + * for Kibana listing page + * For each instance: + * - name + * - status + * - memory + * - os load average + * - requests + * - response times + */ +export async function getKibanas( + req: LegacyRequest, + kbnIndexPattern: string, + { clusterUuid }: { clusterUuid: string } +) { + checkParam(kbnIndexPattern, 'kbnIndexPattern in getKibanas'); + + const config = req.server.config(); + const start = moment.utc(req.payload.timeRange.min).valueOf(); + const end = moment.utc(req.payload.timeRange.max).valueOf(); + + const params = { + index: kbnIndexPattern, + size: config.get('monitoring.ui.max_bucket_size'), + ignoreUnavailable: true, + body: { + query: createQuery({ + types: ['kibana_stats', 'stats'], + start, + end, + clusterUuid, + metric: KibanaMetric.getMetricFields(), + }), + collapse: { + field: 'kibana_stats.kibana.uuid', + }, + sort: [{ timestamp: { order: 'desc', unmapped_type: 'long' } }], + _source: [ + 'timestamp', + '@timestamp', + 'kibana_stats.process.memory.resident_set_size_in_bytes', + 'kibana.stats.process.memory.resident_set_size.bytes', + 'kibana_stats.os.load.1m', + 'kibana.stats.os.load.1m', + 'kibana_stats.response_times.average', + 'kibana.stats.response_time.avg.ms', + 'kibana_stats.response_times.max', + 'kibana.stats.response_time.max.ms', + 'kibana_stats.requests.total', + 'kibana.stats.request.total', + 'kibana_stats.kibana.transport_address', + 'kibana.kibana.transport_address', + 'kibana_stats.kibana.name', + 'kibana.kibana.name', + 'kibana_stats.kibana.host', + 'kibana.kibana.host', + 'kibana_stats.kibana.uuid', + 'kibana.kibana.uuid', + 'kibana_stats.kibana.status', + 'kibana.kibana.status', + 'kibana_stats.concurrent_connections', + 'kibana.stats.concurrent_connections', + ], + }, + }; + + const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); + const response: ElasticsearchResponse = await callWithRequest(req, 'search', params); + const instances = response.hits?.hits ?? []; + + return instances.map((hit) => { + const legacyStats = hit._source.kibana_stats; + const mbStats = hit._source.kibana?.stats; + + const kibana: Kibana = { + kibana: hit._source.kibana?.kibana ?? legacyStats?.kibana, + concurrent_connections: + mbStats?.concurrent_connections ?? legacyStats?.concurrent_connections, + process: { + memory: { + resident_set_size_in_bytes: + mbStats?.process?.memory?.resident_set_size?.bytes ?? + legacyStats?.process?.memory?.resident_set_size_in_bytes, + }, + }, + os: { + load: { + '1m': mbStats?.os?.load?.['1m'] ?? legacyStats?.os?.load?.['1m'], + }, + }, + response_times: { + average: mbStats?.response_time?.avg?.ms ?? legacyStats?.response_times?.average, + max: mbStats?.response_time?.max?.ms ?? legacyStats?.response_times?.max, + }, + requests: { + total: mbStats?.request?.total ?? legacyStats?.requests?.total, + }, + availability: calculateAvailability(hit._source['@timestamp'] ?? hit._source.timestamp), + }; + return kibana; + }); +} diff --git a/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas_for_clusters.js b/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas_for_clusters.js index 002ca93323a8..7d6486012292 100644 --- a/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas_for_clusters.js +++ b/x-pack/plugins/monitoring/server/lib/kibana/get_kibanas_for_clusters.js @@ -32,7 +32,7 @@ export function getKibanasForClusters(req, kbnIndexPattern, clusters) { const end = req.payload.timeRange.max; return Bluebird.map(clusters, (cluster) => { - const clusterUuid = cluster.cluster_uuid; + const clusterUuid = get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid); const metric = KibanaClusterMetric.getMetricFields(); const params = { index: kbnIndexPattern, @@ -40,7 +40,7 @@ export function getKibanasForClusters(req, kbnIndexPattern, clusters) { ignoreUnavailable: true, body: { query: createQuery({ - type: 'kibana_stats', + types: ['stats', 'kibana_stats'], start, end, clusterUuid, diff --git a/x-pack/plugins/monitoring/server/lib/logs/get_log_types.js b/x-pack/plugins/monitoring/server/lib/logs/get_log_types.ts similarity index 70% rename from x-pack/plugins/monitoring/server/lib/logs/get_log_types.js rename to x-pack/plugins/monitoring/server/lib/logs/get_log_types.ts index 726ee5a89f57..82b73c6b87f0 100644 --- a/x-pack/plugins/monitoring/server/lib/logs/get_log_types.js +++ b/x-pack/plugins/monitoring/server/lib/logs/get_log_types.ts @@ -5,25 +5,40 @@ * 2.0. */ -import { get } from 'lodash'; +// @ts-ignore import { checkParam } from '../error_missing_required'; +// @ts-ignore import { createTimeFilter } from '../create_query'; +// @ts-ignore import { detectReason } from './detect_reason'; +// @ts-ignore import { detectReasonFromException } from './detect_reason_from_exception'; +import { LegacyRequest } from '../../types'; +import { FilebeatResponse } from '../../../common/types/filebeat'; -async function handleResponse(response, req, filebeatIndexPattern, opts) { - const result = { +interface LogType { + level?: string; + count?: number; +} + +async function handleResponse( + response: FilebeatResponse, + req: LegacyRequest, + filebeatIndexPattern: string, + opts: { clusterUuid: string; nodeUuid: string; indexUuid: string; start: number; end: number } +) { + const result: { enabled: boolean; types: LogType[]; reason?: any } = { enabled: false, types: [], }; - const typeBuckets = get(response, 'aggregations.types.buckets', []); + const typeBuckets = response.aggregations?.types?.buckets ?? []; if (typeBuckets.length) { result.enabled = true; - result.types = typeBuckets.map((typeBucket) => { + result.types = typeBuckets.map((typeBucket: any) => { return { type: typeBucket.key.split('.')[1], - levels: typeBucket.levels.buckets.map((levelBucket) => { + levels: typeBucket.levels.buckets.map((levelBucket: any) => { return { level: levelBucket.key.toLowerCase(), count: levelBucket.doc_count, @@ -39,9 +54,15 @@ async function handleResponse(response, req, filebeatIndexPattern, opts) { } export async function getLogTypes( - req, - filebeatIndexPattern, - { clusterUuid, nodeUuid, indexUuid, start, end } + req: LegacyRequest, + filebeatIndexPattern: string, + { + clusterUuid, + nodeUuid, + indexUuid, + start, + end, + }: { clusterUuid: string; nodeUuid: string; indexUuid: string; start: number; end: number } ) { checkParam(filebeatIndexPattern, 'filebeatIndexPattern in logs/getLogTypes'); @@ -90,7 +111,10 @@ export async function getLogTypes( }; const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - let result = {}; + let result: { enabled: boolean; types: LogType[]; reason?: any } = { + enabled: false, + types: [], + }; try { const response = await callWithRequest(req, 'search', params); result = await handleResponse(response, req, filebeatIndexPattern, { diff --git a/x-pack/plugins/monitoring/server/lib/logs/get_logs.js b/x-pack/plugins/monitoring/server/lib/logs/get_logs.ts similarity index 64% rename from x-pack/plugins/monitoring/server/lib/logs/get_logs.js rename to x-pack/plugins/monitoring/server/lib/logs/get_logs.ts index 896c7b346634..11e8f6550bcb 100644 --- a/x-pack/plugins/monitoring/server/lib/logs/get_logs.js +++ b/x-pack/plugins/monitoring/server/lib/logs/get_logs.ts @@ -6,37 +6,59 @@ */ import moment from 'moment'; -import { get } from 'lodash'; +// @ts-ignore import { checkParam } from '../error_missing_required'; +// @ts-ignore import { createTimeFilter } from '../create_query'; +// @ts-ignore import { detectReason } from './detect_reason'; +// @ts-ignore import { formatUTCTimestampForTimezone } from '../format_timezone'; +// @ts-ignore import { getTimezone } from '../get_timezone'; +// @ts-ignore import { detectReasonFromException } from './detect_reason_from_exception'; +import { LegacyRequest } from '../../types'; +import { FilebeatResponse } from '../../../common/types/filebeat'; -async function handleResponse(response, req, filebeatIndexPattern, opts) { - const result = { +interface Log { + timestamp?: string; + component?: string; + node?: string; + index?: string; + level?: string; + type?: string; + message?: string; +} + +async function handleResponse( + response: FilebeatResponse, + req: LegacyRequest, + filebeatIndexPattern: string, + opts: { clusterUuid: string; nodeUuid: string; indexUuid: string; start: number; end: number } +) { + const result: { enabled: boolean; logs: Log[]; reason?: any } = { enabled: false, logs: [], }; const timezone = await getTimezone(req); - const hits = get(response, 'hits.hits', []); + const hits = response.hits?.hits ?? []; if (hits.length) { result.enabled = true; result.logs = hits.map((hit) => { const source = hit._source; - const type = get(source, 'event.dataset').split('.')[1]; - const utcTimestamp = moment(get(source, '@timestamp')).valueOf(); + const type = (source.event?.dataset ?? '').split('.')[1]; + const utcTimestamp = moment(source['@timestamp']).valueOf(); return { timestamp: formatUTCTimestampForTimezone(utcTimestamp, timezone), - component: get(source, 'elasticsearch.component'), - node: get(source, 'elasticsearch.node.name'), - index: get(source, 'elasticsearch.index.name'), - level: get(source, 'log.level'), + component: source.elasticsearch?.component, + node: source.elasticsearch?.node?.name, + index: source.elasticsearch?.index?.name, + level: source.log?.level, type, - message: get(source, 'message'), + message: source.message, }; }); } else { @@ -47,10 +69,16 @@ async function handleResponse(response, req, filebeatIndexPattern, opts) { } export async function getLogs( - config, - req, - filebeatIndexPattern, - { clusterUuid, nodeUuid, indexUuid, start, end } + config: { get: (key: string) => any }, + req: LegacyRequest, + filebeatIndexPattern: string, + { + clusterUuid, + nodeUuid, + indexUuid, + start, + end, + }: { clusterUuid: string; nodeUuid: string; indexUuid: string; start: number; end: number } ) { checkParam(filebeatIndexPattern, 'filebeatIndexPattern in logs/getLogs'); @@ -94,9 +122,12 @@ export async function getLogs( const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - let result = {}; + let result: { enabled: boolean; logs: Log[]; reason?: any } = { + enabled: false, + logs: [], + }; try { - const response = await callWithRequest(req, 'search', params); + const response: FilebeatResponse = await callWithRequest(req, 'search', params); result = await handleResponse(response, req, filebeatIndexPattern, { clusterUuid, nodeUuid, diff --git a/x-pack/plugins/monitoring/server/lib/logs/init_infra_source.ts b/x-pack/plugins/monitoring/server/lib/logs/init_infra_source.ts index d1b0417e2851..c0fa93167687 100644 --- a/x-pack/plugins/monitoring/server/lib/logs/init_infra_source.ts +++ b/x-pack/plugins/monitoring/server/lib/logs/init_infra_source.ts @@ -13,7 +13,7 @@ import { InfraPluginSetup } from '../../../../infra/server'; export const initInfraSource = (config: MonitoringConfig, infraPlugin: InfraPluginSetup) => { if (infraPlugin) { - const filebeatIndexPattern = prefixIndexPattern(config, config.ui.logs.index, '*'); + const filebeatIndexPattern = prefixIndexPattern(config, config.ui.logs.index, '*', true); infraPlugin.defineInternalSourceConfiguration(INFRA_SOURCE_ID, { name: 'Elastic Stack Logs', logIndices: { diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_logstash_for_clusters.js b/x-pack/plugins/monitoring/server/lib/logstash/get_logstash_for_clusters.js index 18f4cb07ba02..58155e35ad52 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_logstash_for_clusters.js +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_logstash_for_clusters.js @@ -44,14 +44,14 @@ export function getLogstashForClusters(req, lsIndexPattern, clusters) { const config = req.server.config(); return Bluebird.map(clusters, (cluster) => { - const clusterUuid = cluster.cluster_uuid; + const clusterUuid = get(cluster, 'elasticsearch.cluster.id', cluster.cluster_uuid); const params = { index: lsIndexPattern, size: 0, ignoreUnavailable: true, body: { query: createQuery({ - type: 'logstash_stats', + types: ['stats', 'logstash_stats'], start, end, clusterUuid, @@ -148,6 +148,31 @@ export function getLogstashForClusters(req, lsIndexPattern, clusters) { }, }, }, + pipelines_nested_mb: { + nested: { + path: 'logstash.node.stats.pipelines', + }, + aggs: { + pipelines: { + sum_bucket: { + buckets_path: 'queue_types>num_pipelines', + }, + }, + queue_types: { + terms: { + field: 'logstash.node.stats.pipelines.queue.type', + size: config.get('monitoring.ui.max_bucket_size'), + }, + aggs: { + num_pipelines: { + cardinality: { + field: 'logstash.node.stats.pipelines.id', + }, + }, + }, + }, + }, + }, events_in_total: { sum_bucket: { buckets_path: 'logstash_uuids>events_in_total_per_node', @@ -199,6 +224,11 @@ export function getLogstashForClusters(req, lsIndexPattern, clusters) { maxUptime = get(aggregations, 'max_uptime.value'); } + let types = get(aggregations, 'pipelines_nested_mb.queue_types.buckets', []); + if (!types || types.length === 0) { + types = get(aggregations, 'pipelines_nested.queue_types.buckets', []); + } + return { clusterUuid, stats: { @@ -208,8 +238,10 @@ export function getLogstashForClusters(req, lsIndexPattern, clusters) { avg_memory: memory, avg_memory_used: memoryUsed, max_uptime: maxUptime, - pipeline_count: get(aggregations, 'pipelines_nested.pipelines.value', 0), - queue_types: getQueueTypes(get(aggregations, 'pipelines_nested.queue_types.buckets', [])), + pipeline_count: + get(aggregations, 'pipelines_nested_mb.pipelines.value') || + get(aggregations, 'pipelines_nested.pipelines.value', 0), + queue_types: getQueueTypes(types), versions: logstashVersions.map((versionBucket) => versionBucket.key), }, }; diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_node_info.ts b/x-pack/plugins/monitoring/server/lib/logstash/get_node_info.ts index 60d4da6c8335..954b78c43237 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_node_info.ts +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_node_info.ts @@ -17,14 +17,15 @@ import { STANDALONE_CLUSTER_CLUSTER_UUID } from '../../../common/constants'; import { standaloneClusterFilter } from '../standalone_clusters/standalone_cluster_query_filter'; export function handleResponse(resp: ElasticsearchResponse) { - const source = resp.hits?.hits[0]?._source?.logstash_stats; - const logstash = source?.logstash; + const legacyStats = resp.hits?.hits[0]?._source?.logstash_stats; + const mbStats = resp.hits?.hits[0]?._source?.logstash?.node?.stats; + const logstash = mbStats?.logstash ?? legacyStats?.logstash; const info = merge(logstash, { - availability: calculateAvailability(source?.timestamp), - events: source?.events, - reloads: source?.reloads, - queue_type: source?.queue?.type, - uptime: source?.jvm?.uptime_in_millis, + availability: calculateAvailability(mbStats?.timestamp ?? legacyStats?.timestamp), + events: mbStats?.events ?? legacyStats?.events, + reloads: mbStats?.reloads ?? legacyStats?.reloads, + queue_type: mbStats?.queue?.type ?? legacyStats?.queue?.type, + uptime: mbStats?.jvm?.uptime_in_millis ?? legacyStats?.jvm?.uptime_in_millis, }); return info; } @@ -47,11 +48,17 @@ export function getNodeInfo( ignoreUnavailable: true, filterPath: [ 'hits.hits._source.logstash_stats.events', + 'hits.hits._source.logstash.node.stats.events', 'hits.hits._source.logstash_stats.jvm.uptime_in_millis', + 'hits.hits._source.logstash.node.stats.jvm.uptime_in_millis', 'hits.hits._source.logstash_stats.logstash', + 'hits.hits._source.logstash.node.stats.logstash', 'hits.hits._source.logstash_stats.queue.type', + 'hits.hits._source.logstash.node.stats.queue.type', 'hits.hits._source.logstash_stats.reloads', + 'hits.hits._source.logstash.node.stats.reloads', 'hits.hits._source.logstash_stats.timestamp', + 'hits.hits._source.logstash.node.stats.timestamp', ], body: { query: { diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_nodes.js b/x-pack/plugins/monitoring/server/lib/logstash/get_nodes.js deleted file mode 100644 index 426ffc8bc5a6..000000000000 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_nodes.js +++ /dev/null @@ -1,78 +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 - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { get } from 'lodash'; -import moment from 'moment'; -import { checkParam } from '../error_missing_required'; -import { createQuery } from '../create_query'; -import { calculateAvailability } from '../calculate_availability'; -import { LogstashMetric } from '../metrics'; - -/* - * Get detailed info for Logstash's in the cluster - * for Logstash nodes listing page - * For each instance: - * - name - * - status - * - JVM memory - * - os load average - * - events - * - config reloads - */ -export function getNodes(req, lsIndexPattern, { clusterUuid }) { - checkParam(lsIndexPattern, 'lsIndexPattern in getNodes'); - - const config = req.server.config(); - const start = moment.utc(req.payload.timeRange.min).valueOf(); - const end = moment.utc(req.payload.timeRange.max).valueOf(); - - const params = { - index: lsIndexPattern, - size: config.get('monitoring.ui.max_bucket_size'), // FIXME - ignoreUnavailable: true, - body: { - query: createQuery({ - start, - end, - clusterUuid, - metric: LogstashMetric.getMetricFields(), - type: 'logstash_stats', - }), - collapse: { - field: 'logstash_stats.logstash.uuid', - }, - sort: [{ timestamp: { order: 'desc', unmapped_type: 'long' } }], - _source: [ - 'timestamp', - 'logstash_stats.process.cpu.percent', - 'logstash_stats.jvm.mem.heap_used_percent', - 'logstash_stats.os.cpu.load_average.1m', - 'logstash_stats.events.out', - 'logstash_stats.logstash.http_address', - 'logstash_stats.logstash.name', - 'logstash_stats.logstash.host', - 'logstash_stats.logstash.uuid', - 'logstash_stats.logstash.status', - 'logstash_stats.logstash.pipeline', - 'logstash_stats.reloads', - 'logstash_stats.logstash.version', - ], - }, - }; - - const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - return callWithRequest(req, 'search', params).then((resp) => { - const instances = get(resp, 'hits.hits', []); - - return instances.map((hit) => { - return { - ...get(hit, '_source.logstash_stats'), - availability: calculateAvailability(get(hit, '_source.timestamp')), - }; - }); - }); -} diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_nodes.ts b/x-pack/plugins/monitoring/server/lib/logstash/get_nodes.ts new file mode 100644 index 000000000000..9db59fec2553 --- /dev/null +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_nodes.ts @@ -0,0 +1,168 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import moment from 'moment'; +// @ts-ignore +import { checkParam } from '../error_missing_required'; +// @ts-ignore +import { createQuery } from '../create_query'; +// @ts-ignore +import { calculateAvailability } from '../calculate_availability'; +// @ts-ignore +import { LogstashMetric } from '../metrics'; +import { LegacyRequest } from '../../types'; +import { ElasticsearchResponse } from '../../../common/types/es'; + +interface Logstash { + jvm?: { + mem?: { + heap_used_percent?: number; + }; + }; + logstash?: { + pipeline?: { + batch_size?: number; + workers?: number; + }; + http_address?: string; + name?: string; + host?: string; + uuid?: string; + version?: string; + status?: string; + }; + process?: { + cpu?: { + percent?: number; + }; + }; + os?: { + cpu?: { + load_average?: { + '1m'?: number; + }; + }; + }; + events?: { + out?: number; + }; + reloads?: { + failures?: number; + successes?: number; + }; + availability?: boolean; +} + +/* + * Get detailed info for Logstash's in the cluster + * for Logstash nodes listing page + * For each instance: + * - name + * - status + * - JVM memory + * - os load average + * - events + * - config reloads + */ +export async function getNodes( + req: LegacyRequest, + lsIndexPattern: string, + { clusterUuid }: { clusterUuid: string } +) { + checkParam(lsIndexPattern, 'lsIndexPattern in getNodes'); + + const config = req.server.config(); + const start = moment.utc(req.payload.timeRange.min).valueOf(); + const end = moment.utc(req.payload.timeRange.max).valueOf(); + + const params = { + index: lsIndexPattern, + size: config.get('monitoring.ui.max_bucket_size'), // FIXME + ignoreUnavailable: true, + body: { + query: createQuery({ + start, + end, + clusterUuid, + metric: LogstashMetric.getMetricFields(), + types: ['stats', 'logstash_stats'], + }), + collapse: { + field: 'logstash_stats.logstash.uuid', + }, + sort: [{ timestamp: { order: 'desc', unmapped_type: 'long' } }], + _source: [ + 'timestamp', + '@timestamp', + 'logstash_stats.process.cpu.percent', + 'logstash.node.stats.process.cpu.percent', + 'logstash_stats.jvm.mem.heap_used_percent', + 'logstash.node.stats.jvm.mem.heap_used_percent', + 'logstash_stats.os.cpu.load_average.1m', + 'logstash.node.stats.os.cpu.load_average.1m', + 'logstash_stats.events.out', + 'logstash.node.stats.events.out', + 'logstash_stats.logstash.http_address', + 'logstash.node.stats.logstash.http_address', + 'logstash_stats.logstash.name', + 'logstash.node.stats.logstash.name', + 'logstash_stats.logstash.host', + 'logstash.node.stats.logstash.host', + 'logstash_stats.logstash.uuid', + 'logstash.node.stats.logstash.uuid', + 'logstash_stats.logstash.status', + 'logstash.node.stats.logstash.status', + 'logstash_stats.logstash.pipeline', + 'logstash.node.stats.logstash.pipeline', + 'logstash_stats.reloads', + 'logstash.node.stats.reloads', + 'logstash_stats.logstash.version', + 'logstash.node.stats.logstash.version', + ], + }, + }; + + const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); + const response: ElasticsearchResponse = await callWithRequest(req, 'search', params); + return response.hits?.hits.map((hit) => { + const legacyStats = hit._source.logstash_stats; + const mbStats = hit._source.logstash?.node?.stats; + + const logstash: Logstash = { + logstash: mbStats?.logstash ?? legacyStats?.logstash, + jvm: { + mem: { + heap_used_percent: + mbStats?.jvm?.mem?.heap_used_percent ?? legacyStats?.jvm?.mem?.heap_used_percent, + }, + }, + process: { + cpu: { + percent: mbStats?.process?.cpu?.percent ?? legacyStats?.process?.cpu?.percent, + }, + }, + os: { + cpu: { + load_average: { + '1m': + mbStats?.os?.cpu?.load_average?.['1m'] ?? legacyStats?.os?.cpu?.load_average?.['1m'], + }, + }, + }, + events: { + out: mbStats?.events?.out ?? legacyStats?.events?.out, + }, + reloads: { + failures: mbStats?.reloads?.failures ?? legacyStats?.reloads?.failures, + successes: mbStats?.reloads?.successes ?? legacyStats?.reloads?.successes, + }, + availability: calculateAvailability(hit._source['@timestamp'] ?? hit._source.timestamp), + }; + + return logstash; + }); +} diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_paginated_pipelines.js b/x-pack/plugins/monitoring/server/lib/logstash/get_paginated_pipelines.js index c459c11d17c4..32662ae0efa3 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_paginated_pipelines.js +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_paginated_pipelines.js @@ -103,7 +103,16 @@ async function getPaginatedThroughputData(pipelines, req, lsIndexPattern, throug req, lsIndexPattern, [throughputMetric], - [], + [ + { + bool: { + should: [ + { term: { type: 'logstash_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, + ], { pipeline, }, @@ -133,7 +142,13 @@ async function getPaginatedNodesData(pipelines, req, lsIndexPattern, nodesCountM req, lsIndexPattern, [nodesCountMetric], - [], + [ + { + bool: { + should: [{ term: { type: 'logstash_stats' } }, { term: { 'metricset.name': 'stats' } }], + }, + }, + ], { pageOfPipelines: pipelines }, 2 ); @@ -170,9 +185,24 @@ async function getThroughputPipelines(req, lsIndexPattern, pipelines, throughput const metricsResponse = await Promise.all( pipelines.map((pipeline) => { return new Promise(async (resolve) => { - const data = await getMetrics(req, lsIndexPattern, [throughputMetric], [], { - pipeline, - }); + const data = await getMetrics( + req, + lsIndexPattern, + [throughputMetric], + [ + { + bool: { + should: [ + { term: { type: 'logstash_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, + ], + { + pipeline, + } + ); resolve(reduceData(pipeline, data)); }); @@ -183,9 +213,21 @@ async function getThroughputPipelines(req, lsIndexPattern, pipelines, throughput } async function getNodePipelines(req, lsIndexPattern, pipelines, nodesCountMetric) { - const metricData = await getMetrics(req, lsIndexPattern, [nodesCountMetric], [], { - pageOfPipelines: pipelines, - }); + const metricData = await getMetrics( + req, + lsIndexPattern, + [nodesCountMetric], + [ + { + bool: { + should: [{ term: { type: 'logstash_stats' } }, { term: { 'metricset.name': 'stats' } }], + }, + }, + ], + { + pageOfPipelines: pipelines, + } + ); const metricObject = metricData[nodesCountMetric][0]; const pipelinesData = pipelines.map(({ id }) => { diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_ids.js b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_ids.js index a5d117878103..1521c5d3773d 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_ids.js +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_ids.js @@ -28,7 +28,7 @@ export async function getLogstashPipelineIds( index: logstashIndexPattern, size: 0, ignoreUnavailable: true, - filterPath: ['aggregations.nest.id.buckets'], + filterPath: ['aggregations.nest.id.buckets', 'aggregations.nest_mb.id.buckets'], body: { query: createQuery({ start, @@ -64,14 +64,50 @@ export async function getLogstashPipelineIds( }, }, }, + nest_mb: { + nested: { + path: 'logstash.node.stats.pipelines', + }, + aggs: { + id: { + terms: { + field: 'logstash.node.stats.pipelines.id', + size, + }, + aggs: { + unnest_mb: { + reverse_nested: {}, + aggs: { + nodes: { + terms: { + field: 'logstash.node.stats.logstash.uuid', + size, + }, + }, + }, + }, + }, + }, + }, + }, }, }, }; const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); const response = await callWithRequest(req, 'search', params); - return get(response, 'aggregations.nest.id.buckets', []).map((bucket) => ({ - id: bucket.key, - nodeIds: get(bucket, 'unnest.nodes.buckets', []).map((item) => item.key), - })); + let buckets = get(response, 'aggregations.nest_mb.id.buckets', []); + if (!buckets || buckets.length === 0) { + buckets = get(response, 'aggregations.nest.id.buckets', []); + } + return buckets.map((bucket) => { + let nodeBuckets = get(bucket, 'unnest_mb.nodes.buckets', []); + if (!nodeBuckets || nodeBuckets.length === 0) { + nodeBuckets = get(bucket, 'unnest.nodes.buckets', []); + } + return { + id: bucket.key, + nodeIds: nodeBuckets.map((item) => item.key), + }; + }); } diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_stats_aggregation.js b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_stats_aggregation.js index e17061a4608d..2e35a4639fa5 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_stats_aggregation.js +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_stats_aggregation.js @@ -157,7 +157,7 @@ export function getPipelineStatsAggregation( end = version.lastSeen; const query = createQuery({ - type: 'logstash_stats', + types: ['stats', 'logstash_stats'], start, end, metric: LogstashMetric.getMetricFields(), diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_versions.js b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_versions.js index f4577aa40804..d1121c78407f 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_versions.js +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_versions.js @@ -28,7 +28,7 @@ function fetchPipelineVersions(...args) { }, ]; const query = createQuery({ - type: 'logstash_stats', + types: ['stats', 'logstash_stats'], metric: LogstashMetric.getMetricFields(), clusterUuid, filters, diff --git a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_vertex_stats_aggregation.js b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_vertex_stats_aggregation.js index 56b0842be77e..81d1f2bf5721 100644 --- a/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_vertex_stats_aggregation.js +++ b/x-pack/plugins/monitoring/server/lib/logstash/get_pipeline_vertex_stats_aggregation.js @@ -200,7 +200,7 @@ export function getPipelineVertexStatsAggregation( end = version.lastSeen; const query = createQuery({ - type: 'logstash_stats', + types: ['stats', 'logstash_stats'], start, end, metric: LogstashMetric.getMetricFields(), diff --git a/x-pack/plugins/monitoring/server/lib/metrics/__snapshots__/metrics.test.js.snap b/x-pack/plugins/monitoring/server/lib/metrics/__snapshots__/metrics.test.js.snap index f2ee1b2f6c2a..674e826b579e 100644 --- a/x-pack/plugins/monitoring/server/lib/metrics/__snapshots__/metrics.test.js.snap +++ b/x-pack/plugins/monitoring/server/lib/metrics/__snapshots__/metrics.test.js.snap @@ -3511,6 +3511,7 @@ Object { "format": "0,0.[00]", "getDateHistogramSubAggs": [Function], "label": "Pipeline Throughput", + "mbField": "logstash.node.stats.pipelines.events.out", "timestampField": "logstash_stats.timestamp", "units": "e/s", "uuidField": "logstash_stats.logstash.uuid", diff --git a/x-pack/plugins/monitoring/server/lib/metrics/logstash/classes.js b/x-pack/plugins/monitoring/server/lib/metrics/logstash/classes.js index 8d6bc5cb64c0..234a1ac89f66 100644 --- a/x-pack/plugins/monitoring/server/lib/metrics/logstash/classes.js +++ b/x-pack/plugins/monitoring/server/lib/metrics/logstash/classes.js @@ -263,11 +263,23 @@ export class LogstashPipelineThroughputMetric extends LogstashMetric { unit: NORMALIZED_DERIVATIVE_UNIT, }, }, + metric_mb_deriv: { + derivative: { + buckets_path: 'sum_mb', + gap_policy: 'skip', + unit: NORMALIZED_DERIVATIVE_UNIT, + }, + }, sum: { sum_bucket: { buckets_path: 'by_node_id>nest>pipeline>events_stats', }, }, + sum_mb: { + sum_bucket: { + buckets_path: 'by_node_id>nest_mb>pipeline>events_stats', + }, + }, by_node_id: { terms: { field: 'logstash_stats.logstash.uuid', @@ -296,6 +308,27 @@ export class LogstashPipelineThroughputMetric extends LogstashMetric { }, }, }, + nest_mb: { + nested: { + path: 'logstash.node.stats.pipelines', + }, + aggs: { + pipeline: { + filter: { + term: { + 'logstash.node.stats.pipelines.id': pipeline.id, + }, + }, + aggs: { + events_stats: { + max: { + field: this.mbField, + }, + }, + }, + }, + }, + }, }, }, }; @@ -342,12 +375,42 @@ export class LogstashPipelineNodeCountMetric extends LogstashMetric { }, }, }, + pipelines_mb_nested: { + nested: { + path: 'logstash.node.stats.pipelines', + }, + aggs: { + by_pipeline_id: { + terms: { + field: 'logstash.node.stats.pipelines.id', + size: 1000, + ...termAggExtras, + }, + aggs: { + to_root: { + reverse_nested: {}, + aggs: { + node_count: { + cardinality: { + field: this.field, + }, + }, + }, + }, + }, + }, + }, + }, }; }; this.calculation = (bucket) => { const pipelineNodesCounts = {}; - const pipelineBuckets = _.get(bucket, 'pipelines_nested.by_pipeline_id.buckets', []); + const legacyPipelineBuckets = _.get(bucket, 'pipelines_nested.by_pipeline_id.buckets', []); + const mbPiplineBuckets = _.get(bucket, 'pipelines_mb_nested.by_pipeline_id.buckets', []); + const pipelineBuckets = legacyPipelineBuckets.length + ? legacyPipelineBuckets + : mbPiplineBuckets; pipelineBuckets.forEach((pipelineBucket) => { pipelineNodesCounts[pipelineBucket.key] = _.get(pipelineBucket, 'to_root.node_count.value'); }); diff --git a/x-pack/plugins/monitoring/server/lib/metrics/logstash/metrics.js b/x-pack/plugins/monitoring/server/lib/metrics/logstash/metrics.js index bd344e551ce6..cd518804eeb6 100644 --- a/x-pack/plugins/monitoring/server/lib/metrics/logstash/metrics.js +++ b/x-pack/plugins/monitoring/server/lib/metrics/logstash/metrics.js @@ -430,6 +430,7 @@ export const metrics = { units: 'B', }), logstash_cluster_pipeline_throughput: new LogstashPipelineThroughputMetric({ + mbField: 'logstash.node.stats.pipelines.events.out', field: 'logstash_stats.pipelines.events.out', label: pipelineThroughputLabel, description: pipelineThroughputDescription, diff --git a/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.js b/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.js index 000c26bff48a..36a48002005b 100644 --- a/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.js +++ b/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.js @@ -38,18 +38,20 @@ const getRecentMonitoringDocuments = async (req, indexPatterns, clusterUuid, nod filters.push({ term: { cluster_uuid: clusterUuid } }); } - const nodesClause = []; + const nodesClause = {}; if (nodeUuid) { - nodesClause.push({ - bool: { - should: [ - { term: { 'node_stats.node_id': nodeUuid } }, - { term: { 'kibana_stats.kibana.uuid': nodeUuid } }, - { term: { 'beats_stats.beat.uuid': nodeUuid } }, - { term: { 'logstash_stats.logstash.uuid': nodeUuid } }, - ], + nodesClause.must = [ + { + bool: { + should: [ + { term: { 'node_stats.node_id': nodeUuid } }, + { term: { 'kibana_stats.kibana.uuid': nodeUuid } }, + { term: { 'beats_stats.beat.uuid': nodeUuid } }, + { term: { 'logstash_stats.logstash.uuid': nodeUuid } }, + ], + }, }, - }); + ]; } const params = { @@ -61,7 +63,7 @@ const getRecentMonitoringDocuments = async (req, indexPatterns, clusterUuid, nod query: { bool: { filter: filters, - must: nodesClause, + ...nodesClause, }, }, aggs: { @@ -77,9 +79,21 @@ const getRecentMonitoringDocuments = async (req, indexPatterns, clusterUuid, nod size, }, aggs: { - by_timestamp: { - max: { - field: 'timestamp', + single_type: { + filter: { + bool: { + should: [ + { term: { type: 'node_stats' } }, + { term: { 'metricset.name': 'node_stats' } }, + ], + }, + }, + aggs: { + by_timestamp: { + max: { + field: 'timestamp', + }, + }, }, }, }, @@ -90,9 +104,21 @@ const getRecentMonitoringDocuments = async (req, indexPatterns, clusterUuid, nod size, }, aggs: { - by_timestamp: { - max: { - field: 'timestamp', + single_type: { + filter: { + bool: { + should: [ + { term: { type: 'kibana_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, + aggs: { + by_timestamp: { + max: { + field: 'timestamp', + }, + }, }, }, }, @@ -103,21 +129,33 @@ const getRecentMonitoringDocuments = async (req, indexPatterns, clusterUuid, nod size, }, aggs: { - by_timestamp: { - max: { - field: 'timestamp', + single_type: { + filter: { + bool: { + should: [ + { term: { type: 'beats_stats' } }, + { term: { 'metricset.name': 'beats_stats' } }, + ], + }, }, - }, - beat_type: { - terms: { - field: 'beats_stats.beat.type', - size, - }, - }, - cluster_uuid: { - terms: { - field: 'cluster_uuid', - size, + aggs: { + by_timestamp: { + max: { + field: 'timestamp', + }, + }, + beat_type: { + terms: { + field: 'beats_stats.beat.type', + size, + }, + }, + cluster_uuid: { + terms: { + field: 'cluster_uuid', + size, + }, + }, }, }, }, @@ -128,15 +166,27 @@ const getRecentMonitoringDocuments = async (req, indexPatterns, clusterUuid, nod size, }, aggs: { - by_timestamp: { - max: { - field: 'timestamp', + single_type: { + filter: { + bool: { + should: [ + { term: { type: 'logstash_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, }, - }, - cluster_uuid: { - terms: { - field: 'cluster_uuid', - size, + aggs: { + by_timestamp: { + max: { + field: 'timestamp', + }, + }, + cluster_uuid: { + terms: { + field: 'cluster_uuid', + size, + }, + }, }, }, }, @@ -224,8 +274,18 @@ function getUuidBucketName(productName) { } } +function matchesMetricbeatIndex(metricbeatIndex, index) { + if (index.includes(metricbeatIndex)) { + return true; + } + if (metricbeatIndex.includes('*')) { + return new RegExp(metricbeatIndex).test(index); + } + return false; +} + function isBeatFromAPM(bucket) { - const beatType = get(bucket, 'beat_type'); + const beatType = get(bucket, 'single_type.beat_type'); if (!beatType) { return false; } @@ -364,6 +424,7 @@ export const getCollectionStatus = async ( ) => { const config = req.server.config(); const kibanaUuid = config.get('server.uuid'); + const metricbeatIndex = config.get('monitoring.ui.metricbeat.index'); const size = config.get('monitoring.ui.max_bucket_size'); const hasPermissions = await hasNecessaryPermissions(req); @@ -399,8 +460,18 @@ export const getCollectionStatus = async ( const status = PRODUCTS.reduce((products, product) => { const token = product.token || product.name; - const indexBuckets = indicesBuckets.filter((bucket) => bucket.key.includes(token)); const uuidBucketName = getUuidBucketName(product.name); + const indexBuckets = indicesBuckets.filter((bucket) => { + if (bucket.key.includes(token)) { + return true; + } + if (matchesMetricbeatIndex(metricbeatIndex, bucket.key)) { + if (get(bucket, `${uuidBucketName}.buckets`, []).length) { + return true; + } + } + return false; + }); const productStatus = { totalUniqueInstanceCount: 0, @@ -422,7 +493,9 @@ export const getCollectionStatus = async ( // If there is a single bucket, then they are fully migrated or fully on the internal collector else if (indexBuckets.length === 1) { const singleIndexBucket = indexBuckets[0]; - const isFullyMigrated = singleIndexBucket.key.includes(METRICBEAT_INDEX_NAME_UNIQUE_TOKEN); + const isFullyMigrated = + singleIndexBucket.key.includes(METRICBEAT_INDEX_NAME_UNIQUE_TOKEN) || + matchesMetricbeatIndex(metricbeatIndex, singleIndexBucket.key); const map = isFullyMigrated ? fullyMigratedUuidsMap : internalCollectorsUuidsMap; const uuidBuckets = get(singleIndexBucket, `${uuidBucketName}.buckets`, []); @@ -430,17 +503,18 @@ export const getCollectionStatus = async ( if (shouldSkipBucket(product, bucket)) { continue; } - const { key, by_timestamp: byTimestamp } = bucket; + const { key, single_type: singleType } = bucket; if (!map[key]) { + const { by_timestamp: byTimestamp } = singleType; map[key] = { lastTimestamp: get(byTimestamp, 'value') }; if (product.name === KIBANA_SYSTEM_ID && key === kibanaUuid) { map[key].isPrimary = true; } if (product.name === BEATS_SYSTEM_ID) { - map[key].beatType = get(bucket.beat_type, 'buckets[0].key'); + map[key].beatType = get(bucket.single_type, 'beat_type.buckets[0].key'); } - if (bucket.cluster_uuid) { - map[key].clusterUuid = get(bucket.cluster_uuid, 'buckets[0].key', '') || null; + if (singleType.cluster_uuid) { + map[key].clusterUuid = get(singleType.cluster_uuid, 'buckets[0].key', '') || null; } } } @@ -502,7 +576,8 @@ export const getCollectionStatus = async ( for (const indexBucket of indexBuckets) { const isFullyMigrated = considerAllInstancesMigrated || - indexBucket.key.includes(METRICBEAT_INDEX_NAME_UNIQUE_TOKEN); + indexBucket.key.includes(METRICBEAT_INDEX_NAME_UNIQUE_TOKEN) || + matchesMetricbeatIndex(metricbeatIndex, indexBucket.key); const map = isFullyMigrated ? fullyMigratedUuidsMap : internalCollectorsUuidsMap; const otherMap = !isFullyMigrated ? fullyMigratedUuidsMap : internalCollectorsUuidsMap; @@ -512,7 +587,8 @@ export const getCollectionStatus = async ( continue; } - const { key, by_timestamp: byTimestamp } = bucket; + const { key, single_type: singleType } = bucket; + const { by_timestamp: byTimestamp } = singleType; if (!map[key]) { if (otherMap[key]) { partiallyMigratedUuidsMap[key] = otherMap[key] || {}; @@ -523,10 +599,10 @@ export const getCollectionStatus = async ( map[key].isPrimary = true; } if (product.name === BEATS_SYSTEM_ID) { - map[key].beatType = get(bucket.beat_type, 'buckets[0].key'); + map[key].beatType = get(singleType.beat_type, 'buckets[0].key'); } - if (bucket.cluster_uuid) { - map[key].clusterUuid = get(bucket.cluster_uuid, 'buckets[0].key', '') || null; + if (singleType.cluster_uuid) { + map[key].clusterUuid = get(singleType.cluster_uuid, 'buckets[0].key', '') || null; } } } diff --git a/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.test.js b/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.test.js index 437e07512d46..1029f00455c6 100644 --- a/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.test.js +++ b/x-pack/plugins/monitoring/server/lib/setup/collection/get_collection_status.test.js @@ -34,6 +34,9 @@ const mockReq = ( if (prop === 'server.uuid') { return 'kibana-1234'; } + if (prop === 'monitoring.ui.metricbeat.index') { + return 'metricbeat-*'; + } }), }; }, @@ -104,24 +107,27 @@ describe('getCollectionStatus', () => { buckets: [ { key: '.monitoring-es-7-2019', - es_uuids: { buckets: [{ key: 'es_1' }] }, + es_uuids: { buckets: [{ key: 'es_1', single_type: {} }] }, }, { key: '.monitoring-kibana-7-2019', - kibana_uuids: { buckets: [{ key: 'kibana_1' }] }, + kibana_uuids: { buckets: [{ key: 'kibana_1', single_type: {} }] }, }, { key: '.monitoring-beats-7-2019', beats_uuids: { buckets: [ - { key: 'apm_1', beat_type: { buckets: [{ key: 'apm-server' }] } }, - { key: 'beats_1' }, + { + key: 'apm_1', + single_type: { beat_type: { buckets: [{ key: 'apm-server' }] } }, + }, + { key: 'beats_1', single_type: {} }, ], }, }, { key: '.monitoring-logstash-7-2019', - logstash_uuids: { buckets: [{ key: 'logstash_1' }] }, + logstash_uuids: { buckets: [{ key: 'logstash_1', single_type: {} }] }, }, ], }, @@ -158,19 +164,19 @@ describe('getCollectionStatus', () => { buckets: [ { key: '.monitoring-es-7-mb-2019', - es_uuids: { buckets: [{ key: 'es_1' }] }, + es_uuids: { buckets: [{ key: 'es_1', single_type: {} }] }, }, { key: '.monitoring-kibana-7-mb-2019', - kibana_uuids: { buckets: [{ key: 'kibana_1' }] }, + kibana_uuids: { buckets: [{ key: 'kibana_1', single_type: {} }] }, }, { key: '.monitoring-beats-7-2019', - beats_uuids: { buckets: [{ key: 'beats_1' }] }, + beats_uuids: { buckets: [{ key: 'beats_1', single_type: {} }] }, }, { key: '.monitoring-logstash-7-2019', - logstash_uuids: { buckets: [{ key: 'logstash_1' }] }, + logstash_uuids: { buckets: [{ key: 'logstash_1', single_type: {} }] }, }, ], }, @@ -203,23 +209,30 @@ describe('getCollectionStatus', () => { buckets: [ { key: '.monitoring-es-7-mb-2019', - es_uuids: { buckets: [{ key: 'es_1' }] }, + es_uuids: { buckets: [{ key: 'es_1', single_type: {} }] }, }, { key: '.monitoring-kibana-7-mb-2019', - kibana_uuids: { buckets: [{ key: 'kibana_1' }, { key: 'kibana_2' }] }, + kibana_uuids: { + buckets: [ + { key: 'kibana_1', single_type: {} }, + { key: 'kibana_2', single_type: {} }, + ], + }, }, { key: '.monitoring-kibana-7-2019', - kibana_uuids: { buckets: [{ key: 'kibana_1', by_timestamp: { value: 12 } }] }, + kibana_uuids: { + buckets: [{ key: 'kibana_1', single_type: { by_timestamp: { value: 12 } } }], + }, }, { key: '.monitoring-beats-7-2019', - beats_uuids: { buckets: [{ key: 'beats_1' }] }, + beats_uuids: { buckets: [{ key: 'beats_1', single_type: {} }] }, }, { key: '.monitoring-logstash-7-2019', - logstash_uuids: { buckets: [{ key: 'logstash_1' }] }, + logstash_uuids: { buckets: [{ key: 'logstash_1', single_type: {} }] }, }, ], }, diff --git a/x-pack/plugins/monitoring/server/lib/standalone_clusters/get_standalone_cluster_definition.js b/x-pack/plugins/monitoring/server/lib/standalone_clusters/get_standalone_cluster_definition.js index 79a32f7690e1..ccbc6ccaa78a 100644 --- a/x-pack/plugins/monitoring/server/lib/standalone_clusters/get_standalone_cluster_definition.js +++ b/x-pack/plugins/monitoring/server/lib/standalone_clusters/get_standalone_cluster_definition.js @@ -18,5 +18,15 @@ export const getStandaloneClusterDefinition = () => { count: {}, }, }, + elasticsearch: { + cluster: { + stats: { + nodes: { + jvm: {}, + count: {}, + }, + }, + }, + }, }; }; diff --git a/x-pack/plugins/monitoring/server/lib/standalone_clusters/has_standalone_clusters.js b/x-pack/plugins/monitoring/server/lib/standalone_clusters/has_standalone_clusters.js index 5201be68d989..938610e51693 100644 --- a/x-pack/plugins/monitoring/server/lib/standalone_clusters/has_standalone_clusters.js +++ b/x-pack/plugins/monitoring/server/lib/standalone_clusters/has_standalone_clusters.js @@ -15,7 +15,25 @@ export async function hasStandaloneClusters(req, indexPatterns) { return list; }, []); - const filters = [standaloneClusterFilter]; + const filters = [ + standaloneClusterFilter, + { + bool: { + should: [ + { + terms: { + type: ['logstash_stats', 'logstash_state', 'beats_stats', 'beats_state'], + }, + }, + { + terms: { + 'metricset.name': ['logstash_stats', 'logstash_state', 'beats_stats', 'beats_state'], + }, + }, + ], + }, + }, + ]; // Not every page will contain a time range so check for that if (req.payload.timeRange) { const start = req.payload.timeRange.min; diff --git a/x-pack/plugins/monitoring/server/plugin.ts b/x-pack/plugins/monitoring/server/plugin.ts index 6b47b47a2139..56c654963d34 100644 --- a/x-pack/plugins/monitoring/server/plugin.ts +++ b/x-pack/plugins/monitoring/server/plugin.ts @@ -333,6 +333,7 @@ export class MonitoringPlugin } }, server: { + log: this.log, route: () => {}, config: legacyConfigWrapper, newPlatform: { diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr.ts b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr.ts index 0a4bf98aa8b7..4d36e36d7cd8 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr.ts +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr.ts @@ -13,7 +13,11 @@ import { handleError } from '../../../../lib/errors/handle_error'; // @ts-ignore import { prefixIndexPattern } from '../../../../lib/ccs_utils'; import { INDEX_PATTERN_ELASTICSEARCH } from '../../../../../common/constants'; -import { ElasticsearchResponse, ElasticsearchSource } from '../../../../../common/types/es'; +import { + ElasticsearchResponse, + ElasticsearchLegacySource, + ElasticsearchMetricbeatSource, +} from '../../../../../common/types/es'; import { LegacyRequest } from '../../../../types'; function getBucketScript(max: string, min: string) { @@ -97,9 +101,13 @@ function buildRequest( size: maxBucketSize, filterPath: [ 'hits.hits.inner_hits.by_shard.hits.hits._source.ccr_stats.read_exceptions', + 'hits.hits.inner_hits.by_shard.hits.hits._source.elasticsearch.ccr.read_exceptions', 'hits.hits.inner_hits.by_shard.hits.hits._source.ccr_stats.follower_index', + 'hits.hits.inner_hits.by_shard.hits.hits._source.elasticsearch.ccr.follower.index', 'hits.hits.inner_hits.by_shard.hits.hits._source.ccr_stats.shard_id', + 'hits.hits.inner_hits.by_shard.hits.hits._source.elasticsearch.ccr.follower.shard.number', 'hits.hits.inner_hits.by_shard.hits.hits._source.ccr_stats.time_since_last_read_millis', + 'hits.hits.inner_hits.by_shard.hits.hits._source.elasticsearch.ccr.follower.time_since_last_read.ms', 'aggregations.by_follower_index.buckets.key', 'aggregations.by_follower_index.buckets.leader_index.buckets.key', 'aggregations.by_follower_index.buckets.leader_index.buckets.remote_cluster.buckets.key', @@ -115,10 +123,23 @@ function buildRequest( bool: { must: [ { - term: { - type: { - value: 'ccr_stats', - }, + bool: { + should: [ + { + term: { + type: { + value: 'ccr_stats', + }, + }, + }, + { + term: { + 'metricset.name': { + value: 'ccr', + }, + }, + }, + ], }, }, { @@ -209,29 +230,28 @@ export function ccrRoute(server: { try { const { callWithRequest } = req.server.plugins.elasticsearch.getCluster('monitoring'); - const response: ElasticsearchResponse = await callWithRequest( - req, - 'search', - buildRequest(req, config, esIndexPattern) - ); + const params = buildRequest(req, config, esIndexPattern); + const response: ElasticsearchResponse = await callWithRequest(req, 'search', params); if (!response || Object.keys(response).length === 0) { return { data: [] }; } const fullStats: { - [key: string]: Array>; + [key: string]: Array< + | NonNullable + | NonNullable['ccr'] + >; } = response.hits?.hits.reduce((accum, hit) => { const innerHits = hit.inner_hits?.by_shard.hits?.hits ?? []; - const innerHitsSource = innerHits.map( - (innerHit) => - innerHit._source.ccr_stats as NonNullable - ); - const grouped = groupBy( - innerHitsSource, - (stat) => `${stat.follower_index}:${stat.shard_id}` - ); + const grouped = groupBy(innerHits, (innerHit) => { + if (innerHit._source.ccr_stats) { + return `${innerHit._source.ccr_stats.follower_index}:${innerHit._source.ccr_stats.shard_id}`; + } else if (innerHit._source.elasticsearch?.ccr?.follower?.shard) { + return `${innerHit._source.elasticsearch?.ccr?.follower?.index}:${innerHit._source.elasticsearch?.ccr?.follower?.shard?.number}`; + } + }); return { ...accum, @@ -268,14 +288,25 @@ export function ccrRoute(server: { stat.shards = get(bucket, 'by_shard_id.buckets').reduce( (accum2: any, shardBucket: any) => { - const fullStat = fullStats[`${bucket.key}:${shardBucket.key}`][0] ?? {}; + const fullStat: any = fullStats[`${bucket.key}:${shardBucket.key}`][0]; + const fullLegacyStat: ElasticsearchLegacySource = fullStat._source?.ccr_stats + ? fullStat._source + : null; + const fullMbStat: ElasticsearchMetricbeatSource = fullStat._source?.elasticsearch?.ccr + ? fullStat._source + : null; + const readExceptions = + fullLegacyStat?.ccr_stats?.read_exceptions ?? + fullMbStat?.elasticsearch?.ccr?.read_exceptions ?? + []; const shardStat = { shardId: shardBucket.key, - error: fullStat.read_exceptions?.length - ? fullStat.read_exceptions[0].exception?.type - : null, + error: readExceptions.length ? readExceptions[0].exception?.type : null, opsSynced: get(shardBucket, 'ops_synced.value'), - syncLagTime: fullStat.time_since_last_read_millis, + syncLagTime: + // @ts-ignore + fullLegacyStat?.ccr_stats?.time_since_last_read_millis ?? + fullMbStat?.elasticsearch?.ccr?.follower?.time_since_last_read?.ms, syncLagOps: get(shardBucket, 'lag_ops.value'), syncLagOpsLeader: get(shardBucket, 'leader_lag_ops.value'), syncLagOpsFollower: get(shardBucket, 'follower_lag_ops.value'), diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr_shard.ts b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr_shard.ts index 096f18a154cb..ac5563430fb7 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr_shard.ts +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/ccr_shard.ts @@ -37,9 +37,13 @@ async function getCcrStat(req: LegacyRequest, esIndexPattern: string, filters: u size: 1, filterPath: [ 'hits.hits._source.ccr_stats', + 'hits.hits._source.elasticsearch.ccr', 'hits.hits._source.timestamp', + 'hits.hits._source.@timestamp', 'hits.hits.inner_hits.oldest.hits.hits._source.ccr_stats.operations_written', + 'hits.hits.inner_hits.oldest.hits.hits._source.elasticsearch.ccr.follower.operations_written', 'hits.hits.inner_hits.oldest.hits.hits._source.ccr_stats.failed_read_requests', + 'hits.hits.inner_hits.oldest.hits.hits._source.elasticsearch.ccr.requests.failed.read.count', ], body: { sort: [{ timestamp: { order: 'desc', unmapped_type: 'long' } }], @@ -102,10 +106,23 @@ export function ccrShardRoute(server: { route: (p: any) => void; config: () => { const filters = [ { - term: { - type: { - value: 'ccr_stats', - }, + bool: { + should: [ + { + term: { + type: { + value: 'ccr_stats', + }, + }, + }, + { + term: { + 'metricset.name': { + value: 'ccr', + }, + }, + }, + ], }, }, { @@ -138,16 +155,23 @@ export function ccrShardRoute(server: { route: (p: any) => void; config: () => { getCcrStat(req, esIndexPattern, filters), ]); - const stat = ccrResponse.hits?.hits[0]?._source.ccr_stats ?? {}; - const oldestStat = - ccrResponse.hits?.hits[0].inner_hits?.oldest.hits?.hits[0]?._source.ccr_stats ?? {}; + const legacyStat = ccrResponse.hits?.hits[0]?._source.ccr_stats; + const mbStat = ccrResponse.hits?.hits[0]?._source.elasticsearch?.ccr; + const oldestLegacyStat = + ccrResponse.hits?.hits[0].inner_hits?.oldest.hits?.hits[0]?._source.ccr_stats; + const oldestMBStat = + ccrResponse.hits?.hits[0].inner_hits?.oldest.hits?.hits[0]?._source.elasticsearch?.ccr; + + const leaderIndex = mbStat ? mbStat?.leader?.index : legacyStat?.leader_index; return { metrics, - stat, - formattedLeader: getFormattedLeaderIndex(stat.leader_index ?? ''), - timestamp: ccrResponse.hits?.hits[0]?._source.timestamp, - oldestStat, + stat: mbStat ?? legacyStat, + formattedLeader: getFormattedLeaderIndex(leaderIndex ?? ''), + timestamp: + ccrResponse.hits?.hits[0]?._source['@timestamp'] ?? + ccrResponse.hits?.hits[0]?._source.timestamp, + oldestStat: oldestMBStat ?? oldestLegacyStat, }; } catch (err) { return handleError(err, req); diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/index_detail.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/index_detail.js index 52dfe898efb8..89ca911f4426 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/index_detail.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/index_detail.js @@ -51,7 +51,8 @@ export function esIndexRoute(server) { const filebeatIndexPattern = prefixIndexPattern( config, config.get('monitoring.ui.logs.index'), - '*' + '*', + true ); const isAdvanced = req.payload.is_advanced; const metricSet = isAdvanced ? metricSetAdvanced : metricSetOverview; @@ -78,8 +79,19 @@ export function esIndexRoute(server) { let shardAllocation; if (!isAdvanced) { // TODO: Why so many fields needed for a single component (shard legend)? - const shardFilter = { term: { 'shard.index': indexUuid } }; - const stateUuid = get(cluster, 'cluster_state.state_uuid'); + const shardFilter = { + bool: { + should: [ + { term: { 'shard.index': indexUuid } }, + { term: { 'elasticsearch.index.name': indexUuid } }, + ], + }, + }; + const stateUuid = get( + cluster, + 'elasticsearch.cluster.stats.state.state_uuid', + get(cluster, 'cluster_state.state_uuid') + ); const allocationOptions = { shardFilter, stateUuid, diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/node_detail.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/node_detail.js index 4a4411eeba6a..2122f8ceb221 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/node_detail.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/node_detail.js @@ -52,7 +52,8 @@ export function esNodeRoute(server) { const filebeatIndexPattern = prefixIndexPattern( config, config.get('monitoring.ui.logs.index'), - '*' + '*', + true ); const isAdvanced = req.payload.is_advanced; @@ -76,7 +77,11 @@ export function esNodeRoute(server) { try { const cluster = await getClusterStats(req, esIndexPattern, clusterUuid); - const clusterState = get(cluster, 'cluster_state', { nodes: {} }); + const clusterState = get( + cluster, + 'cluster_state', + get(cluster, 'elasticsearch.cluster.stats.state') + ); const shardStats = await getShardStats(req, esIndexPattern, cluster, { includeIndices: true, includeNodes: true, @@ -91,13 +96,23 @@ export function esNodeRoute(server) { const metrics = await getMetrics(req, esIndexPattern, metricSet, [ { term: { 'source_node.uuid': nodeUuid } }, ]); - let logs; let shardAllocation; if (!isAdvanced) { // TODO: Why so many fields needed for a single component (shard legend)? - const shardFilter = { term: { 'shard.node': nodeUuid } }; - const stateUuid = get(cluster, 'cluster_state.state_uuid'); + const shardFilter = { + bool: { + should: [ + { term: { 'shard.node': nodeUuid } }, + { term: { 'elasticsearch.node.name': nodeUuid } }, + ], + }, + }; + const stateUuid = get( + cluster, + 'cluster_state.state_uuid', + get(cluster, 'elasticsearch.cluster.stats.state.state_uuid') + ); const allocationOptions = { shardFilter, stateUuid, diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/overview.js b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/overview.js index 268e6f77055e..c76513df721b 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/overview.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/elasticsearch/overview.js @@ -43,7 +43,8 @@ export function esOverviewRoute(server) { const filebeatIndexPattern = prefixIndexPattern( config, config.get('monitoring.ui.logs.index'), - '*' + '*', + true ); const start = req.payload.timeRange.min; @@ -53,7 +54,7 @@ export function esOverviewRoute(server) { const [clusterStats, metrics, shardActivity, logs] = await Promise.all([ getClusterStats(req, esIndexPattern, clusterUuid), getMetrics(req, esIndexPattern, metricSet), - getLastRecovery(req, esIndexPattern), + getLastRecovery(req, esIndexPattern, config.get('monitoring.ui.max_bucket_size')), getLogs(config, req, filebeatIndexPattern, { clusterUuid, start, end }), ]); const indicesUnassignedShardStats = await getIndicesUnassignedShardStats( @@ -62,12 +63,13 @@ export function esOverviewRoute(server) { clusterStats ); - return { + const result = { clusterStatus: getClusterStatus(clusterStats, indicesUnassignedShardStats), metrics, logs, shardActivity, }; + return result; } catch (err) { throw handleError(err, req); } diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/kibana/overview.js b/x-pack/plugins/monitoring/server/routes/api/v1/kibana/overview.js index cb522706d46d..cca36d2aad1a 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/kibana/overview.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/kibana/overview.js @@ -43,7 +43,16 @@ export function kibanaOverviewRoute(server) { try { const [clusterStatus, metrics] = await Promise.all([ getKibanaClusterStatus(req, kbnIndexPattern, { clusterUuid }), - getMetrics(req, kbnIndexPattern, metricSet), + getMetrics(req, kbnIndexPattern, metricSet, [ + { + bool: { + should: [ + { term: { type: 'kibana_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, + ]), ]); return { diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/logstash/node.js b/x-pack/plugins/monitoring/server/routes/api/v1/logstash/node.js index 69e90ea1cfa6..b81b4ea796c6 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/logstash/node.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/logstash/node.js @@ -72,7 +72,16 @@ export function logstashNodeRoute(server) { try { const [metrics, nodeSummary] = await Promise.all([ - getMetrics(req, lsIndexPattern, metricSet), + getMetrics(req, lsIndexPattern, metricSet, [ + { + bool: { + should: [ + { term: { type: 'logstash_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, + ]), getNodeInfo(req, lsIndexPattern, { clusterUuid, logstashUuid }), ]); diff --git a/x-pack/plugins/monitoring/server/routes/api/v1/logstash/overview.js b/x-pack/plugins/monitoring/server/routes/api/v1/logstash/overview.js index 7eee7c9cd982..23dd64a1afb7 100644 --- a/x-pack/plugins/monitoring/server/routes/api/v1/logstash/overview.js +++ b/x-pack/plugins/monitoring/server/routes/api/v1/logstash/overview.js @@ -52,7 +52,16 @@ export function logstashOverviewRoute(server) { try { const [metrics, clusterStatus] = await Promise.all([ - getMetrics(req, lsIndexPattern, metricSet), + getMetrics(req, lsIndexPattern, metricSet, [ + { + bool: { + should: [ + { term: { type: 'logstash_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], + }, + }, + ]), getClusterStatus(req, lsIndexPattern, { clusterUuid }), ]); diff --git a/x-pack/plugins/monitoring/server/telemetry_collection/get_logstash_stats.ts b/x-pack/plugins/monitoring/server/telemetry_collection/get_logstash_stats.ts index f4f67a558230..fafb52d6862b 100644 --- a/x-pack/plugins/monitoring/server/telemetry_collection/get_logstash_stats.ts +++ b/x-pack/plugins/monitoring/server/telemetry_collection/get_logstash_stats.ts @@ -288,7 +288,10 @@ export async function fetchLogstashStats( { terms: { cluster_uuid: clusterUuids } }, { bool: { - must: { term: { type: 'logstash_stats' } }, + should: [ + { term: { type: 'logstash_stats' } }, + { term: { 'metricset.name': 'stats' } }, + ], }, }, ], diff --git a/x-pack/plugins/monitoring/server/types.ts b/x-pack/plugins/monitoring/server/types.ts index de3d044ccabc..799214a2931e 100644 --- a/x-pack/plugins/monitoring/server/types.ts +++ b/x-pack/plugins/monitoring/server/types.ts @@ -119,6 +119,7 @@ export interface LegacyRequest { } export interface LegacyServer { + log: Logger; route: (params: any) => void; config: () => { get: (key: string) => string | undefined; diff --git a/x-pack/plugins/security/common/model/authenticated_user.mock.ts b/x-pack/plugins/security/common/model/authenticated_user.mock.ts index 6dad3886401a..cb7d64fe7978 100644 --- a/x-pack/plugins/security/common/model/authenticated_user.mock.ts +++ b/x-pack/plugins/security/common/model/authenticated_user.mock.ts @@ -9,8 +9,10 @@ import type { AuthenticatedUser } from './authenticated_user'; // We omit `roles` here since the original interface defines this field as `readonly string[]` that makes it hard to use // in various mocks that expect mutable string array. -type AuthenticatedUserProps = Partial & { roles: string[] }>; -export function mockAuthenticatedUser(user: AuthenticatedUserProps = {}) { +export type MockAuthenticatedUserProps = Partial< + Omit & { roles: string[] } +>; +export function mockAuthenticatedUser(user: MockAuthenticatedUserProps = {}) { return { username: 'user', email: 'email', diff --git a/x-pack/plugins/security/public/mocks.ts b/x-pack/plugins/security/public/mocks.ts index 0502025e9bae..cac556d04031 100644 --- a/x-pack/plugins/security/public/mocks.ts +++ b/x-pack/plugins/security/public/mocks.ts @@ -6,6 +6,8 @@ */ import { licenseMock } from '../common/licensing/index.mock'; +import type { MockAuthenticatedUserProps } from '../common/model/authenticated_user.mock'; +import { mockAuthenticatedUser } from '../common/model/authenticated_user.mock'; import { authenticationMock } from './authentication/index.mock'; import { navControlServiceMock } from './nav_control/index.mock'; import { createSessionTimeoutMock } from './session/session_timeout.mock'; @@ -26,4 +28,6 @@ function createStartMock() { export const securityMock = { createSetup: createSetupMock, createStart: createStartMock, + createMockAuthenticatedUser: (props: MockAuthenticatedUserProps = {}) => + mockAuthenticatedUser(props), }; diff --git a/x-pack/plugins/security/server/mocks.ts b/x-pack/plugins/security/server/mocks.ts index 07f60ceb890f..c30fcd8b6960 100644 --- a/x-pack/plugins/security/server/mocks.ts +++ b/x-pack/plugins/security/server/mocks.ts @@ -8,6 +8,8 @@ import type { ApiResponse } from '@elastic/elasticsearch'; import { licenseMock } from '../common/licensing/index.mock'; +import type { MockAuthenticatedUserProps } from '../common/model/authenticated_user.mock'; +import { mockAuthenticatedUser } from '../common/model/authenticated_user.mock'; import { auditServiceMock } from './audit/index.mock'; import { authenticationServiceMock } from './authentication/authentication_service.mock'; import { authorizationMock } from './authorization/index.mock'; @@ -62,4 +64,6 @@ export const securityMock = { createSetup: createSetupMock, createStart: createStartMock, createApiResponse: createApiResponseMock, + createMockAuthenticatedUser: (props: MockAuthenticatedUserProps = {}) => + mockAuthenticatedUser(props), }; diff --git a/x-pack/plugins/security_solution/public/common/components/item_details_card/index.tsx b/x-pack/plugins/security_solution/public/common/components/item_details_card/index.tsx index c9fb50295605..47fe9dc175ce 100644 --- a/x-pack/plugins/security_solution/public/common/components/item_details_card/index.tsx +++ b/x-pack/plugins/security_solution/public/common/components/item_details_card/index.tsx @@ -102,16 +102,17 @@ ItemDetailsAction.displayName = 'ItemDetailsAction'; export type ItemDetailsCardProps = PropsWithChildren<{ 'data-test-subj'?: string; + className?: string; }>; export const ItemDetailsCard = memo( - ({ children, 'data-test-subj': dataTestSubj }) => { + ({ children, 'data-test-subj': dataTestSubj, className }) => { const childElements = useMemo( () => groupChildrenByType(children, [ItemDetailsPropertySummary, ItemDetailsAction]), [children] ); return ( - + diff --git a/x-pack/plugins/security_solution/public/common/mock/global_state.ts b/x-pack/plugins/security_solution/public/common/mock/global_state.ts index eac8fb7f6813..538765e9fafa 100644 --- a/x-pack/plugins/security_solution/public/common/mock/global_state.ts +++ b/x-pack/plugins/security_solution/public/common/mock/global_state.ts @@ -39,6 +39,10 @@ export const mockGlobalState: State = { { id: 'error-id-1', title: 'title-1', message: ['error-message-1'] }, { id: 'error-id-2', title: 'title-2', message: ['error-message-2'] }, ], + enableExperimental: { + eventFilteringEnabled: false, + trustedAppsByPolicyEnabled: false, + }, }, hosts: { page: { diff --git a/x-pack/plugins/security_solution/public/management/common/constants.ts b/x-pack/plugins/security_solution/public/management/common/constants.ts index 1b5ddd28d328..2ed00309992a 100644 --- a/x-pack/plugins/security_solution/public/management/common/constants.ts +++ b/x-pack/plugins/security_solution/public/management/common/constants.ts @@ -16,6 +16,7 @@ export const MANAGEMENT_ROUTING_ENDPOINTS_PATH = `${MANAGEMENT_ROUTING_ROOT_PATH export const MANAGEMENT_ROUTING_POLICIES_PATH = `${MANAGEMENT_ROUTING_ROOT_PATH}/:tabName(${AdministrationSubTab.policies})`; export const MANAGEMENT_ROUTING_POLICY_DETAILS_PATH = `${MANAGEMENT_ROUTING_ROOT_PATH}/:tabName(${AdministrationSubTab.policies})/:policyId`; export const MANAGEMENT_ROUTING_TRUSTED_APPS_PATH = `${MANAGEMENT_ROUTING_ROOT_PATH}/:tabName(${AdministrationSubTab.trustedApps})`; +export const MANAGEMENT_ROUTING_EVENT_FILTERS_PATH = `${MANAGEMENT_ROUTING_ROOT_PATH}/:tabName(${AdministrationSubTab.eventFilters})`; // --[ STORE ]--------------------------------------------------------------------------- /** The SIEM global store namespace where the management state will be mounted */ diff --git a/x-pack/plugins/security_solution/public/management/common/routing.ts b/x-pack/plugins/security_solution/public/management/common/routing.ts index 82aa96714d70..d9da1d95dce9 100644 --- a/x-pack/plugins/security_solution/public/management/common/routing.ts +++ b/x-pack/plugins/security_solution/public/management/common/routing.ts @@ -15,6 +15,7 @@ import { MANAGEMENT_DEFAULT_PAGE_SIZE, MANAGEMENT_PAGE_SIZE_OPTIONS, MANAGEMENT_ROUTING_ENDPOINTS_PATH, + MANAGEMENT_ROUTING_EVENT_FILTERS_PATH, MANAGEMENT_ROUTING_POLICIES_PATH, MANAGEMENT_ROUTING_POLICY_DETAILS_PATH, MANAGEMENT_ROUTING_TRUSTED_APPS_PATH, @@ -23,6 +24,7 @@ import { AdministrationSubTab } from '../types'; import { appendSearch } from '../../common/components/link_to/helpers'; import { EndpointIndexUIQueryParams } from '../pages/endpoint_hosts/types'; import { TrustedAppsListPageLocation } from '../pages/trusted_apps/state'; +import { EventFiltersListPageUrlSearchParams } from '../pages/event_filters/types'; // Taken from: https://github.com/microsoft/TypeScript/issues/12936#issuecomment-559034150 type ExactKeys = Exclude extends never ? T1 : never; @@ -178,3 +180,13 @@ export const getTrustedAppsListPath = (location?: Partial +): string => { + const path = generatePath(MANAGEMENT_ROUTING_EVENT_FILTERS_PATH, { + tabName: AdministrationSubTab.eventFilters, + }); + + return `${path}${appendSearch(querystring.stringify(location))}`; +}; diff --git a/x-pack/plugins/security_solution/public/management/common/translations.ts b/x-pack/plugins/security_solution/public/management/common/translations.ts index 063750e96963..d79771df6ff3 100644 --- a/x-pack/plugins/security_solution/public/management/common/translations.ts +++ b/x-pack/plugins/security_solution/public/management/common/translations.ts @@ -21,6 +21,10 @@ export const TRUSTED_APPS_TAB = i18n.translate('xpack.securitySolution.trustedAp defaultMessage: 'Trusted applications', }); +export const EVENT_FILTERS_TAB = i18n.translate('xpack.securitySolution.eventFiltersTab', { + defaultMessage: 'Event filters', +}); + export const BETA_BADGE_LABEL = i18n.translate('xpack.securitySolution.administration.list.beta', { defaultMessage: 'Beta', }); diff --git a/x-pack/plugins/security_solution/public/management/components/administration_list_page.tsx b/x-pack/plugins/security_solution/public/management/components/administration_list_page.tsx index d4358d54d553..02fbb4f4b029 100644 --- a/x-pack/plugins/security_solution/public/management/components/administration_list_page.tsx +++ b/x-pack/plugins/security_solution/public/management/components/administration_list_page.tsx @@ -14,8 +14,18 @@ import { HeaderPage } from '../../common/components/header_page'; import { SiemNavigation } from '../../common/components/navigation'; import { SpyRoute } from '../../common/utils/route/spy_routes'; import { AdministrationSubTab } from '../types'; -import { ENDPOINTS_TAB, TRUSTED_APPS_TAB, BETA_BADGE_LABEL } from '../common/translations'; -import { getEndpointListPath, getTrustedAppsListPath } from '../common/routing'; +import { + ENDPOINTS_TAB, + TRUSTED_APPS_TAB, + BETA_BADGE_LABEL, + EVENT_FILTERS_TAB, +} from '../common/translations'; +import { + getEndpointListPath, + getEventFiltersListPath, + getTrustedAppsListPath, +} from '../common/routing'; +import { useIsExperimentalFeatureEnabled } from '../../common/hooks/use_experimental_features'; /** Ensure that all flyouts z-index in Administation area show the flyout header */ const EuiPanelStyled = styled(EuiPanel)` @@ -34,6 +44,7 @@ interface AdministrationListPageProps { export const AdministrationListPage: FC = memo( ({ beta, title, subtitle, actions, children, headerBackComponent, ...otherProps }) => { + const isEventFilteringEnabled = useIsExperimentalFeatureEnabled('eventFilteringEnabled'); const badgeOptions = !beta ? undefined : { beta: true, text: BETA_BADGE_LABEL }; return ( @@ -66,6 +77,18 @@ export const AdministrationListPage: FC diff --git a/x-pack/plugins/security_solution/public/management/components/hooks/use_test_id_generator.ts b/x-pack/plugins/security_solution/public/management/components/hooks/use_test_id_generator.ts new file mode 100644 index 000000000000..35ba460b7e87 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/hooks/use_test_id_generator.ts @@ -0,0 +1,36 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { useCallback } from 'react'; + +/** + * Returns a callback that can be used to generate new test ids (values for `data-test-subj`) that + * are prefix with a standard string. Will only generate test ids if a prefix is defiened. + * Use it in complex component where you might want to expose a `data-test-subj` prop and use that + * as a prefix to several other test ids inside of the complex component. + * + * @example + * // `props['data-test-subj'] = 'abc'; + * const getTestId = useTestIdGenerator(props['data-test-subj']); + * getTestId('body'); // abc-body + * getTestId('some-other-ui-section'); // abc-some-other-ui-section + * + * @example + * // `props['data-test-subj'] = undefined; + * const getTestId = useTestIdGenerator(props['data-test-subj']); + * getTestId('body'); // undefined + */ +export const useTestIdGenerator = (prefix?: string): ((suffix: string) => string | undefined) => { + return useCallback( + (suffix: string): string | undefined => { + if (prefix) { + return `${prefix}-${suffix}`; + } + }, + [prefix] + ); +}; diff --git a/x-pack/plugins/security_solution/public/management/components/paginated_content/index.ts b/x-pack/plugins/security_solution/public/management/components/paginated_content/index.ts new file mode 100644 index 000000000000..c3fdcae31e12 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/paginated_content/index.ts @@ -0,0 +1,8 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export * from './paginated_content'; diff --git a/x-pack/plugins/security_solution/public/management/components/paginated_content/paginated_content.test.tsx b/x-pack/plugins/security_solution/public/management/components/paginated_content/paginated_content.test.tsx new file mode 100644 index 000000000000..fc5c19e95fb7 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/paginated_content/paginated_content.test.tsx @@ -0,0 +1,148 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { FC } from 'react'; +import { AppContextTestRender, createAppRootMockRenderer } from '../../../common/mock/endpoint'; +import { PaginatedContentProps, PaginatedContent } from './paginated_content'; +import { act, fireEvent } from '@testing-library/react'; + +describe('when using PaginatedContent', () => { + interface Foo { + id: string; + } + + interface ItemComponentProps { + item: Foo; + } + + type ItemComponentType = FC; + + type PropsForPaginatedContent = PaginatedContentProps>; + + const ItemComponent: ItemComponentType = jest.fn((props) => ( +
{'hi'}
+ )); + + const getPropsToRenderItem: PropsForPaginatedContent['itemComponentProps'] = jest.fn( + (item: Foo) => { + return { item }; + } + ); + + let render: ( + additionalProps?: Partial + ) => ReturnType; + let renderResult: ReturnType; + let onChangeHandler: PropsForPaginatedContent['onChange']; + + beforeEach(() => { + const mockedContext = createAppRootMockRenderer(); + + onChangeHandler = jest.fn(); + + render = (additionalProps) => { + const props: PropsForPaginatedContent = { + items: Array.from({ length: 10 }, (v, i) => ({ id: String(i) })), + ItemComponent, + onChange: onChangeHandler, + itemComponentProps: getPropsToRenderItem, + pagination: { + pageIndex: 0, + pageSizeOptions: [5, 10, 20], + pageSize: 5, + totalItemCount: 10, + }, + 'data-test-subj': 'test', + ...(additionalProps ?? {}), + }; + renderResult = mockedContext.render( {...props} />); + return renderResult; + }; + }); + + it('should render items using provided component', () => { + render({ itemId: 'id' }); // Using `itemsId` prop just to ensure that branch of code is executed + + expect(renderResult.baseElement.querySelectorAll('.foo-item').length).toBe(10); + expect(getPropsToRenderItem).toHaveBeenNthCalledWith(1, { id: '0' }); + expect(ItemComponent).toHaveBeenNthCalledWith(1, { item: { id: '0' } }, {}); + expect(renderResult.getByTestId('test-footer')).not.toBeNull(); + }); + + it('should show default "no items found message" when no data to display', () => { + render({ items: [] }); + + expect(renderResult.getByText('No items found')).not.toBeNull(); + }); + + it('should allow for a custom no items found message to be displayed', () => { + render({ items: [], noItemsMessage: 'no Foo found!' }); + + expect(renderResult.getByText('no Foo found!')).not.toBeNull(); + }); + + it('should show error if one is defined (even if `items` is not empty)', () => { + render({ error: 'something is wrong with foo' }); + + expect(renderResult.getByText('something is wrong with foo')).not.toBeNull(); + expect(renderResult.baseElement.querySelectorAll('.foo-item').length).toBe(0); + }); + + it('should show a progress bar if `loading` is set to true', () => { + render({ loading: true }); + + expect(renderResult.baseElement.querySelector('.euiProgress')).not.toBeNull(); + }); + + it('should NOT show a pagination footer if no props are defined for `pagination`', () => { + render({ pagination: undefined }); + + expect(renderResult.queryByTestId('test-footer')).toBeNull(); + }); + + it('should apply `contentClassName` if one is defined', () => { + render({ contentClassName: 'foo-content' }); + + expect(renderResult.baseElement.querySelector('.foo-content')).not.toBeNull(); + }); + + it('should call onChange when pagination is changed', () => { + render(); + + act(() => { + fireEvent.click(renderResult.getByTestId('pagination-button-next')); + }); + + expect(onChangeHandler).toHaveBeenCalledWith({ + pageIndex: 1, + pageSize: 5, + }); + }); + + it('should call onChange when page size is changed', () => { + render(); + + act(() => { + fireEvent.click(renderResult.getByTestId('tablePaginationPopoverButton')); + }); + + act(() => { + fireEvent.click(renderResult.getByTestId('tablePagination-10-rows')); + }); + + expect(onChangeHandler).toHaveBeenCalledWith({ + pageIndex: 0, + pageSize: 10, + }); + }); + + it('should ignore items, error, noItemsMessage when `children` is used', () => { + render({ children:
{'children being used here'}
}); + expect(renderResult.getByTestId('custom-content')).not.toBeNull(); + expect(renderResult.baseElement.querySelectorAll('.foo-item').length).toBe(0); + }); +}); diff --git a/x-pack/plugins/security_solution/public/management/components/paginated_content/paginated_content.tsx b/x-pack/plugins/security_solution/public/management/components/paginated_content/paginated_content.tsx new file mode 100644 index 000000000000..ce5d26feb3e7 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/paginated_content/paginated_content.tsx @@ -0,0 +1,230 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { + ComponentProps, + ComponentType, + FunctionComponent, + Key, + memo, + ReactElement, + ReactNode, + useCallback, + useMemo, + useState, +} from 'react'; +import { + CommonProps, + EuiEmptyPrompt, + EuiIcon, + EuiProgress, + EuiSpacer, + EuiTablePagination, + EuiTablePaginationProps, + EuiText, + Pagination, +} from '@elastic/eui'; +import styled from 'styled-components'; +import { FormattedMessage } from '@kbn/i18n/react'; +import { v4 as generateUUI } from 'uuid'; +import { useTestIdGenerator } from '../hooks/use_test_id_generator'; + +// eslint-disable-next-line @typescript-eslint/no-explicit-any +type ComponentWithAnyProps = ComponentType; + +export interface PaginatedContentProps extends CommonProps { + items: T[]; + onChange: (changes: { pageIndex: number; pageSize: number }) => void; + /** + * The React Component that will be used to render the `items`. use `itemComponentProps` below to + * define the props that will be given to this component + */ + ItemComponent: C; + /** A callback that will be used to retrieve the props for the `ItemComponent` */ + itemComponentProps: (item: T) => ComponentProps; + /** The item attribute that holds its unique value */ + itemId?: keyof T; + loading?: boolean; + pagination?: Pagination; + noItemsMessage?: ReactNode; + /** Error to be displayed in the component's body area. Used when `items` is empty and `children` is not used */ + error?: ReactNode; + /** Classname applied to the area that holds the content items */ + contentClassName?: string; + /** + * Children can be used to define custom content if the default creation of items is not sufficient + * to accommodate a use case. + * + * **IMPORTANT** If defined several input props will be ignored, like `items`, `noItemsMessage` + * and `error` among others + */ + children?: ReactNode; +} + +// Using `memo()` on generic typed Functional component is not supported (generic is lost), +// Work around below was created based on this discussion: +// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/37087#issuecomment-568218789 +interface TypedGenericComponentMemo { + (p: PaginatedContentProps): ReactElement< + PaginatedContentProps, + FunctionComponent> + >; + + displayName: string; +} + +const RootContainer = styled.div` + position: relative; + + .body { + min-height: ${({ theme }) => theme.eui.gutterTypes.gutterExtraLarge}; + + &-content { + position: relative; + } + } +`; + +const DefaultNoItemsFound = memo(() => { + return ( + + } + /> + ); +}); + +DefaultNoItemsFound.displayName = 'DefaultNoItemsFound'; + +const ErrorMessage = memo<{ message: string }>(({ message }) => { + return ( + + + {message} + + + ); +}); + +ErrorMessage.displayName = 'ErrorMessage'; + +/** + * A generic component to display paginated content. Provides "Items per Page" as well as pagination + * controls similar to the BasicTable of EUI. The props supported by this component (for the most part) + * support those that BasicTable accept. + */ +// eslint-disable-next-line react/display-name +export const PaginatedContent = memo( + ({ + items, + ItemComponent, + itemComponentProps, + itemId, + onChange, + pagination, + loading, + noItemsMessage, + error, + contentClassName, + 'data-test-subj': dataTestSubj, + 'aria-label': ariaLabel, + className, + children, + }: PaginatedContentProps) => { + const [itemKeys] = useState>(new WeakMap()); + + const getTestId = useTestIdGenerator(dataTestSubj); + + const pageCount = useMemo( + () => Math.ceil((pagination?.totalItemCount || 1) / (pagination?.pageSize || 1)), + [pagination?.pageSize, pagination?.totalItemCount] + ); + + const handleItemsPerPageChange: EuiTablePaginationProps['onChangeItemsPerPage'] = useCallback( + (pageSize) => { + onChange({ pageSize, pageIndex: pagination?.pageIndex || 0 }); + }, + [onChange, pagination?.pageIndex] + ); + + const handlePageChange: EuiTablePaginationProps['onChangePage'] = useCallback( + (pageIndex) => { + onChange({ pageIndex, pageSize: pagination?.pageSize || 10 }); + }, + [onChange, pagination?.pageSize] + ); + + const generatedBodyItemContent = useMemo(() => { + if (error) { + return 'string' === typeof error ? : error; + } + + // This casting here is needed in order to avoid the following a TS error (TS2322) + // stating that the attributes given to the `ItemComponent` are not assignable to + // type 'LibraryManagedAttributes' + // @see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/34553 + const Item = ItemComponent as ComponentType>; + + if (items.length) { + return items.map((item) => { + let key: Key; + + if (itemId) { + key = (item[itemId] as unknown) as Key; + } else { + if (itemKeys.has(item)) { + key = itemKeys.get(item)!; + } else { + key = generateUUI(); + itemKeys.set(item, key); + } + } + + return ; + }); + } + + return noItemsMessage || ; + }, [ItemComponent, error, itemComponentProps, itemId, itemKeys, items, noItemsMessage]); + + return ( + + {loading && } + +
+ +
+ {children ? children : generatedBodyItemContent} +
+
+ + {pagination && ( +
+ + + +
+ )} +
+ ); + } + // See type description above to understand why this casting is needed +) as TypedGenericComponentMemo; + +PaginatedContent.displayName = 'PaginatedContent'; diff --git a/x-pack/plugins/security_solution/public/management/pages/event_filters/index.tsx b/x-pack/plugins/security_solution/public/management/pages/event_filters/index.tsx new file mode 100644 index 000000000000..86c2f2364961 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/pages/event_filters/index.tsx @@ -0,0 +1,21 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Route, Switch } from 'react-router-dom'; +import React from 'react'; +import { NotFoundPage } from '../../../app/404'; +import { MANAGEMENT_ROUTING_EVENT_FILTERS_PATH } from '../../common/constants'; +import { EventFiltersListPage } from './view/event_filters_list_page'; + +export const EventFiltersContainer = () => { + return ( + + + + + ); +}; diff --git a/x-pack/plugins/security_solution/public/management/pages/event_filters/types.ts b/x-pack/plugins/security_solution/public/management/pages/event_filters/types.ts new file mode 100644 index 000000000000..0aceca88efbc --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/pages/event_filters/types.ts @@ -0,0 +1,11 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export interface EventFiltersListPageUrlSearchParams { + page_index: number; + page_size: number; +} diff --git a/x-pack/plugins/security_solution/public/management/pages/event_filters/view/event_filters_list_page.tsx b/x-pack/plugins/security_solution/public/management/pages/event_filters/view/event_filters_list_page.tsx new file mode 100644 index 000000000000..a1a31f692749 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/pages/event_filters/view/event_filters_list_page.tsx @@ -0,0 +1,32 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { memo } from 'react'; +import { i18n } from '@kbn/i18n'; +import { FormattedMessage } from '@kbn/i18n/react'; +import { AdministrationListPage } from '../../../components/administration_list_page'; + +export const EventFiltersListPage = memo(() => { + return ( + + } + subtitle={i18n.translate('xpack.securitySolution.eventFilters.aboutInfo', { + defaultMessage: 'Something here about Event Filtering....', + })} + > + {/* */} + + ); +}); + +EventFiltersListPage.displayName = 'EventFiltersListPage'; diff --git a/x-pack/plugins/security_solution/public/management/pages/index.tsx b/x-pack/plugins/security_solution/public/management/pages/index.tsx index b9cb3e72c7ec..9e1a90a031d9 100644 --- a/x-pack/plugins/security_solution/public/management/pages/index.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/index.tsx @@ -14,6 +14,7 @@ import { EuiText, EuiEmptyPrompt } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n/react'; import { MANAGEMENT_ROUTING_ENDPOINTS_PATH, + MANAGEMENT_ROUTING_EVENT_FILTERS_PATH, MANAGEMENT_ROUTING_POLICIES_PATH, MANAGEMENT_ROUTING_ROOT_PATH, MANAGEMENT_ROUTING_TRUSTED_APPS_PATH, @@ -28,14 +29,22 @@ import { GetUrlForApp } from '../../common/components/navigation/types'; import { AdministrationRouteSpyState } from '../../common/utils/route/types'; import { ADMINISTRATION } from '../../app/home/translations'; import { AdministrationSubTab } from '../types'; -import { ENDPOINTS_TAB, POLICIES_TAB, TRUSTED_APPS_TAB } from '../common/translations'; +import { + ENDPOINTS_TAB, + EVENT_FILTERS_TAB, + POLICIES_TAB, + TRUSTED_APPS_TAB, +} from '../common/translations'; import { SpyRoute } from '../../common/utils/route/spy_routes'; import { useIngestEnabledCheck } from '../../common/hooks/endpoint/ingest_enabled'; +import { EventFiltersContainer } from './event_filters'; +import { useIsExperimentalFeatureEnabled } from '../../common/hooks/use_experimental_features'; const TabNameMappedToI18nKey: Record = { [AdministrationSubTab.endpoints]: ENDPOINTS_TAB, [AdministrationSubTab.policies]: POLICIES_TAB, [AdministrationSubTab.trustedApps]: TRUSTED_APPS_TAB, + [AdministrationSubTab.eventFilters]: EVENT_FILTERS_TAB, }; export function getBreadcrumbs( @@ -88,6 +97,7 @@ NoPermissions.displayName = 'NoPermissions'; export const ManagementContainer = memo(() => { const history = useHistory(); + const isEventFilteringEnabled = useIsExperimentalFeatureEnabled('eventFilteringEnabled'); const { allEnabled: isIngestEnabled } = useIngestEnabledCheck(); if (!isIngestEnabled) { @@ -99,6 +109,11 @@ export const ManagementContainer = memo(() => { + + {isEventFilteringEnabled && ( + + )} + ( onVisited, 'data-test-subj': dataTestSubj, }) => { - const getTestId = useCallback((suffix: string) => dataTestSubj && `${dataTestSubj}-${suffix}`, [ - dataTestSubj, - ]); + const getTestId = useTestIdGenerator(dataTestSubj); const fieldOptions = useMemo>>(() => { const getDropdownDisplay = (field: ConditionEntryField) => ( diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/condition_group/index.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/condition_group/index.tsx index 8b558da6790e..0fa3560670a0 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/condition_group/index.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/condition_group/index.tsx @@ -5,13 +5,14 @@ * 2.0. */ -import React, { memo, useCallback } from 'react'; +import React, { memo } from 'react'; import { EuiButton, EuiFlexGroup, EuiFlexItem, EuiHideFor, EuiSpacer } from '@elastic/eui'; import styled from 'styled-components'; import { FormattedMessage } from '@kbn/i18n/react'; import { ConditionEntry, OperatingSystem } from '../../../../../../../common/endpoint/types'; import { AndOrBadge } from '../../../../../../common/components/and_or_badge'; import { ConditionEntryInput, ConditionEntryInputProps } from '../condition_entry_input'; +import { useTestIdGenerator } from '../../../../../components/hooks/use_test_id_generator'; const ConditionGroupFlexGroup = styled(EuiFlexGroup)` // The positioning of the 'and-badge' is done by using the EuiButton's height and adding on to it @@ -63,14 +64,8 @@ export const ConditionGroup = memo( onVisited, 'data-test-subj': dataTestSubj, }) => { - const getTestId = useCallback( - (suffix: string): string | undefined => { - if (dataTestSubj) { - return `${dataTestSubj}-${suffix}`; - } - }, - [dataTestSubj] - ); + const getTestId = useTestIdGenerator(dataTestSubj); + return ( {entries.length > 1 && ( diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_flyout.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_flyout.tsx index 8a0d60275bcf..8078a21ccb33 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_flyout.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_flyout.tsx @@ -44,6 +44,7 @@ import { ABOUT_TRUSTED_APPS, CREATE_TRUSTED_APP_ERROR } from '../translations'; import { defaultNewTrustedApp } from '../../store/builders'; import { getTrustedAppsListPath } from '../../../../common/routing'; import { useToasts } from '../../../../../common/lib/kibana'; +import { useTestIdGenerator } from '../../../../components/hooks/use_test_id_generator'; type CreateTrustedAppFlyoutProps = Omit; export const CreateTrustedAppFlyout = memo( @@ -81,14 +82,7 @@ export const CreateTrustedAppFlyout = memo( }; }, [isLoadingPolicies, policyList]); - const getTestId = useCallback( - (suffix: string): string | undefined => { - if (dataTestSubj) { - return `${dataTestSubj}-${suffix}`; - } - }, - [dataTestSubj] - ); + const getTestId = useTestIdGenerator(dataTestSubj); const handleCancelClick = useCallback(() => { if (creationInProgress) { diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_form.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_form.tsx index e03c2aad7621..fe1b40aac232 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_form.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/create_trusted_app_form.tsx @@ -42,6 +42,7 @@ import { EffectedPolicySelection, EffectedPolicySelectProps, } from './effected_policy_select'; +import { useTestIdGenerator } from '../../../../components/hooks/use_test_id_generator'; const OPERATING_SYSTEMS: readonly OperatingSystem[] = [ OperatingSystem.MAC, @@ -212,14 +213,7 @@ export const CreateTrustedAppForm = memo( > >({}); - const getTestId = useCallback( - (suffix: string): string | undefined => { - if (dataTestSubj) { - return `${dataTestSubj}-${suffix}`; - } - }, - [dataTestSubj] - ); + const getTestId = useTestIdGenerator(dataTestSubj); const notifyOfChange = useCallback( (updatedFormValues: TrustedAppFormState['item']) => { diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/effected_policy_select/effected_policy_select.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/effected_policy_select/effected_policy_select.tsx index 30c259b47c7b..7ec8d311a915 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/effected_policy_select/effected_policy_select.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/effected_policy_select/effected_policy_select.tsx @@ -26,6 +26,7 @@ import { getPolicyDetailPath } from '../../../../../common/routing'; import { useFormatUrl } from '../../../../../../common/components/link_to'; import { SecurityPageName } from '../../../../../../../common/constants'; import { LinkToApp } from '../../../../../../common/components/endpoint/link_to_app'; +import { useTestIdGenerator } from '../../../../../components/hooks/use_test_id_generator'; const NOOP = () => {}; const DEFAULT_LIST_PROPS: EuiSelectableProps['listProps'] = { bordered: true, showIcons: false }; @@ -69,14 +70,7 @@ export const EffectedPolicySelect = memo( }) => { const { formatUrl } = useFormatUrl(SecurityPageName.administration); - const getTestId = useCallback( - (suffix): string | undefined => { - if (dataTestSubj) { - return `${dataTestSubj}-${suffix}`; - } - }, - [dataTestSubj] - ); + const getTestId = useTestIdGenerator(dataTestSubj); const selectableOptions: EffectedPolicyOption[] = useMemo(() => { const isPolicySelected = new Set(selected.map((policy) => policy.id)); diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/logical_condition/logical_condition_builder.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/logical_condition/logical_condition_builder.tsx index 180115fcfc0d..d0a31bff2b63 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/logical_condition/logical_condition_builder.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/logical_condition/logical_condition_builder.tsx @@ -5,10 +5,11 @@ * 2.0. */ -import React, { memo, useCallback } from 'react'; +import React, { memo } from 'react'; import { CommonProps, EuiText, EuiPanel } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n/react'; import { ConditionGroup, ConditionGroupProps } from '../condition_group'; +import { useTestIdGenerator } from '../../../../../components/hooks/use_test_id_generator'; export type LogicalConditionBuilderProps = CommonProps & ConditionGroupProps; export const LogicalConditionBuilder = memo( @@ -23,14 +24,8 @@ export const LogicalConditionBuilder = memo( onVisited, 'data-test-subj': dataTestSubj, }) => { - const getTestId = useCallback( - (suffix: string): string | undefined => { - if (dataTestSubj) { - return `${dataTestSubj}-${suffix}`; - } - }, - [dataTestSubj] - ); + const getTestId = useTestIdGenerator(dataTestSubj); + return (
diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/__snapshots__/index.test.tsx.snap b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/__snapshots__/index.test.tsx.snap index 220494b3a569..c4a58a3b99d3 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/__snapshots__/index.test.tsx.snap +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/__snapshots__/index.test.tsx.snap @@ -1,27 +1,155 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`TrustedAppsGrid renders correctly initially 1`] = ` +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
- No items found +
+ + + No items found + +
+ +
+
+
+
+
+
+
+ +
+
+
+
+ +
+
@@ -29,28 +157,161 @@ exports[`TrustedAppsGrid renders correctly initially 1`] = ` `; exports[`TrustedAppsGrid renders correctly when failed loading data for the first time 1`] = ` +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
- - - Intenal Server Error
+
+
+
+ + + Intenal Server Error +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+
@@ -58,28 +319,266 @@ exports[`TrustedAppsGrid renders correctly when failed loading data for the firs `; exports[`TrustedAppsGrid renders correctly when failed loading data for the second time 1`] = ` +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
- - - Intenal Server Error
+
+
+
+ + + Intenal Server Error +
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+
@@ -87,57 +586,74 @@ exports[`TrustedAppsGrid renders correctly when failed loading data for the seco `; exports[`TrustedAppsGrid renders correctly when loaded data 1`] = ` -.c0 { +.c2 { + background-color: #f5f7fa; padding: 16px; } -.c3 { +.c5 { padding: 16px; } -.c1.c1.c1 { +.c3.c3.c3 { width: 40%; } -.c2.c2.c2 { +.c4.c4.c4 { width: 60%; } +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
-
+
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
-
+
@@ -3064,34 +3540,158 @@ exports[`TrustedAppsGrid renders correctly when loaded data 1`] = ` `; exports[`TrustedAppsGrid renders correctly when loading data for the first time 1`] = ` +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
-
-
- No items found +
+ + + No items found + +
+ +
+
+
+
+
+
+
+ +
+
+
+
+ +
+
@@ -3099,64 +3699,77 @@ exports[`TrustedAppsGrid renders correctly when loading data for the first time `; exports[`TrustedAppsGrid renders correctly when loading data for the second time 1`] = ` -.c0 { +.c2 { + background-color: #f5f7fa; padding: 16px; } -.c3 { +.c5 { padding: 16px; } -.c1.c1.c1 { +.c3.c3.c3 { width: 40%; } -.c2.c2.c2 { +.c4.c4.c4 { width: 60%; } +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
-
-
-
+
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
-
+
@@ -6083,57 +6656,74 @@ exports[`TrustedAppsGrid renders correctly when loading data for the second time `; exports[`TrustedAppsGrid renders correctly when new page and page size set (not loading yet) 1`] = ` -.c0 { +.c2 { + background-color: #f5f7fa; padding: 16px; } -.c3 { +.c5 { padding: 16px; } -.c1.c1.c1 { +.c3.c3.c3 { width: 40%; } -.c2.c2.c2 { +.c4.c4.c4 { width: 60%; } +.c1 { + position: relative; +} + +.c1 .body { + min-height: 40px; +} + +.c1 .body-content { + position: relative; +} + +.c0 .trusted-app + .trusted-app { + margin-top: 24px; +} +
-
+
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
Name
OS
Date Created
1 minute ago
Created By
Description
-
-
-
+
diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.test.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.test.tsx index 8a98903dd998..4ed9a3c5a011 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.test.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.test.tsx @@ -8,7 +8,6 @@ import { render } from '@testing-library/react'; import React from 'react'; import { Provider } from 'react-redux'; -import { ThemeProvider } from 'styled-components'; import { createSampleTrustedApp, @@ -21,13 +20,7 @@ import { } from '../../../test_utils'; import { TrustedAppsGrid } from '.'; -import { getMockTheme } from '../../../../../../common/lib/kibana/kibana_react.mock'; - -const mockTheme = getMockTheme({ - eui: { - euiSize: '16px', - }, -}); +import { EuiThemeProvider } from '../../../../../../../../../../src/plugins/kibana_react/common'; jest.mock('@elastic/eui/lib/services/accessibility/html_id_generator', () => ({ htmlIdGenerator: () => () => 'mockId', @@ -38,7 +31,7 @@ const now = 111111; const renderList = (store: ReturnType) => { const Wrapper: React.FC = ({ children }) => ( - {children} + {children} ); diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.tsx b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.tsx index b1be9ba295dd..8d8b52ac6235 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_apps_grid/index.tsx @@ -5,18 +5,10 @@ * 2.0. */ -import React, { FC, memo, useCallback, useEffect } from 'react'; -import { - EuiTablePagination, - EuiFlexGroup, - EuiFlexItem, - EuiProgress, - EuiIcon, - EuiText, - EuiSpacer, -} from '@elastic/eui'; +import React, { memo, useCallback } from 'react'; import { useHistory } from 'react-router-dom'; +import styled from 'styled-components'; import { Pagination } from '../../../state'; import { @@ -33,49 +25,26 @@ import { useTrustedAppsStoreActionCallback, } from '../../hooks'; -import { NO_RESULTS_MESSAGE } from '../../translations'; - import { TrustedAppCard, TrustedAppCardProps } from '../trusted_app_card'; import { getTrustedAppsListPath } from '../../../../../common/routing'; +import { + PaginatedContent, + PaginatedContentProps, +} from '../../../../../components/paginated_content'; +import { TrustedApp } from '../../../../../../../common/endpoint/types'; export interface PaginationBarProps { pagination: Pagination; onChange: (pagination: { size: number; index: number }) => void; } -const PaginationBar = ({ pagination, onChange }: PaginationBarProps) => { - const pageCount = Math.ceil(pagination.totalItemCount / pagination.pageSize); +type TrustedAppCardType = typeof TrustedAppCard; - useEffect(() => { - if (pageCount > 0 && pageCount < pagination.pageIndex + 1) { - onChange({ index: pageCount - 1, size: pagination.pageSize }); - } - }, [pageCount, onChange, pagination]); - - return ( -
- onChange({ index: 0, size }), [onChange])} - onChangePage={useCallback((index) => onChange({ index, size: pagination.pageSize }), [ - pagination.pageSize, - onChange, - ])} - /> -
- ); -}; - -const GridMessage: FC = ({ children }) => ( -
- - {children} - -
-); +const RootWrapper = styled.div` + .trusted-app + .trusted-app { + margin-top: ${({ theme }) => theme.eui.spacerSizes.l}; + } +`; export const TrustedAppsGrid = memo(() => { const history = useHistory(); @@ -103,55 +72,32 @@ export const TrustedAppsGrid = memo(() => { [history, location] ); - const handlePaginationChange = useTrustedAppsNavigateCallback(({ index, size }) => ({ - page_index: index, - page_size: size, + const handlePaginationChange: PaginatedContentProps< + TrustedApp, + TrustedAppCardType + >['onChange'] = useTrustedAppsNavigateCallback(({ pageIndex, pageSize }) => ({ + page_index: pageIndex, + page_size: pageSize, })); return ( - - {isLoading && ( - - - - )} - - {error && ( - - {error} - - )} - {!error && listItems.length === 0 && ( - - {NO_RESULTS_MESSAGE} - - )} - {!error && listItems.length > 0 && ( - <> - - - - {listItems.map((item) => ( - - - - ))} - - - )} - - {!error && pagination.totalItemCount > 0 && ( - - - - - - )} - + + + items={listItems as TrustedApp[]} + onChange={handlePaginationChange} + ItemComponent={TrustedAppCard} + itemComponentProps={(ta) => ({ + trustedApp: ta, + onDelete: handleTrustedAppDelete, + onEdit: handleTrustedAppEdit, + className: 'trusted-app', + })} + loading={isLoading} + itemId="id" + error={error} + pagination={pagination} + /> + ); }); diff --git a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/translations.ts b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/translations.ts index 57ca80930ad7..c3e2a372fd6d 100644 --- a/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/translations.ts +++ b/x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/translations.ts @@ -150,10 +150,6 @@ export const LIST_VIEW_TOGGLE_LABEL = i18n.translate( } ); -export const NO_RESULTS_MESSAGE = i18n.translate('xpack.securitySolution.trustedapps.noResults', { - defaultMessage: 'No items found', -}); - export const CREATE_TRUSTED_APP_ERROR: { [K in string]: string } = { [`duplicatedEntry.${ConditionEntryField.HASH}`]: i18n.translate( 'xpack.securitySolution.trustedapps.logicalConditionBuilder.entry.field.error.duplicated.hash', diff --git a/x-pack/plugins/security_solution/public/management/types.ts b/x-pack/plugins/security_solution/public/management/types.ts index 902010a97603..460a30eaca78 100644 --- a/x-pack/plugins/security_solution/public/management/types.ts +++ b/x-pack/plugins/security_solution/public/management/types.ts @@ -32,6 +32,7 @@ export enum AdministrationSubTab { endpoints = 'endpoints', policies = 'policy', trustedApps = 'trusted_apps', + eventFilters = 'event_filters', } /** diff --git a/x-pack/plugins/snapshot_restore/__jest__/client_integration/helpers/repository_add.helpers.ts b/x-pack/plugins/snapshot_restore/__jest__/client_integration/helpers/repository_add.helpers.ts index e53c19f00d1b..b369b20c122e 100644 --- a/x-pack/plugins/snapshot_restore/__jest__/client_integration/helpers/repository_add.helpers.ts +++ b/x-pack/plugins/snapshot_restore/__jest__/client_integration/helpers/repository_add.helpers.ts @@ -71,6 +71,13 @@ type TestSubjects = | 'compressToggle' | 'fsRepositoryType' | 'locationInput' + | 'clientInput' + | 'containerInput' + | 'basePathInput' + | 'bucketInput' + | 'pathInput' + | 'uriInput' + | 'bufferSizeInput' | 'maxRestoreBytesInput' | 'maxSnapshotBytesInput' | 'nameInput' diff --git a/x-pack/plugins/snapshot_restore/__jest__/client_integration/repository_add.test.ts b/x-pack/plugins/snapshot_restore/__jest__/client_integration/repository_add.test.ts index 9864b18c4b8c..85d438fc5f3a 100644 --- a/x-pack/plugins/snapshot_restore/__jest__/client_integration/repository_add.test.ts +++ b/x-pack/plugins/snapshot_restore/__jest__/client_integration/repository_add.test.ts @@ -193,7 +193,14 @@ describe('', () => { }); describe('form payload & api errors', () => { - const repository = getRepository(); + const fsRepository = getRepository({ + settings: { + chunkSize: '10mb', + location: '/tmp/es-backups', + maxSnapshotBytesPerSec: '1g', + maxRestoreBytesPerSec: '1g', + }, + }); beforeEach(async () => { httpRequestsMockHelpers.setLoadRepositoryTypesResponse(repositoryTypes); @@ -202,33 +209,237 @@ describe('', () => { }); describe('not source only', () => { - beforeEach(() => { - // Fill step 1 required fields and go to step 2 - testBed.form.setInputValue('nameInput', repository.name); - testBed.actions.selectRepositoryType(repository.type); - testBed.actions.clickNextButton(); - }); + test('should send the correct payload for FS repository', async () => { + const { form, actions, component } = testBed; - test('should send the correct payload', async () => { - const { form, actions } = testBed; + // Fill step 1 required fields and go to step 2 + form.setInputValue('nameInput', fsRepository.name); + actions.selectRepositoryType(fsRepository.type); + actions.clickNextButton(); // Fill step 2 - form.setInputValue('locationInput', repository.settings.location); + form.setInputValue('locationInput', fsRepository.settings.location); form.toggleEuiSwitch('compressToggle'); + form.setInputValue('chunkSizeInput', fsRepository.settings.chunkSize); + form.setInputValue('maxSnapshotBytesInput', fsRepository.settings.maxSnapshotBytesPerSec); + form.setInputValue('maxRestoreBytesInput', fsRepository.settings.maxRestoreBytesPerSec); + form.toggleEuiSwitch('readOnlyToggle'); await act(async () => { actions.clickSubmitButton(); - await nextTick(); }); + component.update(); + const latestRequest = server.requests[server.requests.length - 1]; expect(JSON.parse(JSON.parse(latestRequest.requestBody).body)).toEqual({ - name: repository.name, - type: repository.type, + name: fsRepository.name, + type: fsRepository.type, settings: { - location: repository.settings.location, + ...fsRepository.settings, compress: true, + readonly: true, + }, + }); + }); + + test('should send the correct payload for Azure repository', async () => { + const azureRepository = getRepository({ + type: 'azure', + settings: { + chunkSize: '10mb', + maxSnapshotBytesPerSec: '1g', + maxRestoreBytesPerSec: '1g', + client: 'client', + container: 'container', + basePath: 'path', + }, + }); + + const { form, actions, component } = testBed; + + // Fill step 1 required fields and go to step 2 + form.setInputValue('nameInput', azureRepository.name); + actions.selectRepositoryType(azureRepository.type); + actions.clickNextButton(); + + // Fill step 2 + form.setInputValue('clientInput', azureRepository.settings.client); + form.setInputValue('containerInput', azureRepository.settings.container); + form.setInputValue('basePathInput', azureRepository.settings.basePath); + form.toggleEuiSwitch('compressToggle'); + form.setInputValue('chunkSizeInput', azureRepository.settings.chunkSize); + form.setInputValue( + 'maxSnapshotBytesInput', + azureRepository.settings.maxSnapshotBytesPerSec + ); + form.setInputValue('maxRestoreBytesInput', azureRepository.settings.maxRestoreBytesPerSec); + form.toggleEuiSwitch('readOnlyToggle'); + + await act(async () => { + actions.clickSubmitButton(); + }); + + component.update(); + + const latestRequest = server.requests[server.requests.length - 1]; + + expect(JSON.parse(JSON.parse(latestRequest.requestBody).body)).toEqual({ + name: azureRepository.name, + type: azureRepository.type, + settings: { + ...azureRepository.settings, + compress: false, + readonly: true, + }, + }); + }); + + test('should send the correct payload for GCS repository', async () => { + const gcsRepository = getRepository({ + type: 'gcs', + settings: { + chunkSize: '10mb', + maxSnapshotBytesPerSec: '1g', + maxRestoreBytesPerSec: '1g', + client: 'test_client', + bucket: 'test_bucket', + basePath: 'test_path', + }, + }); + + const { form, actions, component } = testBed; + + // Fill step 1 required fields and go to step 2 + form.setInputValue('nameInput', gcsRepository.name); + actions.selectRepositoryType(gcsRepository.type); + actions.clickNextButton(); + + // Fill step 2 + form.setInputValue('clientInput', gcsRepository.settings.client); + form.setInputValue('bucketInput', gcsRepository.settings.bucket); + form.setInputValue('basePathInput', gcsRepository.settings.basePath); + form.toggleEuiSwitch('compressToggle'); + form.setInputValue('chunkSizeInput', gcsRepository.settings.chunkSize); + form.setInputValue('maxSnapshotBytesInput', gcsRepository.settings.maxSnapshotBytesPerSec); + form.setInputValue('maxRestoreBytesInput', gcsRepository.settings.maxRestoreBytesPerSec); + form.toggleEuiSwitch('readOnlyToggle'); + + await act(async () => { + actions.clickSubmitButton(); + }); + + component.update(); + + const latestRequest = server.requests[server.requests.length - 1]; + + expect(JSON.parse(JSON.parse(latestRequest.requestBody).body)).toEqual({ + name: gcsRepository.name, + type: gcsRepository.type, + settings: { + ...gcsRepository.settings, + compress: false, + readonly: true, + }, + }); + }); + + test('should send the correct payload for HDFS repository', async () => { + const hdfsRepository = getRepository({ + type: 'hdfs', + settings: { + uri: 'uri', + path: 'test_path', + chunkSize: '10mb', + maxSnapshotBytesPerSec: '1g', + maxRestoreBytesPerSec: '1g', + }, + }); + + const { form, actions, component } = testBed; + + // Fill step 1 required fields and go to step 2 + form.setInputValue('nameInput', hdfsRepository.name); + actions.selectRepositoryType(hdfsRepository.type); + actions.clickNextButton(); + + // Fill step 2 + form.setInputValue('uriInput', hdfsRepository.settings.uri); + form.setInputValue('pathInput', hdfsRepository.settings.path); + form.toggleEuiSwitch('compressToggle'); + form.setInputValue('chunkSizeInput', hdfsRepository.settings.chunkSize); + form.setInputValue('maxSnapshotBytesInput', hdfsRepository.settings.maxSnapshotBytesPerSec); + form.setInputValue('maxRestoreBytesInput', hdfsRepository.settings.maxRestoreBytesPerSec); + form.toggleEuiSwitch('readOnlyToggle'); + + await act(async () => { + actions.clickSubmitButton(); + }); + + component.update(); + + const latestRequest = server.requests[server.requests.length - 1]; + + expect(JSON.parse(JSON.parse(latestRequest.requestBody).body)).toEqual({ + name: hdfsRepository.name, + type: hdfsRepository.type, + settings: { + ...hdfsRepository.settings, + uri: `hdfs://${hdfsRepository.settings.uri}`, + compress: false, + readonly: true, + }, + }); + }); + + test('should send the correct payload for S3 repository', async () => { + const { form, actions, component } = testBed; + + const s3Repository = getRepository({ + type: 's3', + settings: { + bucket: 'test_bucket', + client: 'test_client', + basePath: 'test_path', + bufferSize: '1g', + chunkSize: '10mb', + maxSnapshotBytesPerSec: '1g', + maxRestoreBytesPerSec: '1g', + }, + }); + + // Fill step 1 required fields and go to step 2 + form.setInputValue('nameInput', s3Repository.name); + actions.selectRepositoryType(s3Repository.type); + actions.clickNextButton(); + + // Fill step 2 + form.setInputValue('bucketInput', s3Repository.settings.bucket); + form.setInputValue('clientInput', s3Repository.settings.client); + form.setInputValue('basePathInput', s3Repository.settings.basePath); + form.setInputValue('bufferSizeInput', s3Repository.settings.bufferSize); + form.toggleEuiSwitch('compressToggle'); + form.setInputValue('chunkSizeInput', s3Repository.settings.chunkSize); + form.setInputValue('maxSnapshotBytesInput', s3Repository.settings.maxSnapshotBytesPerSec); + form.setInputValue('maxRestoreBytesInput', s3Repository.settings.maxRestoreBytesPerSec); + form.toggleEuiSwitch('readOnlyToggle'); + + await act(async () => { + actions.clickSubmitButton(); + }); + + component.update(); + + const latestRequest = server.requests[server.requests.length - 1]; + + expect(JSON.parse(JSON.parse(latestRequest.requestBody).body)).toEqual({ + name: s3Repository.name, + type: s3Repository.type, + settings: { + ...s3Repository.settings, + compress: false, + readonly: true, }, }); }); @@ -236,7 +447,13 @@ describe('', () => { test('should surface the API errors from the "save" HTTP request', async () => { const { component, form, actions, find, exists } = testBed; - form.setInputValue('locationInput', repository.settings.location); + // Fill step 1 required fields and go to step 2 + form.setInputValue('nameInput', fsRepository.name); + actions.selectRepositoryType(fsRepository.type); + actions.clickNextButton(); + + // Fill step 2 + form.setInputValue('locationInput', fsRepository.settings.location); form.toggleEuiSwitch('compressToggle'); const error = { @@ -249,10 +466,10 @@ describe('', () => { await act(async () => { actions.clickSubmitButton(); - await nextTick(); - component.update(); }); + component.update(); + expect(exists('saveRepositoryApiError')).toBe(true); expect(find('saveRepositoryApiError').text()).toContain(error.message); }); @@ -261,31 +478,32 @@ describe('', () => { describe('source only', () => { beforeEach(() => { // Fill step 1 required fields and go to step 2 - testBed.form.setInputValue('nameInput', repository.name); - testBed.actions.selectRepositoryType(repository.type); + testBed.form.setInputValue('nameInput', fsRepository.name); + testBed.actions.selectRepositoryType(fsRepository.type); testBed.form.toggleEuiSwitch('sourceOnlyToggle'); // toggle source testBed.actions.clickNextButton(); }); test('should send the correct payload', async () => { - const { form, actions } = testBed; + const { form, actions, component } = testBed; // Fill step 2 - form.setInputValue('locationInput', repository.settings.location); + form.setInputValue('locationInput', fsRepository.settings.location); await act(async () => { actions.clickSubmitButton(); - await nextTick(); }); + component.update(); + const latestRequest = server.requests[server.requests.length - 1]; expect(JSON.parse(JSON.parse(latestRequest.requestBody).body)).toEqual({ - name: repository.name, + name: fsRepository.name, type: 'source', settings: { - delegateType: repository.type, - location: repository.settings.location, + delegateType: fsRepository.type, + location: fsRepository.settings.location, }, }); }); diff --git a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/azure_settings.tsx b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/azure_settings.tsx index adbbe81176bd..b2657d0bfc0f 100644 --- a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/azure_settings.tsx +++ b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/azure_settings.tsx @@ -17,7 +17,7 @@ import { } from '@elastic/eui'; import { AzureRepository, Repository } from '../../../../../common/types'; import { RepositorySettingsValidation } from '../../../services/validation'; -import { textService } from '../../../services/text'; +import { ChunkSizeField, MaxSnapshotsField, MaxRestoreField } from './common'; interface Props { repository: AzureRepository; @@ -53,6 +53,12 @@ export const AzureSettings: React.FunctionComponent = ({ text: option, })); + const updateSettings = (name: string, value: string) => { + updateRepositorySettings({ + [name]: value, + }); + }; + return ( {/* Client field */} @@ -232,139 +238,28 @@ export const AzureSettings: React.FunctionComponent = ({ {/* Chunk size field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.chunkSize)} - error={settingErrors.chunkSize} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - chunkSize: e.target.value, - }); - }} - data-test-subj="chunkSizeInput" - /> - -
+ {/* Max snapshot bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxSnapshotBytesPerSec)} - error={settingErrors.maxSnapshotBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxSnapshotBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxSnapshotBytesInput" - /> - -
+ {/* Max restore bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxRestoreBytesPerSec)} - error={settingErrors.maxRestoreBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxRestoreBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxRestoreBytesInput" - /> - -
+ {/* Location mode field */} void; + error: RepositorySettingsValidation['chunkSize']; +} + +export const ChunkSizeField: React.FunctionComponent = ({ + isInvalid, + error, + defaultValue, + updateSettings, +}) => { + return ( + +

+ +

+ + } + description={ + + } + fullWidth + > + + } + fullWidth + isInvalid={isInvalid} + error={error} + helpText={ + 1g, + example2: 10mb, + example3: 5k, + example4: 1024B, + }} + /> + } + > + updateSettings('chunkSize', e.target.value)} + data-test-subj="chunkSizeInput" + /> + +
+ ); +}; diff --git a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/index.ts b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/index.ts new file mode 100644 index 000000000000..173e13b1b6e1 --- /dev/null +++ b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/index.ts @@ -0,0 +1,10 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { ChunkSizeField } from './chunk_size'; +export { MaxRestoreField } from './max_restore'; +export { MaxSnapshotsField } from './max_snapshots'; diff --git a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/max_restore.tsx b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/max_restore.tsx new file mode 100644 index 000000000000..281fe26d5b9d --- /dev/null +++ b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/max_restore.tsx @@ -0,0 +1,78 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { FormattedMessage } from '@kbn/i18n/react'; +import { EuiDescribedFormGroup, EuiFieldText, EuiFormRow, EuiTitle, EuiCode } from '@elastic/eui'; +import { RepositorySettingsValidation } from '../../../../services/validation'; + +interface Props { + isInvalid: boolean; + defaultValue: string; + updateSettings: (name: string, value: string) => void; + error: RepositorySettingsValidation['maxRestoreBytesPerSec']; +} + +export const MaxRestoreField: React.FunctionComponent = ({ + isInvalid, + error, + defaultValue, + updateSettings, +}) => { + return ( + +

+ +

+ + } + description={ + + } + fullWidth + > + + } + fullWidth + isInvalid={isInvalid} + error={error} + helpText={ + 1g, + example2: 10mb, + example3: 5k, + example4: 1024B, + }} + /> + } + > + updateSettings('maxRestoreBytesPerSec', e.target.value)} + data-test-subj="maxRestoreBytesInput" + /> + +
+ ); +}; diff --git a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/max_snapshots.tsx b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/max_snapshots.tsx new file mode 100644 index 000000000000..85b9153c711b --- /dev/null +++ b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/common/max_snapshots.tsx @@ -0,0 +1,79 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { FormattedMessage } from '@kbn/i18n/react'; +import { EuiDescribedFormGroup, EuiFieldText, EuiFormRow, EuiTitle, EuiCode } from '@elastic/eui'; +import { RepositorySettingsValidation } from '../../../../services/validation'; + +interface Props { + isInvalid: boolean; + defaultValue: string; + updateSettings: (name: string, value: string) => void; + error: RepositorySettingsValidation['maxSnapshotBytesPerSec']; +} + +export const MaxSnapshotsField: React.FunctionComponent = ({ + isInvalid, + error, + defaultValue, + updateSettings, +}) => { + return ( + +

+ +

+ + } + description={ + + } + fullWidth + > + + } + fullWidth + isInvalid={isInvalid} + error={error} + helpText={ + 1g, + example2: 10mb, + example3: 5k, + example4: 1024B, + defaultSize: 40mb, + }} + /> + } + > + updateSettings('maxSnapshotBytesPerSec', e.target.value)} + data-test-subj="maxSnapshotBytesInput" + /> + +
+ ); +}; diff --git a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/fs_settings.tsx b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/fs_settings.tsx index 2635cabfa1ef..af3e6e823126 100644 --- a/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/fs_settings.tsx +++ b/x-pack/plugins/snapshot_restore/public/application/components/repository_form/type_settings/fs_settings.tsx @@ -17,7 +17,7 @@ import { } from '@elastic/eui'; import { FSRepository, Repository } from '../../../../../common/types'; import { RepositorySettingsValidation } from '../../../services/validation'; -import { textService } from '../../../services/text'; +import { ChunkSizeField, MaxRestoreField, MaxSnapshotsField } from './common'; interface Props { repository: FSRepository; @@ -44,6 +44,11 @@ export const FSSettings: React.FunctionComponent = ({ }, } = repository; const hasErrors: boolean = Boolean(Object.keys(settingErrors).length); + const updateSettings = (name: string, value: string) => { + updateRepositorySettings({ + [name]: value, + }); + }; return ( @@ -141,139 +146,28 @@ export const FSSettings: React.FunctionComponent = ({
{/* Chunk size field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.chunkSize)} - error={settingErrors.chunkSize} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - chunkSize: e.target.value, - }); - }} - data-test-subj="chunkSizeInput" - /> - -
+ {/* Max snapshot bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxSnapshotBytesPerSec)} - error={settingErrors.maxSnapshotBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxSnapshotBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxSnapshotBytesInput" - /> - -
+ {/* Max restore bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxRestoreBytesPerSec)} - error={settingErrors.maxRestoreBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxRestoreBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxRestoreBytesInput" - /> - -
+ {/* Readonly field */} = ({ } = repository; const hasErrors: boolean = Boolean(Object.keys(settingErrors).length); + const updateSettings = (name: string, value: string) => { + updateRepositorySettings({ + [name]: value, + }); + }; + return ( {/* Client field */} @@ -220,139 +226,28 @@ export const GCSSettings: React.FunctionComponent = ({ {/* Chunk size field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.chunkSize)} - error={settingErrors.chunkSize} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - chunkSize: e.target.value, - }); - }} - data-test-subj="chunkSizeInput" - /> - -
+ {/* Max snapshot bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxSnapshotBytesPerSec)} - error={settingErrors.maxSnapshotBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxSnapshotBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxSnapshotBytesInput" - /> - -
+ {/* Max restore bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxRestoreBytesPerSec)} - error={settingErrors.maxRestoreBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxRestoreBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxRestoreBytesInput" - /> - -
+ {/* Readonly field */} ; @@ -54,6 +54,11 @@ export const HDFSSettings: React.FunctionComponent = ({ }, } = repository; const hasErrors: boolean = Boolean(Object.keys(settingErrors).length); + const updateSettings = (settingName: string, value: string) => { + updateRepositorySettings({ + [settingName]: value, + }); + }; const [additionalConf, setAdditionalConf] = useState(JSON.stringify(rest, null, 2)); const [isConfInvalid, setIsConfInvalid] = useState(false); @@ -244,49 +249,12 @@ export const HDFSSettings: React.FunctionComponent = ({ {/* Chunk size field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.chunkSize)} - error={settingErrors.chunkSize} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - chunkSize: e.target.value, - }); - }} - data-test-subj="chunkSizeInput" - /> - -
+ {/* Security principal field */} = ({ {/* Max snapshot bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxSnapshotBytesPerSec)} - error={settingErrors.maxSnapshotBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxSnapshotBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxSnapshotBytesInput" - /> - -
+ {/* Max restore bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxRestoreBytesPerSec)} - error={settingErrors.maxRestoreBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxRestoreBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxRestoreBytesInput" - /> - -
+ {/* Readonly field */} = ({ text: option, })); const hasErrors: boolean = Boolean(Object.keys(settingErrors).length); + const updateSettings = (name: string, value: string) => { + updateRepositorySettings({ + [name]: value, + }); + }; const storageClassOptions = ['standard', 'reduced_redundancy', 'standard_ia'].map((option) => ({ value: option, @@ -249,49 +255,12 @@ export const S3Settings: React.FunctionComponent = ({ {/* Chunk size field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.chunkSize)} - error={settingErrors.chunkSize} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - chunkSize: e.target.value, - }); - }} - data-test-subj="chunkSizeInput" - /> - -
+ {/* Server side encryption field */} = ({ fullWidth isInvalid={Boolean(hasErrors && settingErrors.bufferSize)} error={settingErrors.bufferSize} - helpText={textService.getSizeNotationHelpText()} + helpText={ + 1g, + example2: 10mb, + example3: 5k, + example4: 1024B, + defaultSize: 100mb, + defaultPercentage: 5%, + }} + /> + } > = ({ {/* Max snapshot bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxSnapshotBytesPerSec)} - error={settingErrors.maxSnapshotBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxSnapshotBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxSnapshotBytesInput" - /> - -
+ {/* Max restore bytes field */} - -

- -

- - } - description={ - - } - fullWidth - > - - } - fullWidth - isInvalid={Boolean(hasErrors && settingErrors.maxRestoreBytesPerSec)} - error={settingErrors.maxRestoreBytesPerSec} - helpText={textService.getSizeNotationHelpText()} - > - { - updateRepositorySettings({ - maxRestoreBytesPerSec: e.target.value, - }); - }} - data-test-subj="maxRestoreBytesInput" - /> - -
+ {/* Readonly field */} 0 ? groupResult.metrics[0] : null; + const value = metric && metric.length === 2 ? metric[1] : null; + + if (!value) { + logger.debug( + `alert ${ID}:${alertId} "${name}": no metrics found for group ${instanceId}} from groupResult ${JSON.stringify( + groupResult + )}` + ); + continue; + } + const met = compareFn(value, params.threshold); if (!met) continue; diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 6892d374db30..b66fa50ae168 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -4948,7 +4948,6 @@ "xpack.alerting.appName": "アラート", "xpack.alerting.builtinActionGroups.recovered": "回復済み", "xpack.alerting.injectActionParams.email.kibanaFooterLinkText": "Kibana でアラートを表示", - "xpack.alerting.loadAlertType.missingAlertTypeError": "アラートタイプ「{id}」は登録されていません。", "xpack.alerting.server.healthStatus.available": "アラートフレームワークを使用できます", "xpack.alerting.server.healthStatus.degraded": "アラートフレームワークは劣化しました", "xpack.alerting.server.healthStatus.unavailable": "アラートフレームワークを使用できません", @@ -20355,7 +20354,6 @@ "xpack.securitySolution.trustedapps.logicalConditionBuilder.entry.removeLabel": "エントリを削除", "xpack.securitySolution.trustedapps.logicalConditionBuilder.group.andOperator": "AND", "xpack.securitySolution.trustedapps.logicalConditionBuilder.noEntries": "条件が定義されていません", - "xpack.securitySolution.trustedapps.noResults": "項目が見つかりません", "xpack.securitySolution.trustedapps.trustedapp.createdAt": "作成日", "xpack.securitySolution.trustedapps.trustedapp.createdBy": "作成者", "xpack.securitySolution.trustedapps.trustedapp.description": "説明", @@ -20808,9 +20806,6 @@ "xpack.snapshotRestore.repositoryForm.typeAzure.basePathDescription": "レポジトリデータへのコンテナーパスです。", "xpack.snapshotRestore.repositoryForm.typeAzure.basePathLabel": "ベースパス", "xpack.snapshotRestore.repositoryForm.typeAzure.basePathTitle": "ベースパス", - "xpack.snapshotRestore.repositoryForm.typeAzure.chunkSizeDescription": "スナップショットの作成時にファイルを小さなユニットに分けます。", - "xpack.snapshotRestore.repositoryForm.typeAzure.chunkSizeLabel": "チャンクサイズ", - "xpack.snapshotRestore.repositoryForm.typeAzure.chunkSizeTitle": "チャンクサイズ", "xpack.snapshotRestore.repositoryForm.typeAzure.clientDescription": "Azure クライアントの名前です。", "xpack.snapshotRestore.repositoryForm.typeAzure.clientLabel": "クライアント", "xpack.snapshotRestore.repositoryForm.typeAzure.clientTitle": "クライアント", @@ -20823,29 +20818,14 @@ "xpack.snapshotRestore.repositoryForm.typeAzure.locationModeDescription": "プライマリまたはセカンダリの場所です。セカンダリの場合、読み込み専用が true です。", "xpack.snapshotRestore.repositoryForm.typeAzure.locationModeLabel": "位置情報モード", "xpack.snapshotRestore.repositoryForm.typeAzure.locationModeTitle": "位置情報モード", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxRestoreBytesDescription": "各ノードのスナップショットの復元レートです。", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxRestoreBytesLabel": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxRestoreBytesTitle": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxSnapshotBytesDescription": "各ノードのスナップショットの作成レートです。", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxSnapshotBytesLabel": "1 秒間の最高スナップショットバイト数", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxSnapshotBytesTitle": "1 秒間の最高スナップショットバイト数", "xpack.snapshotRestore.repositoryForm.typeAzure.readonlyDescription": "このレポジトリへの書き込みアクセスがあるクラスターは 1 つだけでなければなりません。他のクラスターはすべて読み込み専用にする必要があります。", "xpack.snapshotRestore.repositoryForm.typeAzure.readonlyLabel": "読み込み専用レポジトリ", "xpack.snapshotRestore.repositoryForm.typeAzure.readonlyTitle": "読み込み専用", - "xpack.snapshotRestore.repositoryForm.typeFS.chunkSizeDescription": "スナップショットの作成時にファイルを小さなユニットに分けます。", - "xpack.snapshotRestore.repositoryForm.typeFS.chunkSizeLabel": "チャンクサイズ", - "xpack.snapshotRestore.repositoryForm.typeFS.chunkSizeTitle": "チャンクサイズ", "xpack.snapshotRestore.repositoryForm.typeFS.compressDescription": "スナップショット用にインデックスのマッピングと設定ファイルを圧縮します。データファイルは圧縮されません。", "xpack.snapshotRestore.repositoryForm.typeFS.compressLabel": "スナップショットを圧縮", "xpack.snapshotRestore.repositoryForm.typeFS.compressTitle": "スナップショットの圧縮", "xpack.snapshotRestore.repositoryForm.typeFS.locationLabel": "場所 (必須) ", "xpack.snapshotRestore.repositoryForm.typeFS.locationTitle": "ファイルシステムの場所", - "xpack.snapshotRestore.repositoryForm.typeFS.maxRestoreBytesDescription": "各ノードのスナップショットの復元レートです。", - "xpack.snapshotRestore.repositoryForm.typeFS.maxRestoreBytesLabel": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeFS.maxRestoreBytesTitle": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeFS.maxSnapshotBytesDescription": "各ノードのスナップショットの作成レートです。", - "xpack.snapshotRestore.repositoryForm.typeFS.maxSnapshotBytesLabel": "1 秒間の最高スナップショットバイト数", - "xpack.snapshotRestore.repositoryForm.typeFS.maxSnapshotBytesTitle": "1 秒間の最高スナップショットバイト数", "xpack.snapshotRestore.repositoryForm.typeFS.readonlyDescription": "このレポジトリへの書き込みアクセスがあるクラスターは 1 つだけでなければなりません。他のクラスターはすべて読み込み専用にする必要があります。", "xpack.snapshotRestore.repositoryForm.typeFS.readonlyLabel": "読み込み専用レポジトリ", "xpack.snapshotRestore.repositoryForm.typeFS.readonlyTitle": "読み込み専用", @@ -20855,27 +20835,15 @@ "xpack.snapshotRestore.repositoryForm.typeGCS.bucketDescription": "スナップショットに使用する Google Cloud Storage バケットの名前です。", "xpack.snapshotRestore.repositoryForm.typeGCS.bucketLabel": "バケット (必須) ", "xpack.snapshotRestore.repositoryForm.typeGCS.bucketTitle": "バケット", - "xpack.snapshotRestore.repositoryForm.typeGCS.chunkSizeDescription": "スナップショットの作成時にファイルを小さなユニットに分けます。", - "xpack.snapshotRestore.repositoryForm.typeGCS.chunkSizeLabel": "チャンクサイズ", - "xpack.snapshotRestore.repositoryForm.typeGCS.chunkSizeTitle": "チャンクサイズ", "xpack.snapshotRestore.repositoryForm.typeGCS.clientDescription": "Google Cloud Storage クライアントの名前です。", "xpack.snapshotRestore.repositoryForm.typeGCS.clientLabel": "クライアント", "xpack.snapshotRestore.repositoryForm.typeGCS.clientTitle": "クライアント", "xpack.snapshotRestore.repositoryForm.typeGCS.compressDescription": "スナップショット用にインデックスのマッピングと設定ファイルを圧縮します。データファイルは圧縮されません。", "xpack.snapshotRestore.repositoryForm.typeGCS.compressLabel": "スナップショットを圧縮", "xpack.snapshotRestore.repositoryForm.typeGCS.compressTitle": "スナップショットを圧縮", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxRestoreBytesDescription": "各ノードのスナップショットの復元レートです。", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxRestoreBytesLabel": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxRestoreBytesTitle": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxSnapshotBytesDescription": "各ノードのスナップショットの作成レートです。", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxSnapshotBytesLabel": "1 秒間の最高スナップショットバイト数", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxSnapshotBytesTitle": "1 秒間の最高スナップショットバイト数", "xpack.snapshotRestore.repositoryForm.typeGCS.readonlyDescription": "このレポジトリへの書き込みアクセスがあるクラスターは 1 つだけでなければなりません。他のクラスターはすべて読み込み専用にする必要があります。", "xpack.snapshotRestore.repositoryForm.typeGCS.readonlyLabel": "読み込み専用レポジトリ", "xpack.snapshotRestore.repositoryForm.typeGCS.readonlyTitle": "読み込み専用", - "xpack.snapshotRestore.repositoryForm.typeHDFS.chunkSizeDescription": "スナップショットの作成時にファイルを小さなユニットに分けます。", - "xpack.snapshotRestore.repositoryForm.typeHDFS.chunkSizeLabel": "チャンクサイズ", - "xpack.snapshotRestore.repositoryForm.typeHDFS.chunkSizeTitle": "チャンクサイズ", "xpack.snapshotRestore.repositoryForm.typeHDFS.compressDescription": "スナップショット用にインデックスのマッピングと設定ファイルを圧縮します。データファイルは圧縮されません。", "xpack.snapshotRestore.repositoryForm.typeHDFS.compressLabel": "スナップショットを圧縮", "xpack.snapshotRestore.repositoryForm.typeHDFS.compressTitle": "スナップショットの圧縮", @@ -20888,12 +20856,6 @@ "xpack.snapshotRestore.repositoryForm.typeHDFS.loadDefaultsDescription": "デフォルトの Hadoop 構成を読み込みます。", "xpack.snapshotRestore.repositoryForm.typeHDFS.loadDefaultsLabel": "デフォルトを読み込む", "xpack.snapshotRestore.repositoryForm.typeHDFS.loadDefaultsTitle": "デフォルトを読み込む", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxRestoreBytesDescription": "各ノードのスナップショットの復元レートです。", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxRestoreBytesLabel": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxRestoreBytesTitle": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxSnapshotBytesDescription": "各ノードのスナップショットの作成レートです。", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxSnapshotBytesLabel": "1 秒間の最高スナップショットバイト数", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxSnapshotBytesTitle": "1 秒間の最高スナップショットバイト数", "xpack.snapshotRestore.repositoryForm.typeHDFS.pathDescription": "データが保管されているファイルへのパスです。", "xpack.snapshotRestore.repositoryForm.typeHDFS.pathLabel": "パス (必須) ", "xpack.snapshotRestore.repositoryForm.typeHDFS.pathTitle": "パス", @@ -20924,21 +20886,12 @@ "xpack.snapshotRestore.repositoryForm.typeS3.cannedAclDescription": "新しい S3 バケットとオブジェクトに追加する canned ACL です。", "xpack.snapshotRestore.repositoryForm.typeS3.cannedAclLabel": "Canned ACL", "xpack.snapshotRestore.repositoryForm.typeS3.cannedAclTitle": "Canned ACL", - "xpack.snapshotRestore.repositoryForm.typeS3.chunkSizeDescription": "スナップショットの作成時にファイルを小さなユニットに分けます。", - "xpack.snapshotRestore.repositoryForm.typeS3.chunkSizeLabel": "チャンクサイズ", - "xpack.snapshotRestore.repositoryForm.typeS3.chunkSizeTitle": "チャンクサイズ", "xpack.snapshotRestore.repositoryForm.typeS3.clientDescription": "AWS S3 クライアントの名前です。", "xpack.snapshotRestore.repositoryForm.typeS3.clientLabel": "クライアント", "xpack.snapshotRestore.repositoryForm.typeS3.clientTitle": "クライアント", "xpack.snapshotRestore.repositoryForm.typeS3.compressDescription": "スナップショット用にインデックスのマッピングと設定ファイルを圧縮します。データファイルは圧縮されません。", "xpack.snapshotRestore.repositoryForm.typeS3.compressLabel": "スナップショットを圧縮", "xpack.snapshotRestore.repositoryForm.typeS3.compressTitle": "スナップショットの圧縮", - "xpack.snapshotRestore.repositoryForm.typeS3.maxRestoreBytesDescription": "各ノードのスナップショットの復元レートです。", - "xpack.snapshotRestore.repositoryForm.typeS3.maxRestoreBytesLabel": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeS3.maxRestoreBytesTitle": "1 秒間の最高復元バイト数", - "xpack.snapshotRestore.repositoryForm.typeS3.maxSnapshotBytesDescription": "各ノードのスナップショットの作成レートです。", - "xpack.snapshotRestore.repositoryForm.typeS3.maxSnapshotBytesLabel": "1 秒間の最高スナップショットバイト数", - "xpack.snapshotRestore.repositoryForm.typeS3.maxSnapshotBytesTitle": "1 秒間の最高スナップショットバイト数", "xpack.snapshotRestore.repositoryForm.typeS3.readonlyDescription": "このレポジトリへの書き込みアクセスがあるクラスターは 1 つだけでなければなりません。他のクラスターはすべて読み込み専用にする必要があります。", "xpack.snapshotRestore.repositoryForm.typeS3.readonlyLabel": "読み込み専用レポジトリ", "xpack.snapshotRestore.repositoryForm.typeS3.readonlyTitle": "読み込み専用", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index c2bb96286876..5fc97e979208 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -4979,7 +4979,6 @@ "xpack.alerting.appName": "告警", "xpack.alerting.builtinActionGroups.recovered": "已恢复", "xpack.alerting.injectActionParams.email.kibanaFooterLinkText": "在 Kibana 中查看告警", - "xpack.alerting.loadAlertType.missingAlertTypeError": "未注册告警类型“{id}”。", "xpack.alerting.server.healthStatus.available": "告警框架可用", "xpack.alerting.server.healthStatus.degraded": "告警框架已降级", "xpack.alerting.server.healthStatus.unavailable": "告警框架不可用", @@ -20681,7 +20680,6 @@ "xpack.securitySolution.trustedapps.logicalConditionBuilder.entry.removeLabel": "移除条目", "xpack.securitySolution.trustedapps.logicalConditionBuilder.group.andOperator": "AND", "xpack.securitySolution.trustedapps.logicalConditionBuilder.noEntries": "未定义条件", - "xpack.securitySolution.trustedapps.noResults": "找不到项目", "xpack.securitySolution.trustedapps.trustedapp.createdAt": "创建日期", "xpack.securitySolution.trustedapps.trustedapp.createdBy": "创建者", "xpack.securitySolution.trustedapps.trustedapp.description": "描述", @@ -21145,9 +21143,6 @@ "xpack.snapshotRestore.repositoryForm.typeAzure.basePathDescription": "存储库数据的容器路径。", "xpack.snapshotRestore.repositoryForm.typeAzure.basePathLabel": "基路径", "xpack.snapshotRestore.repositoryForm.typeAzure.basePathTitle": "基路径", - "xpack.snapshotRestore.repositoryForm.typeAzure.chunkSizeDescription": "拍取快照时,将文件拆分成更小的单位。", - "xpack.snapshotRestore.repositoryForm.typeAzure.chunkSizeLabel": "块大小", - "xpack.snapshotRestore.repositoryForm.typeAzure.chunkSizeTitle": "块大小", "xpack.snapshotRestore.repositoryForm.typeAzure.clientDescription": "Azure 客户端的名称。", "xpack.snapshotRestore.repositoryForm.typeAzure.clientLabel": "客户端", "xpack.snapshotRestore.repositoryForm.typeAzure.clientTitle": "客户端", @@ -21160,29 +21155,14 @@ "xpack.snapshotRestore.repositoryForm.typeAzure.locationModeDescription": "主要位置或辅助位置。如果为辅助位置,则只读为 true。", "xpack.snapshotRestore.repositoryForm.typeAzure.locationModeLabel": "位置模式", "xpack.snapshotRestore.repositoryForm.typeAzure.locationModeTitle": "位置模式", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxRestoreBytesDescription": "每个节点的快照还原速率。", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxRestoreBytesLabel": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxRestoreBytesTitle": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxSnapshotBytesDescription": "为每个节点创建快照的速率。", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxSnapshotBytesLabel": "每秒最大快照字节数", - "xpack.snapshotRestore.repositoryForm.typeAzure.maxSnapshotBytesTitle": "每秒最大快照字节数", "xpack.snapshotRestore.repositoryForm.typeAzure.readonlyDescription": "仅一个集群应对此存储库有写权限。所有其他集群应为只读。", "xpack.snapshotRestore.repositoryForm.typeAzure.readonlyLabel": "只读存储库", "xpack.snapshotRestore.repositoryForm.typeAzure.readonlyTitle": "只读", - "xpack.snapshotRestore.repositoryForm.typeFS.chunkSizeDescription": "拍取快照时,将文件拆分成更小的单位。", - "xpack.snapshotRestore.repositoryForm.typeFS.chunkSizeLabel": "块大小", - "xpack.snapshotRestore.repositoryForm.typeFS.chunkSizeTitle": "块大小", "xpack.snapshotRestore.repositoryForm.typeFS.compressDescription": "压缩快照的索引映射和设置文件。数据文件未压缩。", "xpack.snapshotRestore.repositoryForm.typeFS.compressLabel": "压缩快照", "xpack.snapshotRestore.repositoryForm.typeFS.compressTitle": "快照压缩", "xpack.snapshotRestore.repositoryForm.typeFS.locationLabel": "位置 (必填) ", "xpack.snapshotRestore.repositoryForm.typeFS.locationTitle": "文件系统位置", - "xpack.snapshotRestore.repositoryForm.typeFS.maxRestoreBytesDescription": "每个节点的快照还原速率。", - "xpack.snapshotRestore.repositoryForm.typeFS.maxRestoreBytesLabel": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeFS.maxRestoreBytesTitle": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeFS.maxSnapshotBytesDescription": "为每个节点创建快照的速率。", - "xpack.snapshotRestore.repositoryForm.typeFS.maxSnapshotBytesLabel": "每秒最大快照字节数", - "xpack.snapshotRestore.repositoryForm.typeFS.maxSnapshotBytesTitle": "每秒最大快照字节数", "xpack.snapshotRestore.repositoryForm.typeFS.readonlyDescription": "仅一个集群应对此存储库有写权限。所有其他集群应为只读。", "xpack.snapshotRestore.repositoryForm.typeFS.readonlyLabel": "只读存储库", "xpack.snapshotRestore.repositoryForm.typeFS.readonlyTitle": "只读", @@ -21192,27 +21172,15 @@ "xpack.snapshotRestore.repositoryForm.typeGCS.bucketDescription": "要用于快照的 Google Cloud Storage 存储桶的名称。", "xpack.snapshotRestore.repositoryForm.typeGCS.bucketLabel": "存储桶 (必填) ", "xpack.snapshotRestore.repositoryForm.typeGCS.bucketTitle": "存储桶", - "xpack.snapshotRestore.repositoryForm.typeGCS.chunkSizeDescription": "拍取快照时,将文件拆分成更小的单位。", - "xpack.snapshotRestore.repositoryForm.typeGCS.chunkSizeLabel": "块大小", - "xpack.snapshotRestore.repositoryForm.typeGCS.chunkSizeTitle": "块大小", "xpack.snapshotRestore.repositoryForm.typeGCS.clientDescription": "Google Cloud Storage 客户端的名称。", "xpack.snapshotRestore.repositoryForm.typeGCS.clientLabel": "客户端", "xpack.snapshotRestore.repositoryForm.typeGCS.clientTitle": "客户端", "xpack.snapshotRestore.repositoryForm.typeGCS.compressDescription": "压缩快照的索引映射和设置文件。数据文件未压缩。", "xpack.snapshotRestore.repositoryForm.typeGCS.compressLabel": "压缩快照", "xpack.snapshotRestore.repositoryForm.typeGCS.compressTitle": "压缩快照", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxRestoreBytesDescription": "每个节点的快照还原速率。", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxRestoreBytesLabel": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxRestoreBytesTitle": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxSnapshotBytesDescription": "为每个节点创建快照的速率。", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxSnapshotBytesLabel": "每秒最大快照字节数", - "xpack.snapshotRestore.repositoryForm.typeGCS.maxSnapshotBytesTitle": "每秒最大快照字节数", "xpack.snapshotRestore.repositoryForm.typeGCS.readonlyDescription": "仅一个集群应对此存储库有写权限。所有其他集群应为只读。", "xpack.snapshotRestore.repositoryForm.typeGCS.readonlyLabel": "只读存储库", "xpack.snapshotRestore.repositoryForm.typeGCS.readonlyTitle": "只读", - "xpack.snapshotRestore.repositoryForm.typeHDFS.chunkSizeDescription": "拍取快照时,将文件拆分成更小的单位。", - "xpack.snapshotRestore.repositoryForm.typeHDFS.chunkSizeLabel": "块大小", - "xpack.snapshotRestore.repositoryForm.typeHDFS.chunkSizeTitle": "块大小", "xpack.snapshotRestore.repositoryForm.typeHDFS.compressDescription": "压缩快照的索引映射和设置文件。数据文件未压缩。", "xpack.snapshotRestore.repositoryForm.typeHDFS.compressLabel": "压缩快照", "xpack.snapshotRestore.repositoryForm.typeHDFS.compressTitle": "快照压缩", @@ -21225,12 +21193,6 @@ "xpack.snapshotRestore.repositoryForm.typeHDFS.loadDefaultsDescription": "加载默认的 Hadoop 配置。", "xpack.snapshotRestore.repositoryForm.typeHDFS.loadDefaultsLabel": "加载默认值", "xpack.snapshotRestore.repositoryForm.typeHDFS.loadDefaultsTitle": "加载默认值", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxRestoreBytesDescription": "每个节点的快照还原速率。", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxRestoreBytesLabel": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxRestoreBytesTitle": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxSnapshotBytesDescription": "为每个节点创建快照的速率。", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxSnapshotBytesLabel": "每秒最大快照字节数", - "xpack.snapshotRestore.repositoryForm.typeHDFS.maxSnapshotBytesTitle": "每秒最大快照字节数", "xpack.snapshotRestore.repositoryForm.typeHDFS.pathDescription": "存储数据的文件路径。", "xpack.snapshotRestore.repositoryForm.typeHDFS.pathLabel": "路径 (必填) ", "xpack.snapshotRestore.repositoryForm.typeHDFS.pathTitle": "路径", @@ -21261,21 +21223,12 @@ "xpack.snapshotRestore.repositoryForm.typeS3.cannedAclDescription": "要添加到新 S3 存储库和对象的标准 ACL。", "xpack.snapshotRestore.repositoryForm.typeS3.cannedAclLabel": "标准 ACL", "xpack.snapshotRestore.repositoryForm.typeS3.cannedAclTitle": "标准 ACL", - "xpack.snapshotRestore.repositoryForm.typeS3.chunkSizeDescription": "拍取快照时,将文件拆分成更小的单位。", - "xpack.snapshotRestore.repositoryForm.typeS3.chunkSizeLabel": "块大小", - "xpack.snapshotRestore.repositoryForm.typeS3.chunkSizeTitle": "块大小", "xpack.snapshotRestore.repositoryForm.typeS3.clientDescription": "AWS S3 客户端的名称。", "xpack.snapshotRestore.repositoryForm.typeS3.clientLabel": "客户端", "xpack.snapshotRestore.repositoryForm.typeS3.clientTitle": "客户端", "xpack.snapshotRestore.repositoryForm.typeS3.compressDescription": "压缩快照的索引映射和设置文件。数据文件未压缩。", "xpack.snapshotRestore.repositoryForm.typeS3.compressLabel": "压缩快照", "xpack.snapshotRestore.repositoryForm.typeS3.compressTitle": "快照压缩", - "xpack.snapshotRestore.repositoryForm.typeS3.maxRestoreBytesDescription": "每个节点的快照还原速率。", - "xpack.snapshotRestore.repositoryForm.typeS3.maxRestoreBytesLabel": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeS3.maxRestoreBytesTitle": "每秒最大还原字节数", - "xpack.snapshotRestore.repositoryForm.typeS3.maxSnapshotBytesDescription": "为每个节点创建快照的速率。", - "xpack.snapshotRestore.repositoryForm.typeS3.maxSnapshotBytesLabel": "每秒最大快照字节数", - "xpack.snapshotRestore.repositoryForm.typeS3.maxSnapshotBytesTitle": "每秒最大快照字节数", "xpack.snapshotRestore.repositoryForm.typeS3.readonlyDescription": "仅一个集群应对此存储库有写权限。所有其他集群应为只读。", "xpack.snapshotRestore.repositoryForm.typeS3.readonlyLabel": "只读存储库", "xpack.snapshotRestore.repositoryForm.typeS3.readonlyTitle": "只读", diff --git a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.test.ts index 679bc3d53c40..38d65b923b37 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.test.ts @@ -99,10 +99,10 @@ describe('Jira API', () => { test('should call get issue types API', async () => { const abortCtrl = new AbortController(); http.post.mockResolvedValueOnce(issueTypesResponse); - const res = await getIssueTypes({ http, signal: abortCtrl.signal, connectorId: 'test' }); + const res = await getIssueTypes({ http, signal: abortCtrl.signal, connectorId: 'te/st' }); expect(res).toEqual(issueTypesResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"issueTypes","subActionParams":{}}}', signal: abortCtrl.signal, }); @@ -116,12 +116,12 @@ describe('Jira API', () => { const res = await getFieldsByIssueType({ http, signal: abortCtrl.signal, - connectorId: 'test', + connectorId: 'te/st', id: '10006', }); expect(res).toEqual(fieldsResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"fieldsByIssueType","subActionParams":{"id":"10006"}}}', signal: abortCtrl.signal, }); @@ -135,12 +135,12 @@ describe('Jira API', () => { const res = await getIssues({ http, signal: abortCtrl.signal, - connectorId: 'test', + connectorId: 'te/st', title: 'test issue', }); expect(res).toEqual(issuesResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"issues","subActionParams":{"title":"test issue"}}}', signal: abortCtrl.signal, }); @@ -154,12 +154,12 @@ describe('Jira API', () => { const res = await getIssue({ http, signal: abortCtrl.signal, - connectorId: 'test', + connectorId: 'te/st', id: 'RJ-107', }); expect(res).toEqual(issuesResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"issue","subActionParams":{"id":"RJ-107"}}}', signal: abortCtrl.signal, }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.ts b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.ts index 46ea9dea3aa5..83e126ea9d2f 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/jira/api.ts @@ -17,12 +17,15 @@ export async function getIssueTypes({ signal: AbortSignal; connectorId: string; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'issueTypes', subActionParams: {} }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'issueTypes', subActionParams: {} }, + }), + signal, + } + ); } export async function getFieldsByIssueType({ @@ -36,12 +39,15 @@ export async function getFieldsByIssueType({ connectorId: string; id: string; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'fieldsByIssueType', subActionParams: { id } }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'fieldsByIssueType', subActionParams: { id } }, + }), + signal, + } + ); } export async function getIssues({ @@ -55,12 +61,15 @@ export async function getIssues({ connectorId: string; title: string; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'issues', subActionParams: { title } }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'issues', subActionParams: { title } }, + }), + signal, + } + ); } export async function getIssue({ @@ -74,10 +83,13 @@ export async function getIssue({ connectorId: string; id: string; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'issue', subActionParams: { id } }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'issue', subActionParams: { id } }, + }), + signal, + } + ); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.test.ts index 01208f93405d..0d4bf9148a92 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.test.ts @@ -32,7 +32,7 @@ const incidentTypesResponse = { { id: 16, name: 'TBD / Unknown' }, { id: 15, name: 'Vendor / 3rd party error' }, ], - actionId: 'test', + actionId: 'te/st', }; const severityResponse = { @@ -42,7 +42,7 @@ const severityResponse = { { id: 5, name: 'Medium' }, { id: 6, name: 'High' }, ], - actionId: 'test', + actionId: 'te/st', }; describe('Resilient API', () => { @@ -57,11 +57,11 @@ describe('Resilient API', () => { const res = await getIncidentTypes({ http, signal: abortCtrl.signal, - connectorId: 'test', + connectorId: 'te/st', }); expect(res).toEqual(incidentTypesResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"incidentTypes","subActionParams":{}}}', signal: abortCtrl.signal, }); @@ -75,11 +75,11 @@ describe('Resilient API', () => { const res = await getSeverity({ http, signal: abortCtrl.signal, - connectorId: 'test', + connectorId: 'te/st', }); expect(res).toEqual(severityResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"severity","subActionParams":{}}}', signal: abortCtrl.signal, }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.ts b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.ts index 8ea3c3c63e50..6bd9c43105cf 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/resilient/api.ts @@ -17,12 +17,15 @@ export async function getIncidentTypes({ signal: AbortSignal; connectorId: string; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'incidentTypes', subActionParams: {} }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'incidentTypes', subActionParams: {} }, + }), + signal, + } + ); } export async function getSeverity({ @@ -34,10 +37,13 @@ export async function getSeverity({ signal: AbortSignal; connectorId: string; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'severity', subActionParams: {} }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'severity', subActionParams: {} }, + }), + signal, + } + ); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.test.ts index 5c814bbfd645..ba820efc8111 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.test.ts @@ -56,12 +56,12 @@ describe('ServiceNow API', () => { const res = await getChoices({ http, signal: abortCtrl.signal, - connectorId: 'test', + connectorId: 'te/st', fields: ['priority'], }); expect(res).toEqual(choicesResponse); - expect(http.post).toHaveBeenCalledWith('/api/actions/connector/test/_execute', { + expect(http.post).toHaveBeenCalledWith('/api/actions/connector/te%2Fst/_execute', { body: '{"params":{"subAction":"getChoices","subActionParams":{"fields":["priority"]}}}', signal: abortCtrl.signal, }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.ts b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.ts index bb9091559128..62347580e75c 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/components/builtin_action_types/servicenow/api.ts @@ -19,10 +19,13 @@ export async function getChoices({ connectorId: string; fields: string[]; }): Promise> { - return await http.post(`${BASE_ACTION_API_PATH}/connector/${connectorId}/_execute`, { - body: JSON.stringify({ - params: { subAction: 'getChoices', subActionParams: { fields } }, - }), - signal, - }); + return await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(connectorId)}/_execute`, + { + body: JSON.stringify({ + params: { subAction: 'getChoices', subActionParams: { fields } }, + }), + signal, + } + ); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.test.ts index bb00c8c30e4e..ba4c62471555 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.test.ts @@ -14,7 +14,7 @@ beforeEach(() => jest.resetAllMocks()); describe('deleteActions', () => { test('should call delete API per action', async () => { - const ids = ['1', '2', '3']; + const ids = ['1', '2', '/']; const result = await deleteActions({ ids, http }); expect(result).toEqual({ errors: [], successes: [undefined, undefined, undefined] }); @@ -27,7 +27,7 @@ describe('deleteActions', () => { "/api/actions/connector/2", ], Array [ - "/api/actions/connector/3", + "/api/actions/connector/%2F", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.ts index c9c25db676a0..868e5390045c 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/delete.ts @@ -16,7 +16,9 @@ export async function deleteActions({ }): Promise<{ successes: string[]; errors: string[] }> { const successes: string[] = []; const errors: string[] = []; - await Promise.all(ids.map((id) => http.delete(`${BASE_ACTION_API_PATH}/connector/${id}`))).then( + await Promise.all( + ids.map((id) => http.delete(`${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(id)}`)) + ).then( function (fulfilled) { successes.push(...fulfilled); }, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.test.ts index 60cd3132aa75..2b0cdcb2ca69 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.test.ts @@ -14,7 +14,7 @@ beforeEach(() => jest.resetAllMocks()); describe('executeAction', () => { test('should call execute API', async () => { - const id = '123'; + const id = '12/3'; const params = { stringParams: 'someString', numericParams: 123, @@ -32,7 +32,7 @@ describe('executeAction', () => { }); expect(http.post.mock.calls[0]).toMatchInlineSnapshot(` Array [ - "/api/actions/connector/123/_execute", + "/api/actions/connector/12%2F3/_execute", Object { "body": "{\\"params\\":{\\"stringParams\\":\\"someString\\",\\"numericParams\\":123}}", }, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.ts index 638ceddb5652..d97ad7d5962b 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/execute.ts @@ -31,8 +31,11 @@ export async function executeAction({ http: HttpSetup; params: Record; }): Promise> { - const res = await http.post(`${BASE_ACTION_API_PATH}/connector/${id}/_execute`, { - body: JSON.stringify({ params }), - }); + const res = await http.post( + `${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(id)}/_execute`, + { + body: JSON.stringify({ params }), + } + ); return rewriteBodyRes(res); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.test.ts index 29e7a1e4bed3..3cee8d225b00 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.test.ts @@ -15,9 +15,9 @@ beforeEach(() => jest.resetAllMocks()); describe('updateActionConnector', () => { test('should call the update API', async () => { - const id = '123'; + const id = '12/3'; const apiResponse = { - connector_type_id: 'test', + connector_type_id: 'te/st', is_preconfigured: false, name: 'My test', config: {}, @@ -27,7 +27,7 @@ describe('updateActionConnector', () => { http.put.mockResolvedValueOnce(apiResponse); const connector: ActionConnectorWithoutId<{}, {}> = { - actionTypeId: 'test', + actionTypeId: 'te/st', isPreconfigured: false, name: 'My test', config: {}, @@ -39,7 +39,7 @@ describe('updateActionConnector', () => { expect(result).toEqual(resolvedValue); expect(http.put.mock.calls[0]).toMatchInlineSnapshot(` Array [ - "/api/actions/connector/123", + "/api/actions/connector/12%2F3", Object { "body": "{\\"name\\":\\"My test\\",\\"config\\":{},\\"secrets\\":{}}", }, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.ts index 18b8871ce25d..1bc0cefc2723 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/update.ts @@ -30,7 +30,7 @@ export async function updateActionConnector({ connector: Pick; id: string; }): Promise { - const res = await http.put(`${BASE_ACTION_API_PATH}/connector/${id}`, { + const res = await http.put(`${BASE_ACTION_API_PATH}/connector/${encodeURIComponent(id)}`, { body: JSON.stringify({ name: connector.name, config: connector.config, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.test.ts index e94da81d0f5d..c7b987f2b04b 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.test.ts @@ -18,7 +18,7 @@ describe('loadAlertInstanceSummary', () => { consumer: 'alerts', enabled: true, errorMessages: [], - id: 'test', + id: 'te/st', lastRun: '2021-04-01T22:18:27.609Z', muteAll: false, name: 'test', @@ -35,7 +35,7 @@ describe('loadAlertInstanceSummary', () => { consumer: 'alerts', enabled: true, error_messages: [], - id: 'test', + id: 'te/st', last_run: '2021-04-01T22:18:27.609Z', mute_all: false, name: 'test', @@ -47,11 +47,11 @@ describe('loadAlertInstanceSummary', () => { throttle: null, }); - const result = await loadAlertInstanceSummary({ http, alertId: 'test' }); + const result = await loadAlertInstanceSummary({ http, alertId: 'te/st' }); expect(result).toEqual(resolvedValue); expect(http.get.mock.calls[0]).toMatchInlineSnapshot(` Array [ - "/internal/alerting/rule/test/_alert_summary", + "/internal/alerting/rule/te%2Fst/_alert_summary", ] `); }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.ts index e37c0640ec1c..cb924db74cea 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/alert_summary.ts @@ -36,6 +36,8 @@ export async function loadAlertInstanceSummary({ http: HttpSetup; alertId: string; }): Promise { - const res = await http.get(`${INTERNAL_BASE_ALERTING_API_PATH}/rule/${alertId}/_alert_summary`); + const res = await http.get( + `${INTERNAL_BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(alertId)}/_alert_summary` + ); return rewriteBodyRes(res); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.test.ts index b279e4c0237d..11e5f4763e77 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.test.ts @@ -12,7 +12,7 @@ const http = httpServiceMock.createStartContract(); describe('deleteAlerts', () => { test('should call delete API for each alert', async () => { - const ids = ['1', '2', '3']; + const ids = ['1', '2', '/']; const result = await deleteAlerts({ http, ids }); expect(result).toEqual({ errors: [], successes: [undefined, undefined, undefined] }); expect(http.delete.mock.calls).toMatchInlineSnapshot(` @@ -24,7 +24,7 @@ describe('deleteAlerts', () => { "/api/alerting/rule/2", ], Array [ - "/api/alerting/rule/3", + "/api/alerting/rule/%2F", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.ts index 870d5a409c3d..b853e722e6fc 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/delete.ts @@ -16,7 +16,9 @@ export async function deleteAlerts({ }): Promise<{ successes: string[]; errors: string[] }> { const successes: string[] = []; const errors: string[] = []; - await Promise.all(ids.map((id) => http.delete(`${BASE_ALERTING_API_PATH}/rule/${id}`))).then( + await Promise.all( + ids.map((id) => http.delete(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}`)) + ).then( function (fulfilled) { successes.push(...fulfilled); }, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.test.ts index 90d1cd13096e..4323816221c6 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.test.ts @@ -13,12 +13,12 @@ beforeEach(() => jest.resetAllMocks()); describe('disableAlert', () => { test('should call disable alert API', async () => { - const result = await disableAlert({ http, id: '1' }); + const result = await disableAlert({ http, id: '1/' }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` Array [ Array [ - "/api/alerting/rule/1/_disable", + "/api/alerting/rule/1%2F/_disable", ], ] `); @@ -27,7 +27,7 @@ describe('disableAlert', () => { describe('disableAlerts', () => { test('should call disable alert API per alert', async () => { - const ids = ['1', '2', '3']; + const ids = ['1', '2', '/']; const result = await disableAlerts({ http, ids }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` @@ -39,7 +39,7 @@ describe('disableAlerts', () => { "/api/alerting/rule/2/_disable", ], Array [ - "/api/alerting/rule/3/_disable", + "/api/alerting/rule/%2F/_disable", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.ts index cc0939fbebfb..758e66644b34 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/disable.ts @@ -8,7 +8,7 @@ import { HttpSetup } from 'kibana/public'; import { BASE_ALERTING_API_PATH } from '../../constants'; export async function disableAlert({ id, http }: { id: string; http: HttpSetup }): Promise { - await http.post(`${BASE_ALERTING_API_PATH}/rule/${id}/_disable`); + await http.post(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}/_disable`); } export async function disableAlerts({ diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.test.ts index ef65e8b605cb..3a54a0772664 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.test.ts @@ -13,12 +13,12 @@ beforeEach(() => jest.resetAllMocks()); describe('enableAlert', () => { test('should call enable alert API', async () => { - const result = await enableAlert({ http, id: '1' }); + const result = await enableAlert({ http, id: '1/' }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` Array [ Array [ - "/api/alerting/rule/1/_enable", + "/api/alerting/rule/1%2F/_enable", ], ] `); @@ -27,7 +27,7 @@ describe('enableAlert', () => { describe('enableAlerts', () => { test('should call enable alert API per alert', async () => { - const ids = ['1', '2', '3']; + const ids = ['1', '2', '/']; const result = await enableAlerts({ http, ids }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` @@ -39,7 +39,7 @@ describe('enableAlerts', () => { "/api/alerting/rule/2/_enable", ], Array [ - "/api/alerting/rule/3/_enable", + "/api/alerting/rule/%2F/_enable", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.ts index 3c16ffaec622..4bb3e3d45fca 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/enable.ts @@ -8,7 +8,7 @@ import { HttpSetup } from 'kibana/public'; import { BASE_ALERTING_API_PATH } from '../../constants'; export async function enableAlert({ id, http }: { id: string; http: HttpSetup }): Promise { - await http.post(`${BASE_ALERTING_API_PATH}/rule/${id}/_enable`); + await http.post(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}/_enable`); } export async function enableAlerts({ diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.test.ts index f2d8337eb409..5c71f6433f2b 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.test.ts @@ -13,9 +13,10 @@ const http = httpServiceMock.createStartContract(); describe('loadAlert', () => { test('should call get API with base parameters', async () => { - const alertId = uuid.v4(); + const alertId = `${uuid.v4()}/`; + const alertIdEncoded = encodeURIComponent(alertId); const resolvedValue = { - id: '1', + id: '1/', params: { aggType: 'count', termSize: 5, @@ -56,7 +57,7 @@ describe('loadAlert', () => { http.get.mockResolvedValueOnce(resolvedValue); expect(await loadAlert({ http, alertId })).toEqual({ - id: '1', + id: '1/', params: { aggType: 'count', termSize: 5, @@ -94,6 +95,6 @@ describe('loadAlert', () => { }, ], }); - expect(http.get).toHaveBeenCalledWith(`/api/alerting/rule/${alertId}`); + expect(http.get).toHaveBeenCalledWith(`/api/alerting/rule/${alertIdEncoded}`); }); }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.ts index 2e4cbc9b50c5..9fa882c02fa2 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/get_rule.ts @@ -16,6 +16,6 @@ export async function loadAlert({ http: HttpSetup; alertId: string; }): Promise { - const res = await http.get(`${BASE_ALERTING_API_PATH}/rule/${alertId}`); + const res = await http.get(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(alertId)}`); return transformAlert(res); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.test.ts index 75143dd6b7f8..804096dbafac 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.test.ts @@ -13,12 +13,12 @@ beforeEach(() => jest.resetAllMocks()); describe('muteAlert', () => { test('should call mute alert API', async () => { - const result = await muteAlert({ http, id: '1' }); + const result = await muteAlert({ http, id: '1/' }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` Array [ Array [ - "/api/alerting/rule/1/_mute_all", + "/api/alerting/rule/1%2F/_mute_all", ], ] `); @@ -27,7 +27,7 @@ describe('muteAlert', () => { describe('muteAlerts', () => { test('should call mute alert API per alert', async () => { - const ids = ['1', '2', '3']; + const ids = ['1', '2', '/']; const result = await muteAlerts({ http, ids }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` @@ -39,7 +39,7 @@ describe('muteAlerts', () => { "/api/alerting/rule/2/_mute_all", ], Array [ - "/api/alerting/rule/3/_mute_all", + "/api/alerting/rule/%2F/_mute_all", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.ts index 22a96d7a11ff..888cdfa92c8f 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute.ts @@ -8,7 +8,7 @@ import { HttpSetup } from 'kibana/public'; import { BASE_ALERTING_API_PATH } from '../../constants'; export async function muteAlert({ id, http }: { id: string; http: HttpSetup }): Promise { - await http.post(`${BASE_ALERTING_API_PATH}/rule/${id}/_mute_all`); + await http.post(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}/_mute_all`); } export async function muteAlerts({ ids, http }: { ids: string[]; http: HttpSetup }): Promise { diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.test.ts index 4365cce42c8c..384bc65754b0 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.test.ts @@ -12,12 +12,12 @@ const http = httpServiceMock.createStartContract(); describe('muteAlertInstance', () => { test('should call mute instance alert API', async () => { - const result = await muteAlertInstance({ http, id: '1', instanceId: '123' }); + const result = await muteAlertInstance({ http, id: '1/', instanceId: '12/3' }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` Array [ Array [ - "/api/alerting/rule/1/alert/123/_mute", + "/api/alerting/rule/1%2F/alert/12%2F3/_mute", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.ts index 0bb05010cfa3..05f2417db947 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/mute_alert.ts @@ -16,5 +16,9 @@ export async function muteAlertInstance({ instanceId: string; http: HttpSetup; }): Promise { - await http.post(`${BASE_ALERTING_API_PATH}/rule/${id}/alert/${instanceId}/_mute`); + await http.post( + `${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}/alert/${encodeURIComponent( + instanceId + )}/_mute` + ); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.test.ts index 68a6feeb65e1..dfaceffcf8f0 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.test.ts @@ -13,7 +13,7 @@ beforeEach(() => jest.resetAllMocks()); describe('unmuteAlerts', () => { test('should call unmute alert API per alert', async () => { - const ids = ['1', '2', '3']; + const ids = ['1', '2', '/']; const result = await unmuteAlerts({ http, ids }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` @@ -25,7 +25,7 @@ describe('unmuteAlerts', () => { "/api/alerting/rule/2/_unmute_all", ], Array [ - "/api/alerting/rule/3/_unmute_all", + "/api/alerting/rule/%2F/_unmute_all", ], ] `); @@ -34,12 +34,12 @@ describe('unmuteAlerts', () => { describe('unmuteAlert', () => { test('should call unmute alert API', async () => { - const result = await unmuteAlert({ http, id: '1' }); + const result = await unmuteAlert({ http, id: '1/' }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` Array [ Array [ - "/api/alerting/rule/1/_unmute_all", + "/api/alerting/rule/1%2F/_unmute_all", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.ts index c65be6a670a8..bd2139f05264 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute.ts @@ -8,7 +8,7 @@ import { HttpSetup } from 'kibana/public'; import { BASE_ALERTING_API_PATH } from '../../constants'; export async function unmuteAlert({ id, http }: { id: string; http: HttpSetup }): Promise { - await http.post(`${BASE_ALERTING_API_PATH}/rule/${id}/_unmute_all`); + await http.post(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}/_unmute_all`); } export async function unmuteAlerts({ diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.test.ts index c0131cbab0eb..d95c95158b0b 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.test.ts @@ -12,12 +12,12 @@ const http = httpServiceMock.createStartContract(); describe('unmuteAlertInstance', () => { test('should call mute instance alert API', async () => { - const result = await unmuteAlertInstance({ http, id: '1', instanceId: '123' }); + const result = await unmuteAlertInstance({ http, id: '1/', instanceId: '12/3' }); expect(result).toEqual(undefined); expect(http.post.mock.calls).toMatchInlineSnapshot(` Array [ Array [ - "/api/alerting/rule/1/alert/123/_unmute", + "/api/alerting/rule/1%2F/alert/12%2F3/_unmute", ], ] `); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.ts index 60d2cca72b85..2e37aa2c0ee2 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/unmute_alert.ts @@ -16,5 +16,9 @@ export async function unmuteAlertInstance({ instanceId: string; http: HttpSetup; }): Promise { - await http.post(`${BASE_ALERTING_API_PATH}/rule/${id}/alert/${instanceId}/_unmute`); + await http.post( + `${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}/alert/${encodeURIComponent( + instanceId + )}/_unmute` + ); } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.test.ts index 745a94b8d113..3a6059248a3b 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.test.ts @@ -32,7 +32,7 @@ describe('updateAlert', () => { }; const resolvedValue: Alert = { ...alertToUpdate, - id: '123', + id: '12/3', enabled: true, alertTypeId: 'test', createdBy: null, @@ -46,11 +46,11 @@ describe('updateAlert', () => { }; http.put.mockResolvedValueOnce(resolvedValue); - const result = await updateAlert({ http, id: '123', alert: alertToUpdate }); + const result = await updateAlert({ http, id: '12/3', alert: alertToUpdate }); expect(result).toEqual(resolvedValue); expect(http.put.mock.calls[0]).toMatchInlineSnapshot(` Array [ - "/api/alerting/rule/123", + "/api/alerting/rule/12%2F3", Object { "body": "{\\"throttle\\":\\"1m\\",\\"name\\":\\"test\\",\\"tags\\":[\\"foo\\"],\\"schedule\\":{\\"interval\\":\\"1m\\"},\\"params\\":{},\\"notify_when\\":\\"onThrottleInterval\\",\\"actions\\":[]}", }, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.ts index 44b9306949f8..930c0c2fb21a 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/alert_api/update.ts @@ -41,7 +41,7 @@ export async function updateAlert({ >; id: string; }): Promise { - const res = await http.put(`${BASE_ALERTING_API_PATH}/rule/${id}`, { + const res = await http.put(`${BASE_ALERTING_API_PATH}/rule/${encodeURIComponent(id)}`, { body: JSON.stringify( rewriteBodyRequest( pick(alert, ['throttle', 'name', 'tags', 'schedule', 'params', 'actions', 'notifyWhen']) diff --git a/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.test.ts b/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.test.ts index 86d18d98fa0e..37f6219cf30a 100644 --- a/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.test.ts +++ b/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.test.ts @@ -7,8 +7,14 @@ // test error conditions of calling timeSeriesQuery - postive results tested in FT +import type { estypes } from '@elastic/elasticsearch'; import { loggingSystemMock } from '../../../../../../src/core/server/mocks'; -import { TimeSeriesQueryParameters, TimeSeriesQuery, timeSeriesQuery } from './time_series_query'; +import { + TimeSeriesQueryParameters, + TimeSeriesQuery, + timeSeriesQuery, + getResultFromEs, +} from './time_series_query'; // eslint-disable-next-line @kbn/eslint/no-restricted-paths import { elasticsearchClientMock } from '../../../../../../src/core/server/elasticsearch/client/mocks'; @@ -53,3 +59,135 @@ describe('timeSeriesQuery', () => { ); }); }); + +describe('getResultFromEs', () => { + it('correctly parses time series results for count aggregation', () => { + expect( + getResultFromEs(true, false, { + took: 0, + timed_out: false, + _shards: { total: 1, successful: 1, skipped: 0, failed: 0 }, + hits: { total: { value: 0, relation: 'eq' }, hits: [] }, + aggregations: { + dateAgg: { + buckets: [ + { + key: '2021-04-22T15:14:31.075Z-2021-04-22T15:19:31.075Z', + from: 1619104471075, + from_as_string: '2021-04-22T15:14:31.075Z', + to: 1619104771075, + to_as_string: '2021-04-22T15:19:31.075Z', + doc_count: 0, + }, + ], + }, + }, + } as estypes.SearchResponse) + ).toEqual({ + results: [ + { + group: 'all documents', + metrics: [['2021-04-22T15:19:31.075Z', 0]], + }, + ], + }); + }); + + it('correctly parses time series results with no aggregation data for count aggregation', () => { + // this could happen with cross cluster searches when cluster permissions are incorrect + // the query completes but doesn't return any aggregations + expect( + getResultFromEs(true, false, { + took: 0, + timed_out: false, + _shards: { total: 0, successful: 0, skipped: 0, failed: 0 }, + _clusters: { total: 1, successful: 1, skipped: 0 }, + hits: { total: { value: 0, relation: 'eq' }, hits: [] }, + } as estypes.SearchResponse) + ).toEqual({ + results: [], + }); + }); + + it('correctly parses time series results for group aggregation', () => { + expect( + getResultFromEs(false, true, { + took: 1, + timed_out: false, + _shards: { total: 1, successful: 1, skipped: 0, failed: 0 }, + hits: { total: { value: 298, relation: 'eq' }, hits: [] }, + aggregations: { + groupAgg: { + doc_count_error_upper_bound: 0, + sum_other_doc_count: 0, + buckets: [ + { + key: 'host-2', + doc_count: 149, + sortValueAgg: { value: 0.5000000018251423 }, + dateAgg: { + buckets: [ + { + key: '2021-04-22T15:18:43.191Z-2021-04-22T15:23:43.191Z', + from: 1619104723191, + from_as_string: '2021-04-22T15:18:43.191Z', + to: 1619105023191, + to_as_string: '2021-04-22T15:23:43.191Z', + doc_count: 149, + metricAgg: { value: 0.5000000018251423 }, + }, + ], + }, + }, + { + key: 'host-1', + doc_count: 149, + sortValueAgg: { value: 0.5000000011000857 }, + dateAgg: { + buckets: [ + { + key: '2021-04-22T15:18:43.191Z-2021-04-22T15:23:43.191Z', + from: 1619104723191, + from_as_string: '2021-04-22T15:18:43.191Z', + to: 1619105023191, + to_as_string: '2021-04-22T15:23:43.191Z', + doc_count: 149, + metricAgg: { value: 0.5000000011000857 }, + }, + ], + }, + }, + ], + }, + }, + } as estypes.SearchResponse) + ).toEqual({ + results: [ + { + group: 'host-2', + metrics: [['2021-04-22T15:23:43.191Z', 0.5000000018251423]], + }, + { + group: 'host-1', + metrics: [['2021-04-22T15:23:43.191Z', 0.5000000011000857]], + }, + ], + }); + }); + + it('correctly parses time series results with no aggregation data for group aggregation', () => { + // this could happen with cross cluster searches when cluster permissions are incorrect + // the query completes but doesn't return any aggregations + expect( + getResultFromEs(false, true, { + took: 0, + timed_out: false, + _shards: { total: 0, successful: 0, skipped: 0, failed: 0 }, + _clusters: { total: 1, successful: 1, skipped: 0 }, + hits: { total: { value: 0, relation: 'eq' }, hits: [] }, + } as estypes.SearchResponse) + ).toEqual({ + results: [], + }); + }); +}); diff --git a/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.ts b/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.ts index ad044f4570ea..a2ba8d43c9c6 100644 --- a/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.ts +++ b/x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_query.ts @@ -147,7 +147,7 @@ export async function timeSeriesQuery( return getResultFromEs(isCountAgg, isGroupAgg, esResult); } -function getResultFromEs( +export function getResultFromEs( isCountAgg: boolean, isGroupAgg: boolean, esResult: estypes.SearchResponse @@ -155,8 +155,8 @@ function getResultFromEs( const aggregations = esResult?.aggregations || {}; // add a fake 'all documents' group aggregation, if a group aggregation wasn't used - if (!isGroupAgg) { - const dateAgg = aggregations.dateAgg || {}; + if (!isGroupAgg && aggregations.dateAgg) { + const dateAgg = aggregations.dateAgg; aggregations.groupAgg = { buckets: [{ key: 'all documents', dateAgg }], diff --git a/x-pack/test/api_integration/apis/ml/data_frame_analytics/evaluate.ts b/x-pack/test/api_integration/apis/ml/data_frame_analytics/evaluate.ts new file mode 100644 index 000000000000..e1fa889d20da --- /dev/null +++ b/x-pack/test/api_integration/apis/ml/data_frame_analytics/evaluate.ts @@ -0,0 +1,188 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { USER } from '../../../../functional/services/ml/security_common'; +import { DataFrameAnalyticsConfig } from '../../../../../plugins/ml/public/application/data_frame_analytics/common'; +import { DeepPartial } from '../../../../../plugins/ml/common/types/common'; +import { COMMON_REQUEST_HEADERS } from '../../../../functional/services/ml/common_api'; + +export default ({ getService }: FtrProviderContext) => { + const esArchiver = getService('esArchiver'); + const supertest = getService('supertestWithoutAuth'); + const ml = getService('ml'); + + const currentTime = `${Date.now()}`; + const generateDestinationIndex = (analyticsId: string) => `user-${analyticsId}`; + const jobEval: any = { + regression: { + index: generateDestinationIndex(`regression_${currentTime}`), + evaluation: { + regression: { + actual_field: 'stab', + predicted_field: 'ml.stab_prediction', + metrics: { + r_squared: {}, + mse: {}, + msle: {}, + huber: {}, + }, + }, + }, + }, + classification: { + index: generateDestinationIndex(`classification_${currentTime}`), + evaluation: { + classification: { + actual_field: 'y', + predicted_field: 'ml.y_prediction', + metrics: { multiclass_confusion_matrix: {}, accuracy: {}, recall: {} }, + }, + }, + }, + }; + const jobAnalysis: any = { + classification: { + source: { + index: ['ft_bank_marketing'], + query: { + match_all: {}, + }, + }, + analysis: { + classification: { + dependent_variable: 'y', + training_percent: 20, + }, + }, + }, + regression: { + source: { + index: ['ft_egs_regression'], + query: { + match_all: {}, + }, + }, + analysis: { + regression: { + dependent_variable: 'stab', + training_percent: 20, + }, + }, + }, + }; + + interface TestConfig { + jobType: string; + config: DeepPartial; + eval: any; + } + + const testJobConfigs: TestConfig[] = ['regression', 'classification'].map((jobType, idx) => { + const analyticsId = `${jobType}_${currentTime}`; + return { + jobType, + config: { + id: analyticsId, + description: `Testing ${jobType} evaluation`, + dest: { + index: generateDestinationIndex(analyticsId), + results_field: 'ml', + }, + analyzed_fields: { + includes: [], + excludes: [], + }, + model_memory_limit: '60mb', + ...jobAnalysis[jobType], + }, + eval: jobEval[jobType], + }; + }); + + async function createJobs(mockJobConfigs: TestConfig[]) { + for (const jobConfig of mockJobConfigs) { + await ml.api.createAndRunDFAJob(jobConfig.config as DataFrameAnalyticsConfig); + } + } + + describe('POST data_frame/_evaluate', () => { + before(async () => { + await esArchiver.loadIfNeeded('ml/bm_classification'); + await esArchiver.loadIfNeeded('ml/egs_regression'); + await ml.testResources.setKibanaTimeZoneToUTC(); + await createJobs(testJobConfigs); + }); + + after(async () => { + await ml.api.cleanMlIndices(); + }); + + testJobConfigs.forEach((testConfig) => { + describe(`EvaluateDataFrameAnalytics ${testConfig.jobType}`, async () => { + it(`should evaluate ${testConfig.jobType} analytics job`, async () => { + const { body } = await supertest + .post(`/api/ml/data_frame/_evaluate`) + .auth(USER.ML_POWERUSER, ml.securityCommon.getPasswordForUser(USER.ML_POWERUSER)) + .set(COMMON_REQUEST_HEADERS) + .send(testConfig.eval) + .expect(200); + + if (testConfig.jobType === 'classification') { + const { classification } = body; + expect(body).to.have.property('classification'); + expect(classification).to.have.property('recall'); + expect(classification).to.have.property('accuracy'); + expect(classification).to.have.property('multiclass_confusion_matrix'); + } else { + const { regression } = body; + expect(body).to.have.property('regression'); + expect(regression).to.have.property('mse'); + expect(regression).to.have.property('msle'); + expect(regression).to.have.property('r_squared'); + } + }); + + it(`should evaluate ${testConfig.jobType} job for the user with only view permission`, async () => { + const { body } = await supertest + .post(`/api/ml/data_frame/_evaluate`) + .auth(USER.ML_VIEWER, ml.securityCommon.getPasswordForUser(USER.ML_VIEWER)) + .set(COMMON_REQUEST_HEADERS) + .send(testConfig.eval) + .expect(200); + + if (testConfig.jobType === 'classification') { + const { classification } = body; + expect(body).to.have.property('classification'); + expect(classification).to.have.property('recall'); + expect(classification).to.have.property('accuracy'); + expect(classification).to.have.property('multiclass_confusion_matrix'); + } else { + const { regression } = body; + expect(body).to.have.property('regression'); + expect(regression).to.have.property('mse'); + expect(regression).to.have.property('msle'); + expect(regression).to.have.property('r_squared'); + } + }); + + it(`should not allow unauthorized user to evaluate ${testConfig.jobType} job`, async () => { + const { body } = await supertest + .post(`/api/ml/data_frame/_evaluate`) + .auth(USER.ML_UNAUTHORIZED, ml.securityCommon.getPasswordForUser(USER.ML_UNAUTHORIZED)) + .set(COMMON_REQUEST_HEADERS) + .send(testConfig.eval) + .expect(403); + + expect(body.error).to.eql('Forbidden'); + expect(body.message).to.eql('Forbidden'); + }); + }); + }); + }); +}; diff --git a/x-pack/test/api_integration/apis/ml/data_frame_analytics/explain.ts b/x-pack/test/api_integration/apis/ml/data_frame_analytics/explain.ts new file mode 100644 index 000000000000..3e9ad9afb800 --- /dev/null +++ b/x-pack/test/api_integration/apis/ml/data_frame_analytics/explain.ts @@ -0,0 +1,139 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import expect from '@kbn/expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { USER } from '../../../../functional/services/ml/security_common'; +import { DataFrameAnalyticsConfig } from '../../../../../plugins/ml/public/application/data_frame_analytics/common'; +import { DeepPartial } from '../../../../../plugins/ml/common/types/common'; +import { COMMON_REQUEST_HEADERS } from '../../../../functional/services/ml/common_api'; + +export default ({ getService }: FtrProviderContext) => { + const esArchiver = getService('esArchiver'); + const supertest = getService('supertestWithoutAuth'); + const ml = getService('ml'); + + const jobAnalysis: any = { + classification: { + source: { + index: ['ft_bank_marketing'], + query: { + match_all: {}, + }, + }, + analysis: { + classification: { + dependent_variable: 'y', + training_percent: 20, + }, + }, + }, + regression: { + source: { + index: ['ft_egs_regression'], + query: { + match_all: {}, + }, + }, + analysis: { + regression: { + dependent_variable: 'stab', + training_percent: 20, + }, + }, + }, + outlier_detection: { + source: { + index: ['ft_ihp_outlier'], + query: { + match_all: {}, + }, + }, + analysis: { + outlier_detection: {}, + }, + }, + }; + + interface TestConfig { + jobType: string; + config: DeepPartial; + } + + const testJobConfigs: TestConfig[] = ['regression', 'classification', 'outlier_detection'].map( + (jobType) => { + return { + jobType, + config: { + description: `Testing explain for ${jobType} job`, + ...jobAnalysis[jobType], + }, + }; + } + ); + + describe('POST data_frame/analytics/_explain', () => { + before(async () => { + await esArchiver.loadIfNeeded('ml/bm_classification'); + await esArchiver.loadIfNeeded('ml/egs_regression'); + await esArchiver.loadIfNeeded('ml/ihp_outlier'); + await ml.testResources.setKibanaTimeZoneToUTC(); + }); + + after(async () => { + await ml.api.cleanMlIndices(); + }); + + testJobConfigs.forEach((testConfig) => { + describe(`ExplainDataFrameAnalytics ${testConfig.jobType}`, async () => { + it(`should explain ${testConfig.jobType} analytics job`, async () => { + const { body } = await supertest + .post(`/api/ml/data_frame/analytics/_explain`) + .auth(USER.ML_POWERUSER, ml.securityCommon.getPasswordForUser(USER.ML_POWERUSER)) + .set(COMMON_REQUEST_HEADERS) + .send(testConfig.config) + .expect(200); + + expect(body).to.have.property('field_selection'); + // eslint-disable-next-line + const { memory_estimation, field_selection } = body; + const fieldObject = field_selection[0]; + expect(memory_estimation).to.have.property('expected_memory_with_disk'); + expect(memory_estimation).to.have.property('expected_memory_without_disk'); + expect(fieldObject).to.have.property('is_included'); + expect(fieldObject).to.have.property('is_required'); + expect(fieldObject).to.have.property('name'); + expect(fieldObject).to.have.property('feature_type'); + expect(fieldObject).to.have.property('mapping_types'); + }); + + it(`should not allow user with only view permission to use explain endpoint for ${testConfig.jobType} job `, async () => { + const { body } = await supertest + .post(`/api/ml/data_frame/analytics/_explain`) + .auth(USER.ML_VIEWER, ml.securityCommon.getPasswordForUser(USER.ML_VIEWER)) + .set(COMMON_REQUEST_HEADERS) + .send(testConfig.config) + .expect(403); + + expect(body.error).to.eql('Forbidden'); + expect(body.message).to.eql('Forbidden'); + }); + + it(`should not allow unauthorized user to use explain endpoint for ${testConfig.jobType} job`, async () => { + const { body } = await supertest + .post(`/api/ml/data_frame/analytics/_explain`) + .auth(USER.ML_UNAUTHORIZED, ml.securityCommon.getPasswordForUser(USER.ML_UNAUTHORIZED)) + .set(COMMON_REQUEST_HEADERS) + .send(testConfig.config) + .expect(403); + + expect(body.error).to.eql('Forbidden'); + expect(body.message).to.eql('Forbidden'); + }); + }); + }); + }); +}; diff --git a/x-pack/test/api_integration/apis/ml/data_frame_analytics/index.ts b/x-pack/test/api_integration/apis/ml/data_frame_analytics/index.ts index 950f36d325c7..21ff8f2cc64c 100644 --- a/x-pack/test/api_integration/apis/ml/data_frame_analytics/index.ts +++ b/x-pack/test/api_integration/apis/ml/data_frame_analytics/index.ts @@ -20,5 +20,7 @@ export default function ({ loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./get_spaces')); loadTestFile(require.resolve('./update_spaces')); loadTestFile(require.resolve('./delete_spaces')); + loadTestFile(require.resolve('./evaluate')); + loadTestFile(require.resolve('./explain')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/apm/fixtures/cluster.json b/x-pack/test/api_integration/apis/monitoring/apm/fixtures/cluster.json index 12cdf0a98b41..197d8f8fe6c2 100644 --- a/x-pack/test/api_integration/apis/monitoring/apm/fixtures/cluster.json +++ b/x-pack/test/api_integration/apis/monitoring/apm/fixtures/cluster.json @@ -9,7 +9,7 @@ "config": { "container": false }, - "timeOfLastEvent": "2018-08-31T13:59:21.201Z" + "timeOfLastEvent": "2018-08-31T13:59:21.199Z" }, "metrics": { "apm_cpu": [ diff --git a/x-pack/test/api_integration/apis/monitoring/apm/fixtures/instance.json b/x-pack/test/api_integration/apis/monitoring/apm/fixtures/instance.json index 558ca36edade..74abc5de82db 100644 --- a/x-pack/test/api_integration/apis/monitoring/apm/fixtures/instance.json +++ b/x-pack/test/api_integration/apis/monitoring/apm/fixtures/instance.json @@ -147,7 +147,7 @@ "isDerivative": false }, "data": [ - [1535723880000, 5212816], + [1535723880000, 4996912], [1535723910000, 4996912], [1535723940000, 4886176] ] @@ -957,7 +957,7 @@ "data": [ [ 1535723880000, - 5212816 + 4996912 ], [ 1535723910000, @@ -1003,6 +1003,6 @@ "config": { "container": false }, - "timeOfLastEvent": "2018-08-31T13:59:21.201Z" + "timeOfLastEvent": "2018-08-31T13:59:21.199Z" } } diff --git a/x-pack/test/api_integration/apis/monitoring/apm/index.js b/x-pack/test/api_integration/apis/monitoring/apm/index.js index e28a3bdcaf61..ae0623054dc6 100644 --- a/x-pack/test/api_integration/apis/monitoring/apm/index.js +++ b/x-pack/test/api_integration/apis/monitoring/apm/index.js @@ -8,7 +8,10 @@ export default function ({ loadTestFile }) { describe('APM', () => { loadTestFile(require.resolve('./overview')); + loadTestFile(require.resolve('./overview_mb')); loadTestFile(require.resolve('./instances')); + loadTestFile(require.resolve('./instances_mb')); loadTestFile(require.resolve('./instance')); + loadTestFile(require.resolve('./instance_mb')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/apm/instance_mb.js b/x-pack/test/api_integration/apis/monitoring/apm/instance_mb.js new file mode 100644 index 000000000000..b47b44c395ef --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/apm/instance_mb.js @@ -0,0 +1,42 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import apmInstanceFixture from './fixtures/instance'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('instance detail mb', () => { + const archive = 'monitoring/apm_mb'; + const timeRange = { + min: '2018-08-31T12:59:49.104Z', + max: '2018-08-31T13:59:49.104Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should get apm instance data', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/GUtE4UwgSR-XUICRDEFKkA/apm/9b16f434-2092-4983-a401-80a2b61c79d6' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(apmInstanceFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/apm/instances.js b/x-pack/test/api_integration/apis/monitoring/apm/instances.js index 3ddcdadf96af..a18569711cd6 100644 --- a/x-pack/test/api_integration/apis/monitoring/apm/instances.js +++ b/x-pack/test/api_integration/apis/monitoring/apm/instances.js @@ -39,7 +39,7 @@ export default function ({ getService }) { apms: { total: 2, }, - timeOfLastEvent: '2018-08-31T13:59:21.201Z', + timeOfLastEvent: '2018-08-31T13:59:21.199Z', }, apms: [ { @@ -52,7 +52,7 @@ export default function ({ getService }) { errors: 0, memory: 3445920, version: '7.0.0-alpha1', - time_of_last_event: '2018-08-31T13:59:21.201Z', + time_of_last_event: '2018-08-31T13:59:21.199Z', }, { uuid: '9b16f434-2092-4983-a401-80a2b61c79d6', @@ -64,7 +64,7 @@ export default function ({ getService }) { errors: 0, memory: 3087640, version: '7.0.0-alpha1', - time_of_last_event: '2018-08-31T13:59:21.165Z', + time_of_last_event: '2018-08-31T13:59:21.163Z', }, ], }; diff --git a/x-pack/test/api_integration/apis/monitoring/apm/instances_mb.js b/x-pack/test/api_integration/apis/monitoring/apm/instances_mb.js new file mode 100644 index 000000000000..4ebbd50691d1 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/apm/instances_mb.js @@ -0,0 +1,75 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('list mb', () => { + const archive = 'monitoring/apm_mb'; + const timeRange = { + min: '2018-08-31T12:59:49.104Z', + max: '2018-08-31T13:59:49.104Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should load multiple clusters', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/GUtE4UwgSR-XUICRDEFKkA/apm/instances') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + const expected = { + stats: { + totalEvents: 18, + apms: { + total: 2, + }, + timeOfLastEvent: '2018-08-31T13:59:21.199Z', + }, + apms: [ + { + uuid: '55f1089b-43b1-472a-919a-344667bae595', + name: 'd06490170f2b', + type: 'Apm-server', + output: 'Elasticsearch', + total_events_rate: 0.0033333333333333335, + bytes_sent_rate: 5.7316666666666665, + errors: 0, + memory: 3445920, + version: '7.0.0-alpha1', + time_of_last_event: '2018-08-31T13:59:21.199Z', + }, + { + uuid: '9b16f434-2092-4983-a401-80a2b61c79d6', + name: '01323afae1fb', + type: 'Apm-server', + output: 'Elasticsearch', + total_events_rate: 0.0016666666666666668, + bytes_sent_rate: 2.9105555555555553, + errors: 0, + memory: 3087640, + version: '7.0.0-alpha1', + time_of_last_event: '2018-08-31T13:59:21.163Z', + }, + ], + }; + + expect(body).to.eql(expected); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/apm/overview_mb.js b/x-pack/test/api_integration/apis/monitoring/apm/overview_mb.js new file mode 100644 index 000000000000..58e257430235 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/apm/overview_mb.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import apmClusterFixture from './fixtures/cluster'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('overview mb', () => { + const archive = 'monitoring/apm_mb'; + const timeRange = { + min: '2018-08-31T12:59:49.104Z', + max: '2018-08-31T13:59:49.104Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize apm cluster with metrics', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/GUtE4UwgSR-XUICRDEFKkA/apm') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(apmClusterFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/beats/detail.js b/x-pack/test/api_integration/apis/monitoring/beats/detail.js index 4a5832972971..d1b4c277ef03 100644 --- a/x-pack/test/api_integration/apis/monitoring/beats/detail.js +++ b/x-pack/test/api_integration/apis/monitoring/beats/detail.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('instance detail', () => { - const archive = 'monitoring/beats-with-restarted-instance'; + const archive = 'monitoring/beats_with_restarted_instance'; const timeRange = { min: '2018-02-09T20:49:00Z', max: '2018-02-09T21:50:00Z', diff --git a/x-pack/test/api_integration/apis/monitoring/beats/detail_mb.js b/x-pack/test/api_integration/apis/monitoring/beats/detail_mb.js new file mode 100644 index 000000000000..c43050d054fa --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/beats/detail_mb.js @@ -0,0 +1,42 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import beatDetailFixture from './fixtures/detail'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('instance detail mb', () => { + const archive = 'monitoring/beats_with_restarted_instance_mb'; + const timeRange = { + min: '2018-02-09T20:49:00Z', + max: '2018-02-09T21:50:00Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize beat with metrics', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/fHJwISmKTFO8bj57oFBLUQ/beats/beat/60599a4f-8139-4251-b0b9-15866df34221' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(beatDetailFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/beats/index.js b/x-pack/test/api_integration/apis/monitoring/beats/index.js index f3156ae7bce6..8fe09e457f68 100644 --- a/x-pack/test/api_integration/apis/monitoring/beats/index.js +++ b/x-pack/test/api_integration/apis/monitoring/beats/index.js @@ -8,7 +8,10 @@ export default function ({ loadTestFile }) { describe('Beats', () => { loadTestFile(require.resolve('./overview')); + loadTestFile(require.resolve('./overview_mb')); loadTestFile(require.resolve('./list')); + loadTestFile(require.resolve('./list_mb')); loadTestFile(require.resolve('./detail')); + loadTestFile(require.resolve('./detail_mb')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/beats/list.js b/x-pack/test/api_integration/apis/monitoring/beats/list.js index d4568c768b06..6c8fa8368c6a 100644 --- a/x-pack/test/api_integration/apis/monitoring/beats/list.js +++ b/x-pack/test/api_integration/apis/monitoring/beats/list.js @@ -13,7 +13,7 @@ export default function ({ getService }) { describe('list', () => { describe('with restarted beat instance', () => { - const archive = 'monitoring/beats-with-restarted-instance'; + const archive = 'monitoring/beats_with_restarted_instance'; const timeRange = { min: '2018-02-09T20:49:00Z', max: '2018-02-09T21:50:00Z', diff --git a/x-pack/test/api_integration/apis/monitoring/beats/list_mb.js b/x-pack/test/api_integration/apis/monitoring/beats/list_mb.js new file mode 100644 index 000000000000..3896bac794b0 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/beats/list_mb.js @@ -0,0 +1,75 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('list mb', () => { + describe('with restarted beat instance', () => { + const archive = 'monitoring/beats_with_restarted_instance_mb'; + const timeRange = { + min: '2018-02-09T20:49:00Z', + max: '2018-02-09T21:50:00Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should load multiple clusters', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/fHJwISmKTFO8bj57oFBLUQ/beats/beats') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + const expected = { + stats: { + total: 2, + types: [ + { type: 'Metricbeat', count: 1 }, + { type: 'Filebeat', count: 1 }, + ], + stats: { totalEvents: 12829, bytesSent: 2040312125 }, + }, + listing: [ + { + uuid: '2736e08b-5830-409b-8169-32aac39c5e55', + name: 'spicy.local', + type: 'Filebeat', + output: 'Elasticsearch', + total_events_rate: 0.018032786885245903, + bytes_sent_rate: 24135.450546448086, + errors: 0, + memory: 30680648, + version: '7.0.0-alpha1', + }, + { + uuid: '60599a4f-8139-4251-b0b9-15866df34221', + name: 'spicy.local', + type: 'Metricbeat', + output: 'Elasticsearch', + total_events_rate: 3.1327868852459018, + bytes_sent_rate: 2613.3185792349727, + errors: 0, + memory: 7598304, + version: '7.0.0-alpha1', + }, + ], + }; + expect(body).to.eql(expected); + }); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/beats/overview_mb.js b/x-pack/test/api_integration/apis/monitoring/beats/overview_mb.js new file mode 100644 index 000000000000..1e4c678539e2 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/beats/overview_mb.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import beatsClusterFixture from './fixtures/cluster'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('overview mb', () => { + const archive = 'monitoring/beats_mb'; + const timeRange = { + min: '2017-12-19T18:11:32.000Z', + max: '2017-12-19T18:14:38.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize beats cluster with metrics', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/FlV4ckTxQ0a78hmBkzzc9A/beats') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(beatsClusterFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/multicluster.json b/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/multicluster.json index 027dc898cacb..2bbd9029e698 100644 --- a/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/multicluster.json +++ b/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/multicluster.json @@ -17,25 +17,7 @@ }, "shards": { "total": 1, - "primaries": 1, - "replication": 0, - "index": { - "shards": { - "min": 1, - "max": 1, - "avg": 1 - }, - "primaries": { - "min": 1, - "max": 1, - "avg": 1 - }, - "replication": { - "min": 0, - "max": 0, - "avg": 0 - } - } + "primaries": 1 }, "store": { "size_in_bytes": 34095 @@ -44,7 +26,6 @@ "nodes": { "fs": { "total_in_bytes": 499065712640, - "free_in_bytes": 200665341952, "available_in_bytes": 200403197952 }, "count": { @@ -85,19 +66,19 @@ "count": 0 }, "beats": { - "totalEvents": null, - "bytesSent": null, + "totalEvents": 0, + "bytesSent": 0, "beats": { - "total": null, + "total": 0, "types": [] } }, "apm": { - "totalEvents": null, - "memRss": null, - "memTotal": null, + "totalEvents": 0, + "memRss": 0, + "memTotal": 0, "apms": { - "total": null + "total": 0 }, "config": { "container": false @@ -132,25 +113,7 @@ }, "shards": { "total": 8, - "primaries": 8, - "replication": 0, - "index": { - "shards": { - "min": 1, - "max": 1, - "avg": 1 - }, - "primaries": { - "min": 1, - "max": 1, - "avg": 1 - }, - "replication": { - "min": 0, - "max": 0, - "avg": 0 - } - } + "primaries": 8 }, "store": { "size_in_bytes": 2647163 @@ -159,7 +122,6 @@ "nodes": { "fs": { "total_in_bytes": 499065712640, - "free_in_bytes": 200665792512, "available_in_bytes": 200403648512 }, "count": { @@ -200,19 +162,19 @@ "count": 0 }, "beats": { - "totalEvents": null, - "bytesSent": null, + "totalEvents": 0, + "bytesSent": 0, "beats": { - "total": null, + "total": 0, "types": [] } }, "apm": { - "totalEvents": null, - "memRss": null, - "memTotal": null, + "totalEvents": 0, + "memRss": 0, + "memTotal": 0, "apms": { - "total": null + "total": 0 }, "config": { "container": false @@ -247,25 +209,7 @@ }, "shards": { "total": 26, - "primaries": 13, - "replication": 1, - "index": { - "shards": { - "min": 2, - "max": 10, - "avg": 5.2 - }, - "primaries": { - "min": 1, - "max": 5, - "avg": 2.6 - }, - "replication": { - "min": 1, - "max": 1, - "avg": 1 - } - } + "primaries": 13 }, "store": { "size_in_bytes": 4838464 @@ -274,7 +218,6 @@ "nodes": { "fs": { "total_in_bytes": 499065712640, - "free_in_bytes": 200666353664, "available_in_bytes": 200404209664 }, "count": { @@ -315,19 +258,19 @@ "count": 1 }, "beats": { - "totalEvents": null, - "bytesSent": null, + "totalEvents": 0, + "bytesSent": 0, "beats": { - "total": null, + "total": 0, "types": [] } }, "apm": { - "totalEvents": null, - "memRss": null, - "memTotal": null, + "totalEvents": 0, + "memRss": 0, + "memTotal": 0, "apms": { - "total": null + "total": 0 }, "config": { "container": false diff --git a/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/overview.json b/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/overview.json index 8fed03d9a8a3..7eaf2bbee289 100644 --- a/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/overview.json +++ b/x-pack/test/api_integration/apis/monitoring/cluster/fixtures/overview.json @@ -17,25 +17,7 @@ }, "shards": { "total": 98, - "primaries": 49, - "replication": 1, - "index": { - "shards": { - "min": 2, - "max": 10, - "avg": 5.764705882352941 - }, - "primaries": { - "min": 1, - "max": 5, - "avg": 2.8823529411764706 - }, - "replication": { - "min": 1, - "max": 1, - "avg": 1 - } - } + "primaries": 49 }, "store": { "size_in_bytes": 11826390 @@ -44,7 +26,6 @@ "nodes": { "fs": { "total_in_bytes": 499065712640, - "free_in_bytes": 201648541696, "available_in_bytes": 201386397696 }, "count": { @@ -99,19 +80,19 @@ "count": 1 }, "beats": { - "totalEvents": null, - "bytesSent": null, + "totalEvents": 0, + "bytesSent": 0, "beats": { - "total": null, + "total": 0, "types": [] } }, "apm": { - "totalEvents": null, - "memRss": null, - "memTotal": null, + "totalEvents": 0, + "memRss": 0, + "memTotal": 0, "apms": { - "total": null + "total": 0 }, "config": { "container": false diff --git a/x-pack/test/api_integration/apis/monitoring/cluster/index.js b/x-pack/test/api_integration/apis/monitoring/cluster/index.js index 8e0327a1d166..fb99f5e0b960 100644 --- a/x-pack/test/api_integration/apis/monitoring/cluster/index.js +++ b/x-pack/test/api_integration/apis/monitoring/cluster/index.js @@ -8,6 +8,8 @@ export default function ({ loadTestFile }) { describe('cluster', () => { loadTestFile(require.resolve('./list')); + loadTestFile(require.resolve('./list_mb')); loadTestFile(require.resolve('./overview')); + loadTestFile(require.resolve('./overview_mb')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/cluster/list_mb.js b/x-pack/test/api_integration/apis/monitoring/cluster/list_mb.js new file mode 100644 index 000000000000..fadc81f298c1 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/cluster/list_mb.js @@ -0,0 +1,42 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import multiclusterFixture from './fixtures/multicluster'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('list mb', () => { + describe('with trial license clusters', () => { + const archive = 'monitoring/multicluster_mb'; + const timeRange = { + min: '2017-08-15T21:00:00Z', + max: '2017-08-16T00:00:00Z', + }; + const codePaths = ['all']; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should load multiple clusters', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, codePaths }) + .expect(200); + expect(body).to.eql(multiclusterFixture); + }); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/cluster/overview.js b/x-pack/test/api_integration/apis/monitoring/cluster/overview.js index 1d4f61ead1e9..7484bbb644a9 100644 --- a/x-pack/test/api_integration/apis/monitoring/cluster/overview.js +++ b/x-pack/test/api_integration/apis/monitoring/cluster/overview.js @@ -17,7 +17,7 @@ export default function ({ getService }) { this.tags(['skipCloud']); describe('with trial license clusters', () => { - const archive = 'monitoring/singlecluster-green-gold'; + const archive = 'monitoring/singlecluster_green_gold'; const timeRange = { min: '2017-08-23T21:29:35Z', max: '2017-08-23T21:47:25Z', diff --git a/x-pack/test/api_integration/apis/monitoring/cluster/overview_mb.js b/x-pack/test/api_integration/apis/monitoring/cluster/overview_mb.js new file mode 100644 index 000000000000..3f291e22c111 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/cluster/overview_mb.js @@ -0,0 +1,45 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import overviewFixture from './fixtures/overview'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('overview mb', function () { + // TODO: https://github.com/elastic/stack-monitoring/issues/31 + this.tags(['skipCloud']); + + describe('with trial license clusters', () => { + const archive = 'monitoring/singlecluster_green_gold_mb'; + const timeRange = { + min: '2017-08-23T21:29:35Z', + max: '2017-08-23T21:47:25Z', + }; + const codePaths = ['all']; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should load multiple clusters', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/y1qOsQPiRrGtmdEuM3APJw') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, codePaths }) + .expect(200); + expect(body).to.eql(overviewFixture); + }); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/ccr_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/ccr_mb.js new file mode 100644 index 000000000000..2af3ae5af78f --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/ccr_mb.js @@ -0,0 +1,42 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import ccrFixture from './fixtures/ccr'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('ccr mb', () => { + const archive = 'monitoring/ccr_mb'; + const timeRange = { + min: '2018-09-19T00:00:00.000Z', + max: '2018-09-19T23:59:59.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should return all followers and a grouping of stats by follower index', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/ccr') + .set('kbn-xsrf', 'xxx') + .send({ + timeRange, + }) + .expect(200); + + expect(body).to.eql(ccrFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/ccr_shard_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/ccr_shard_mb.js new file mode 100644 index 000000000000..516f66ba6f19 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/ccr_shard_mb.js @@ -0,0 +1,47 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { omit } from 'lodash'; +import expect from '@kbn/expect'; +import ccrShardFixture from './fixtures/ccr_shard'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('ccr shard mb', () => { + const archive = 'monitoring/ccr_mb'; + const timeRange = { + min: '2018-09-19T00:00:00.000Z', + max: '2018-09-19T23:59:59.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should return specific shard details', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/ccr/follower/shard/0' + ) + .set('kbn-xsrf', 'xxx') + .send({ + timeRange, + }) + .expect(200); + + // These will be inherently different, but they are only shown in JSON format in the UI so that's okay + const keysToIgnore = ['stat', 'oldestStat']; + expect(omit(body, keysToIgnore)).to.eql(omit(ccrShardFixture, keysToIgnore)); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/index.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/index.js index b47cf59b4265..ad864979a15f 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/index.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/index.js @@ -8,12 +8,20 @@ export default function ({ loadTestFile }) { describe('Elasticsearch', () => { loadTestFile(require.resolve('./overview')); + loadTestFile(require.resolve('./overview_mb')); loadTestFile(require.resolve('./nodes')); + loadTestFile(require.resolve('./nodes_mb')); loadTestFile(require.resolve('./node_detail')); + loadTestFile(require.resolve('./node_detail_mb')); loadTestFile(require.resolve('./node_detail_advanced')); + loadTestFile(require.resolve('./node_detail_advanced_mb')); loadTestFile(require.resolve('./indices')); + loadTestFile(require.resolve('./indices_mb')); loadTestFile(require.resolve('./index_detail')); + loadTestFile(require.resolve('./index_detail_mb')); loadTestFile(require.resolve('./ccr')); + loadTestFile(require.resolve('./ccr_mb')); loadTestFile(require.resolve('./ccr_shard')); + loadTestFile(require.resolve('./ccr_shard_mb')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail.js index 1f09172782fa..87610feb38f1 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail.js @@ -14,7 +14,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('index detail', () => { - const archive = 'monitoring/singlecluster-three-nodes-shard-relocation'; + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation'; const timeRange = { min: '2017-10-05T20:31:48.000Z', max: '2017-10-05T20:35:12.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail_mb.js new file mode 100644 index 000000000000..cd7cd02e13ce --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/index_detail_mb.js @@ -0,0 +1,61 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import indexDetailFixture from './fixtures/index_detail'; +import indexDetailAdvancedFixture from './fixtures/index_detail_advanced'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('index detail mb', () => { + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation_mb'; + const timeRange = { + min: '2017-10-05T20:31:48.000Z', + max: '2017-10-05T20:35:12.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize index with chart metrics data for the non-advanced view', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/indices/avocado-tweets-2017.10.02' + ) + .set('kbn-xsrf', 'xxx') + .send({ + timeRange, + is_advanced: false, + }) + .expect(200); + + expect(body).to.eql(indexDetailFixture); + }); + + it('should summarize index with chart metrics data for the advanced view', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/indices/avocado-tweets-2017.10.02' + ) + .set('kbn-xsrf', 'xxx') + .send({ + timeRange, + is_advanced: true, + }) + .expect(200); + + expect(body).to.eql(indexDetailAdvancedFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices.js index 0d223fa7a974..ba84a5b71115 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices.js @@ -17,7 +17,7 @@ export default function ({ getService }) { describe('indices', () => { describe('shard-relocation', () => { - const archive = 'monitoring/singlecluster-three-nodes-shard-relocation'; + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation'; const timeRange = { min: '2017-10-05T20:31:48.000Z', max: '2017-10-05T20:35:12.000Z', @@ -57,7 +57,7 @@ export default function ({ getService }) { }); describe('health-red', () => { - const archive = 'monitoring/singlecluster-red-platinum'; + const archive = 'monitoring/singlecluster_red_platinum'; const timeRange = { min: '2017-10-06T19:53:06.000Z', max: '2017-10-06T20:15:30.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices_mb.js new file mode 100644 index 000000000000..083e38b73251 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/indices_mb.js @@ -0,0 +1,97 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import relocatingShardsFixture from './fixtures/indices_shards_relocating'; +import relocationShardsAllFixture from './fixtures/indices_shards_relocating_all'; +import indicesRedClusterFixture from './fixtures/indices_red_cluster'; +import indicesRedClusterAllFixture from './fixtures/indices_red_cluster_all'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('indices mb', () => { + describe('shard-relocation', () => { + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation_mb'; + const timeRange = { + min: '2017-10-05T20:31:48.000Z', + max: '2017-10-05T20:35:12.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize the non-system indices with stats', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/indices?show_system_indices=false' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + expect(body).to.eql(relocatingShardsFixture); + }); + + it('should summarize all indices with stats', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/indices?show_system_indices=true' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(relocationShardsAllFixture); + }); + }); + + describe('health-red', () => { + const archive = 'monitoring/singlecluster_red_platinum'; + const timeRange = { + min: '2017-10-06T19:53:06.000Z', + max: '2017-10-06T20:15:30.000Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize the non-system indices with stats', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/1LYuyvCCQFS3FAO_h65PQw/elasticsearch/indices?show_system_indices=false' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + expect(body).to.eql(indicesRedClusterFixture); + }); + + it('should summarize all indices with stats', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/1LYuyvCCQFS3FAO_h65PQw/elasticsearch/indices?show_system_indices=true' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(indicesRedClusterAllFixture); + }); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail.js index ba7904761015..4022f45ba400 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail.js @@ -16,7 +16,7 @@ export default function ({ getService }) { // TODO: https://github.com/elastic/stack-monitoring/issues/31 this.tags(['skipCloud']); - const archive = 'monitoring/singlecluster-three-nodes-shard-relocation'; + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation'; const timeRange = { min: '2017-10-05T20:31:48.000Z', max: '2017-10-05T20:35:12.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced.js index 3339a72f78a5..d19fa00c7e80 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('node detail advanced', () => { - const archive = 'monitoring/singlecluster-three-nodes-shard-relocation'; + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation'; const timeRange = { min: '2017-10-05T20:31:48.000Z', max: '2017-10-05T20:35:12.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced_mb.js new file mode 100644 index 000000000000..127af8e2367c --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_advanced_mb.js @@ -0,0 +1,45 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import nodeDetailFixture from './fixtures/node_detail_advanced'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('node detail advanced mb', () => { + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation_mb'; + const timeRange = { + min: '2017-10-05T20:31:48.000Z', + max: '2017-10-05T20:35:12.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize node with metrics', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/nodes/jUT5KdxfRbORSCWkb5zjmA' + ) + .set('kbn-xsrf', 'xxx') + .send({ + timeRange, + is_advanced: true, + }) + .expect(200); + + expect(body).to.eql(nodeDetailFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_mb.js new file mode 100644 index 000000000000..50df0dc2c972 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/node_detail_mb.js @@ -0,0 +1,49 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import nodeDetailFixture from './fixtures/node_detail'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('node detail mb', function () { + // TODO: https://github.com/elastic/stack-monitoring/issues/31 + this.tags(['skipCloud']); + + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation_mb'; + const timeRange = { + min: '2017-10-05T20:31:48.000Z', + max: '2017-10-05T20:35:12.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize node with metrics', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch/nodes/jUT5KdxfRbORSCWkb5zjmA' + ) + .set('kbn-xsrf', 'xxx') + .send({ + timeRange, + is_advanced: false, + showSystemIndices: false, + }) + .expect(200); + + expect(body).to.eql(nodeDetailFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes.js index 90c51f84bee9..c22c30370b22 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes.js @@ -17,7 +17,7 @@ export default function ({ getService }) { describe('nodes', () => { describe('with green platinum cluster', () => { - const archive = 'monitoring/singlecluster-green-platinum'; + const archive = 'monitoring/singlecluster_green_platinum'; const timeRange = { min: '2018-02-13T17:04:50.000Z', max: '2018-02-13T17:51:55.000Z', @@ -46,7 +46,7 @@ export default function ({ getService }) { }); describe('with red platinum cluster', () => { - const archive = 'monitoring/singlecluster-red-platinum'; + const archive = 'monitoring/singlecluster_red_platinum'; const timeRange = { min: '2017-10-06T19:53:06.000Z', max: '2017-10-06T20:15:30.000Z', @@ -75,7 +75,7 @@ export default function ({ getService }) { }); describe('with green trial cluster and node in cpu group', () => { - const archive = 'monitoring/singlecluster-green-trial-two-nodes-one-cgrouped'; + const archive = 'monitoring/singlecluster_green_trial_two_nodes_one_cgrouped'; const timeRange = { min: '2018-02-13T19:18:02.000Z', max: '2018-02-13T19:26:14.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes_mb.js new file mode 100644 index 000000000000..c31a5d225004 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/nodes_mb.js @@ -0,0 +1,344 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import nodesListingFixtureGreen from './fixtures/nodes_listing_green'; +import nodesListingFixtureRed from './fixtures/nodes_listing_red'; +import nodesListingFixtureCgroup from './fixtures/nodes_listing_cgroup'; +import nodesListingFixturePagination from './fixtures/nodes_listing_pagination'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('nodes mb', () => { + describe('with green platinum cluster', () => { + const archive = 'monitoring/singlecluster_green_platinum_mb'; + const timeRange = { + min: '2018-02-13T17:04:50.000Z', + max: '2018-02-13T17:51:55.000Z', + }; + const pagination = { + size: 10, + index: 0, + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should return data for 2 active nodes', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/fHJwISmKTFO8bj57oFBLUQ/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination }) + .expect(200); + expect(body).to.eql(nodesListingFixtureGreen); + }); + }); + + describe('with red platinum cluster', () => { + const archive = 'monitoring/singlecluster_red_platinum'; + const timeRange = { + min: '2017-10-06T19:53:06.000Z', + max: '2017-10-06T20:15:30.000Z', + }; + const pagination = { + size: 10, + index: 0, + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should return data for offline nodes', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/1LYuyvCCQFS3FAO_h65PQw/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination }) + .expect(200); + expect(body).to.eql(nodesListingFixtureRed); + }); + }); + + describe('with green trial cluster and node in cpu group', () => { + const archive = 'monitoring/singlecluster_green_trial_two_nodes_one_cgrouped'; + const timeRange = { + min: '2018-02-13T19:18:02.000Z', + max: '2018-02-13T19:26:14.000Z', + }; + const pagination = { + size: 10, + index: 0, + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should return cpu info for cgroup node and cpu info for "regular" node', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Cbo7k85ZRdy--yxmqeykog/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination }) + .expect(200); + expect(body).to.eql(nodesListingFixtureCgroup); + }); + }); + + describe('with pagination', () => { + const archive = 'monitoring/singlecluster_lots_of_nodes'; + const timeRange = { + min: '2019-10-03T19:41:01.402Z', + max: '2019-10-03T19:41:13.132Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should work with the default pagination', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination }) + .expect(200); + + const names = body.nodes.map((node) => node.name); + expect(body.nodes.length).to.be(pagination.size); + expect(names).to.eql(nodesListingFixturePagination.defaultPagination); + }); + + it('should work with going to page 2', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const { body: body1 } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination }) + .expect(200); + const names1 = body1.nodes.map((node) => node.name); + + const { body: body2 } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination: { size: 12, index: 1 } }) + .expect(200); + const names2 = body2.nodes.map((node) => node.name); + + for (const name1 of names1) { + expect(names2.includes(name1)).to.be(false); + } + expect(names2.length).to.be(12); + expect(names2).to.eql(nodesListingFixturePagination.secondPagePagination); + }); + }); + + describe('with sorting', () => { + const archive = 'monitoring/singlecluster_lots_of_nodes'; + const timeRange = { + min: '2019-10-03T19:41:01.402Z', + max: '2019-10-03T19:41:13.132Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should work with the default sorting', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const sort = { + field: 'name', + direction: 'asc', + }; + + const { body: body1 } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort }) + .expect(200); + + const { body: body2 } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort: { ...sort, direction: 'desc' } }) + .expect(200); + + const names1 = body1.nodes.map((node) => node.name); + const names2 = body2.nodes.map((node) => node.name); + + expect(names1).to.eql(nodesListingFixturePagination.sortByNameAsc); + expect(names2).to.eql(nodesListingFixturePagination.sortByNameDesc); + for (const name1 of names1) { + expect(names2.includes(name1)).to.be(false); + } + }); + + it('should work with sorting by cpu usage', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const sort = { + field: 'node_cpu_utilization', + direction: 'asc', + }; + + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort }) + .expect(200); + + const cpuUsage = body.nodes.map((node) => ({ + name: node.name, + cpu_usage: node.node_cpu_utilization.summary, + })); + expect(cpuUsage).to.eql(nodesListingFixturePagination.sortByCpuUsage); + }); + + it('should work with sorting by load average', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const sort = { + field: 'node_load_average', + direction: 'asc', + }; + + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort }) + .expect(200); + + const loadAverage = body.nodes.map((node) => ({ + name: node.name, + load_average: node.node_load_average.summary, + })); + expect(loadAverage).to.eql(nodesListingFixturePagination.sortByLoadAverage); + }); + + it('should work with sorting by jvm memory', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const sort = { + field: 'node_jvm_mem_percent', + direction: 'asc', + }; + + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort }) + .expect(200); + + const jvmMemory = body.nodes.map((node) => ({ + name: node.name, + jvm_memory: node.node_jvm_mem_percent.summary, + })); + expect(jvmMemory).to.eql(nodesListingFixturePagination.sortByJvmMemory); + }); + + it('should work with sorting by free space', async () => { + const pagination = { + size: 10, + index: 0, + }; + + const sort = { + field: 'node_free_space', + direction: 'asc', + }; + + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort }) + .expect(200); + + const freeSpace = body.nodes.map((node) => ({ + name: node.name, + free_space: node.node_free_space.summary, + })); + expect(freeSpace).to.eql(nodesListingFixturePagination.sortByFreeSpace); + }); + }); + + describe('with filtering', () => { + const archive = 'monitoring/singlecluster_lots_of_nodes'; + const timeRange = { + min: '2019-10-03T19:41:01.402Z', + max: '2019-10-03T19:41:13.132Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should work with a simple query', async () => { + const pagination = { + size: 10, + index: 0, + }; + const queryText = '41'; + + const { body } = await supertest + .post('/api/monitoring/v1/clusters/Pawu2etQQ9uPwl22Vm_Tug/elasticsearch/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, queryText }) + .expect(200); + + const names = body.nodes.map((node) => node.name); + expect(names).to.eql(nodesListingFixturePagination.simpleQuery); + }); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview.js index 75c56b8b3f4d..ea63023fa634 100644 --- a/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview.js +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview.js @@ -17,7 +17,7 @@ export default function ({ getService }) { describe('overview', () => { describe('with green platinum cluster', () => { - const archive = 'monitoring/singlecluster-green-platinum'; + const archive = 'monitoring/singlecluster_green_platinum'; const timeRange = { min: '2018-02-13T17:04:50.000Z', max: '2018-02-13T17:51:55.000Z', @@ -42,7 +42,7 @@ export default function ({ getService }) { }); describe('with red platinum cluster', () => { - const archive = 'monitoring/singlecluster-red-platinum'; + const archive = 'monitoring/singlecluster_red_platinum'; const timeRange = { min: '2017-10-06T19:53:06.000Z', max: '2017-10-06T20:15:30.000Z', @@ -67,7 +67,7 @@ export default function ({ getService }) { }); describe('with shards relocating', () => { - const archive = 'monitoring/singlecluster-three-nodes-shard-relocation'; + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation'; const timeRange = { min: '2017-10-05T20:31:17.081Z', max: '2017-10-05T20:35:39.428Z', diff --git a/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview_mb.js b/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview_mb.js new file mode 100644 index 000000000000..a6e26708fbfc --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/elasticsearch/overview_mb.js @@ -0,0 +1,94 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; + +import overviewFixtureGreenPlatinum from './fixtures/overview_green_platinum'; +import overviewFixtureRedPlatinum from './fixtures/overview_red_platinum'; +import overviewFixtureShardsRelocating from './fixtures/overview_shards_relocating'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('overview mb', () => { + describe('with green platinum cluster', () => { + const archive = 'monitoring/singlecluster_green_platinum_mb'; + const timeRange = { + min: '2018-02-13T17:04:50.000Z', + max: '2018-02-13T17:51:55.000Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize elasticsearch with metrics', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/fHJwISmKTFO8bj57oFBLUQ/elasticsearch') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + expect(body).to.eql(overviewFixtureGreenPlatinum); + }); + }); + + describe('with red platinum cluster', () => { + const archive = 'monitoring/singlecluster_red_platinum'; + const timeRange = { + min: '2017-10-06T19:53:06.000Z', + max: '2017-10-06T20:15:30.000Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize elasticsearch with metrics', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/1LYuyvCCQFS3FAO_h65PQw/elasticsearch') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + expect(body).to.eql(overviewFixtureRedPlatinum); + }); + }); + + describe('with shards relocating', () => { + const archive = 'monitoring/singlecluster_three_nodes_shard_relocation'; + const timeRange = { + min: '2017-10-05T20:31:17.081Z', + max: '2017-10-05T20:35:39.428Z', + }; + + before('load clusters archive', () => { + return esArchiver.load(archive); + }); + + after('unload clusters archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize elasticsearch with metrics', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/YCxj-RAgSZCP6GuOQ8M1EQ/elasticsearch') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + expect(body).to.eql(overviewFixtureShardsRelocating); + }); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/index.js b/x-pack/test/api_integration/apis/monitoring/kibana/index.js index 28d5c7c18a5d..b54b09102bc1 100644 --- a/x-pack/test/api_integration/apis/monitoring/kibana/index.js +++ b/x-pack/test/api_integration/apis/monitoring/kibana/index.js @@ -8,7 +8,10 @@ export default function ({ loadTestFile }) { describe('Kibana', () => { loadTestFile(require.resolve('./overview')); + loadTestFile(require.resolve('./overview_mb')); loadTestFile(require.resolve('./listing')); + loadTestFile(require.resolve('./listing_mb')); loadTestFile(require.resolve('./instance')); + loadTestFile(require.resolve('./instance_mb')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/instance.js b/x-pack/test/api_integration/apis/monitoring/kibana/instance.js index 58daf097ef12..904302975f07 100644 --- a/x-pack/test/api_integration/apis/monitoring/kibana/instance.js +++ b/x-pack/test/api_integration/apis/monitoring/kibana/instance.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('instance detail', () => { - const archive = 'monitoring/singlecluster-yellow-platinum'; + const archive = 'monitoring/singlecluster_yellow_platinum'; const timeRange = { min: '2017-08-29T17:24:17.000Z', max: '2017-08-29T17:26:08.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/instance_mb.js b/x-pack/test/api_integration/apis/monitoring/kibana/instance_mb.js new file mode 100644 index 000000000000..b888f3475120 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/kibana/instance_mb.js @@ -0,0 +1,44 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { normalizeDataTypeDifferences } from '../normalize_data_type_differences'; +import instanceFixture from './fixtures/instance'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('instance detail mb', () => { + const archive = 'monitoring/singlecluster_yellow_platinum_mb'; + const timeRange = { + min: '2017-08-29T17:24:17.000Z', + max: '2017-08-29T17:26:08.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize single kibana instance with metrics', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/DFDDUmKHR0Ge0mkdYW2bew/kibana/de3b8f2a-7bb9-4931-9bf3-997ba7824cf9' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + body.metrics = normalizeDataTypeDifferences(body.metrics, instanceFixture); + expect(body).to.eql(instanceFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/listing.js b/x-pack/test/api_integration/apis/monitoring/kibana/listing.js index eebd3d88e6f6..a86ad9169d5e 100644 --- a/x-pack/test/api_integration/apis/monitoring/kibana/listing.js +++ b/x-pack/test/api_integration/apis/monitoring/kibana/listing.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('listing', () => { - const archive = 'monitoring/singlecluster-yellow-platinum'; + const archive = 'monitoring/singlecluster_yellow_platinum'; const timeRange = { min: '2017-08-29T17:24:17.000Z', max: '2017-08-29T17:26:08.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/listing_mb.js b/x-pack/test/api_integration/apis/monitoring/kibana/listing_mb.js new file mode 100644 index 000000000000..5e226f56122a --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/kibana/listing_mb.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import listingFixture from './fixtures/listing'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('listing mb', () => { + const archive = 'monitoring/singlecluster_yellow_platinum_mb'; + const timeRange = { + min: '2017-08-29T17:24:17.000Z', + max: '2017-08-29T17:26:08.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize list of kibana instances with stats', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/DFDDUmKHR0Ge0mkdYW2bew/kibana/instances') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(listingFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/overview.js b/x-pack/test/api_integration/apis/monitoring/kibana/overview.js index e55ece01c79a..4f2daa90fc54 100644 --- a/x-pack/test/api_integration/apis/monitoring/kibana/overview.js +++ b/x-pack/test/api_integration/apis/monitoring/kibana/overview.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('overview', () => { - const archive = 'monitoring/singlecluster-yellow-platinum'; + const archive = 'monitoring/singlecluster_yellow_platinum'; const timeRange = { min: '2017-08-29T17:24:17.000Z', max: '2017-08-29T17:26:08.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/kibana/overview_mb.js b/x-pack/test/api_integration/apis/monitoring/kibana/overview_mb.js new file mode 100644 index 000000000000..afdba071b943 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/kibana/overview_mb.js @@ -0,0 +1,42 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { normalizeDataTypeDifferences } from '../normalize_data_type_differences'; +import overviewFixture from './fixtures/overview'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('overview mb', () => { + const archive = 'monitoring/singlecluster_yellow_platinum_mb'; + const timeRange = { + min: '2017-08-29T17:24:17.000Z', + max: '2017-08-29T17:26:08.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize kibana instances with stats', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/DFDDUmKHR0Ge0mkdYW2bew/kibana') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + body.metrics = normalizeDataTypeDifferences(body.metrics, overviewFixture); + expect(body).to.eql(overviewFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/index.js b/x-pack/test/api_integration/apis/monitoring/logstash/index.js index d76b656fcbaa..0caf7e360ef3 100644 --- a/x-pack/test/api_integration/apis/monitoring/logstash/index.js +++ b/x-pack/test/api_integration/apis/monitoring/logstash/index.js @@ -8,9 +8,14 @@ export default function ({ loadTestFile }) { describe('Logstash', () => { loadTestFile(require.resolve('./overview')); + loadTestFile(require.resolve('./overview_mb')); loadTestFile(require.resolve('./nodes')); + loadTestFile(require.resolve('./nodes_mb')); loadTestFile(require.resolve('./node_detail')); + loadTestFile(require.resolve('./node_detail_mb')); loadTestFile(require.resolve('./multicluster_pipelines')); + loadTestFile(require.resolve('./multicluster_pipelines_mb')); loadTestFile(require.resolve('./pipelines')); + loadTestFile(require.resolve('./pipelines_mb')); }); } diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/multicluster_pipelines_mb.js b/x-pack/test/api_integration/apis/monitoring/logstash/multicluster_pipelines_mb.js new file mode 100644 index 000000000000..24b0d9a099e1 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/logstash/multicluster_pipelines_mb.js @@ -0,0 +1,44 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import fixture from './fixtures/multicluster_pipelines'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('pipelines listing multicluster mb', () => { + const archive = 'monitoring/logstash_pipelines_multicluster_mb'; + const timeRange = { + min: '2019-11-11T15:13:45.266Z', + max: '2019-11-11T15:17:05.399Z', + }; + const pagination = { + size: 10, + index: 0, + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should get the pipelines', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/hJS0FZ7wR9GGdYs8RNW8pw/logstash/pipelines') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination }) + .expect(200); + + expect(body).to.eql(fixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/node_detail.js b/x-pack/test/api_integration/apis/monitoring/logstash/node_detail.js index de560cd71dc5..f1d837a42739 100644 --- a/x-pack/test/api_integration/apis/monitoring/logstash/node_detail.js +++ b/x-pack/test/api_integration/apis/monitoring/logstash/node_detail.js @@ -14,7 +14,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('node detail', () => { - const archive = 'monitoring/logstash-pipelines'; + const archive = 'monitoring/logstash_pipelines'; const timeRange = { min: '2018-01-22T09:33:13.000Z', max: '2018-01-22T09:41:04.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/node_detail_mb.js b/x-pack/test/api_integration/apis/monitoring/logstash/node_detail_mb.js new file mode 100644 index 000000000000..f7b33c7bf46b --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/logstash/node_detail_mb.js @@ -0,0 +1,58 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { normalizeDataTypeDifferences } from '../normalize_data_type_differences'; +import nodeDetailFixture from './fixtures/node_detail'; +import nodeDetailAdvancedFixture from './fixtures/node_detail_advanced'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('node detail mb', () => { + const archive = 'monitoring/logstash_pipelines_mb'; + const timeRange = { + min: '2018-01-22T09:33:13.000Z', + max: '2018-01-22T09:41:04.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize the Logstash node with non-advanced chart data metrics', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/1rhApLfQShSh3JsNqYCkmA/logstash/node/838a2ada-1951-4043-8a23-4b450f6160a4' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange, is_advanced: false }) + .expect(200); + + body.metrics = normalizeDataTypeDifferences(body.metrics, nodeDetailFixture); + expect(body).to.eql(nodeDetailFixture); + }); + + it('should summarize the Logstash node with advanced chart data metrics', async () => { + const { body } = await supertest + .post( + '/api/monitoring/v1/clusters/1rhApLfQShSh3JsNqYCkmA/logstash/node/838a2ada-1951-4043-8a23-4b450f6160a4' + ) + .set('kbn-xsrf', 'xxx') + .send({ timeRange, is_advanced: true }) + .expect(200); + + body.metrics = normalizeDataTypeDifferences(body.metrics, nodeDetailAdvancedFixture); + expect(body).to.eql(nodeDetailAdvancedFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/nodes.js b/x-pack/test/api_integration/apis/monitoring/logstash/nodes.js index 7660b3bfd472..0423c4ed9849 100644 --- a/x-pack/test/api_integration/apis/monitoring/logstash/nodes.js +++ b/x-pack/test/api_integration/apis/monitoring/logstash/nodes.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('node listing', () => { - const archive = 'monitoring/logstash-pipelines'; + const archive = 'monitoring/logstash_pipelines'; const timeRange = { min: '2018-01-22T09:33:13.000Z', max: '2018-01-22T09:41:04.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/nodes_mb.js b/x-pack/test/api_integration/apis/monitoring/logstash/nodes_mb.js new file mode 100644 index 000000000000..217f1c84ddbd --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/logstash/nodes_mb.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import nodesFixture from './fixtures/nodes'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('node listing mb', () => { + const archive = 'monitoring/logstash_pipelines_mb'; + const timeRange = { + min: '2018-01-22T09:33:13.000Z', + max: '2018-01-22T09:41:04.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize the Logstash nodes with stats', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/1rhApLfQShSh3JsNqYCkmA/logstash/nodes') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(nodesFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/overview.js b/x-pack/test/api_integration/apis/monitoring/logstash/overview.js index 566a7613399c..6476b09d372d 100644 --- a/x-pack/test/api_integration/apis/monitoring/logstash/overview.js +++ b/x-pack/test/api_integration/apis/monitoring/logstash/overview.js @@ -13,7 +13,7 @@ export default function ({ getService }) { const esArchiver = getService('esArchiver'); describe('overview', () => { - const archive = 'monitoring/logstash-pipelines'; + const archive = 'monitoring/logstash_pipelines'; const timeRange = { min: '2018-01-22T09:33:13.000Z', max: '2018-01-22T09:41:04.000Z', diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/overview_mb.js b/x-pack/test/api_integration/apis/monitoring/logstash/overview_mb.js new file mode 100644 index 000000000000..5c42ae3f87be --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/logstash/overview_mb.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import overviewFixture from './fixtures/overview.json'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('overview mb', () => { + const archive = 'monitoring/logstash_pipelines_mb'; + const timeRange = { + min: '2018-01-22T09:33:13.000Z', + max: '2018-01-22T09:41:04.000Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should summarize two Logstash nodes with metrics', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/1rhApLfQShSh3JsNqYCkmA/logstash') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(overviewFixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/logstash/pipelines_mb.js b/x-pack/test/api_integration/apis/monitoring/logstash/pipelines_mb.js new file mode 100644 index 000000000000..bd576eaa9e09 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/logstash/pipelines_mb.js @@ -0,0 +1,85 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import pipelinesFixture from './fixtures/pipelines'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('pipelines mb', () => { + const archive = 'monitoring/logstash/changing_pipelines_mb'; + const timeRange = { + min: '2019-11-04T15:40:44.855Z', + max: '2019-11-04T15:50:38.667Z', + }; + const pagination = { + size: 10, + index: 0, + }; + const sort = { + field: 'id', + direction: 'asc', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should return paginated pipelines', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/TUjQLdHNTh2SB9Wy0gOtWg/logstash/pipelines') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination, sort }) + .expect(200); + + expect(body).to.eql(pipelinesFixture); + }); + + it('should get one of each after enough pagination', async () => { + async function getIds(page) { + const { body } = await supertest + .post('/api/monitoring/v1/clusters/TUjQLdHNTh2SB9Wy0gOtWg/logstash/pipelines') + .set('kbn-xsrf', 'xxx') + .send({ timeRange, pagination: { ...pagination, index: page }, sort }) + .expect(200); + + return body.pipelines.map((pipeline) => pipeline.id); + } + + const ids = [...(await getIds(0)), ...(await getIds(1)), ...(await getIds(2))]; + expect(ids.length).to.be(26); + }); + + it('should not error out if there is missing data for part of the time series', async () => { + const customTimeRange = { + ...timeRange, + max: '2019-11-04T15:59:38.667Z', + }; + + const customSort = { + ...sort, + field: 'logstash_cluster_pipeline_throughput', + }; + + await supertest + .post('/api/monitoring/v1/clusters/TUjQLdHNTh2SB9Wy0gOtWg/logstash/pipelines') + .set('kbn-xsrf', 'xxx') + .send({ + timeRange: customTimeRange, + pagination: { ...pagination, index: 1 }, + sort: customSort, + }) + .expect(200); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/normalize_data_type_differences.ts b/x-pack/test/api_integration/apis/monitoring/normalize_data_type_differences.ts new file mode 100644 index 000000000000..ef27e439b74b --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/normalize_data_type_differences.ts @@ -0,0 +1,39 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import numeral from '@elastic/numeral'; + +/** + * This function is designed to handle type differences between fields in legacy monitoring and MB monitoring. + * During the conversion to using MB, we changed some number fields that slightly change how the output + * is returned (such as, `long` instead of `half_float`). This function ensures the tests still pass if the + * numbers are _basically_ the same. + * + * @param metrics + * @param fixture + * @returns + */ +export function normalizeDataTypeDifferences(metrics: any, fixture: any) { + return Object.keys(metrics).reduce((accum: any, metricName) => { + accum[metricName] = metrics[metricName].map((item: { data: number[][] }, index: number) => { + return { + ...item, + data: item.data.map(([_x, y], index2) => { + const expectedY = fixture.metrics[metricName][index].data[index2][1]; + if (y !== expectedY) { + const normalizedY = numeral(y).format('0[.]00000'); + const normalizedExpectedY = numeral(y).format('0[.]00000'); + if (normalizedY === normalizedExpectedY) { + return [_x, expectedY]; + } + } + return [_x, y]; + }), + }; + }); + return accum; + }, {}); +} diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana.js new file mode 100644 index 000000000000..eb13f264028c --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import fixture from './fixtures/es_and_kibana_mb'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('es_and_kibana', () => { + const archive = 'monitoring/setup/collection/es_and_kibana'; + const timeRange = { + min: '2019-04-09T00:00:00.741Z', + max: '2019-04-09T23:59:59.741Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should get collection status', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/setup/collection/cluster?skipLiveData=true') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(fixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive.js new file mode 100644 index 000000000000..6b2ac002c5e5 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import fixture from './fixtures/es_and_kibana_exclusive_mb'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('es_and_kibana_exclusive', () => { + const archive = 'monitoring/setup/collection/es_and_kibana_exclusive'; + const timeRange = { + min: '2019-04-09T00:00:00.741Z', + max: '2019-04-09T23:59:59.741Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should get collection status', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/setup/collection/cluster?skipLiveData=true') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(fixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive_mb.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive_mb.js index fe47a1e3bd4d..7080e7ebeb50 100644 --- a/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive_mb.js +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_exclusive_mb.js @@ -12,7 +12,7 @@ export default function ({ getService }) { const supertest = getService('supertest'); const esArchiver = getService('esArchiver'); - describe('es_and_kibana_exclusive_mb', () => { + describe('es_and_kibana_exclusive mb', () => { const archive = 'monitoring/setup/collection/es_and_kibana_exclusive_mb'; const timeRange = { min: '2019-04-09T00:00:00.741Z', @@ -33,7 +33,6 @@ export default function ({ getService }) { .set('kbn-xsrf', 'xxx') .send({ timeRange }) .expect(200); - expect(body).to.eql(fixture); }); }); diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_mb.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_mb.js index cfec63814aa3..532ef3c9de17 100644 --- a/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_mb.js +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/es_and_kibana_mb.js @@ -12,7 +12,7 @@ export default function ({ getService }) { const supertest = getService('supertest'); const esArchiver = getService('esArchiver'); - describe('es_and_kibana_mb', () => { + describe('es_and_kibana mb', () => { const archive = 'monitoring/setup/collection/es_and_kibana_mb'; const timeRange = { min: '2019-04-09T00:00:00.741Z', @@ -33,7 +33,6 @@ export default function ({ getService }) { .set('kbn-xsrf', 'xxx') .send({ timeRange }) .expect(200); - expect(body).to.eql(fixture); }); }); diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/index.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/index.js index 56fd65206e60..4690b6d6371d 100644 --- a/x-pack/test/api_integration/apis/monitoring/setup/collection/index.js +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/index.js @@ -7,9 +7,13 @@ export default function ({ loadTestFile }) { describe('Collection', () => { + loadTestFile(require.resolve('./kibana')); loadTestFile(require.resolve('./kibana_mb')); + loadTestFile(require.resolve('./kibana_exclusive')); loadTestFile(require.resolve('./kibana_exclusive_mb')); + loadTestFile(require.resolve('./es_and_kibana')); loadTestFile(require.resolve('./es_and_kibana_mb')); + loadTestFile(require.resolve('./es_and_kibana_exclusive')); loadTestFile(require.resolve('./es_and_kibana_exclusive_mb')); loadTestFile(require.resolve('./detect_beats')); loadTestFile(require.resolve('./detect_beats_management')); diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana.js new file mode 100644 index 000000000000..d48ac98521af --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import fixture from './fixtures/kibana_mb'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('kibana', () => { + const archive = 'monitoring/setup/collection/kibana'; + const timeRange = { + min: '2019-04-09T00:00:00.741Z', + max: '2019-04-09T23:59:59.741Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should get collection status', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/setup/collection/cluster?skipLiveData=true') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(fixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive.js new file mode 100644 index 000000000000..65cf74490088 --- /dev/null +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive.js @@ -0,0 +1,40 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import fixture from './fixtures/kibana_exclusive_mb'; + +export default function ({ getService }) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('kibana_exclusive', () => { + const archive = 'monitoring/setup/collection/kibana_exclusive'; + const timeRange = { + min: '2019-04-09T00:00:00.741Z', + max: '2019-04-09T23:59:59.741Z', + }; + + before('load archive', () => { + return esArchiver.load(archive); + }); + + after('unload archive', () => { + return esArchiver.unload(archive); + }); + + it('should get collection status', async () => { + const { body } = await supertest + .post('/api/monitoring/v1/setup/collection/cluster?skipLiveData=true') + .set('kbn-xsrf', 'xxx') + .send({ timeRange }) + .expect(200); + + expect(body).to.eql(fixture); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive_mb.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive_mb.js index dacf21624704..c86a2a4f4e7c 100644 --- a/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive_mb.js +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_exclusive_mb.js @@ -12,7 +12,7 @@ export default function ({ getService }) { const supertest = getService('supertest'); const esArchiver = getService('esArchiver'); - describe('kibana_exclusive_mb', () => { + describe('kibana_exclusive mb', () => { const archive = 'monitoring/setup/collection/kibana_exclusive_mb'; const timeRange = { min: '2019-04-09T00:00:00.741Z', diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_mb.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_mb.js index 7965f51ec886..bf4d27366c13 100644 --- a/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_mb.js +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/kibana_mb.js @@ -12,7 +12,7 @@ export default function ({ getService }) { const supertest = getService('supertest'); const esArchiver = getService('esArchiver'); - describe('kibana_mb', () => { + describe('kibana mb', () => { const archive = 'monitoring/setup/collection/kibana_mb'; const timeRange = { min: '2019-04-09T00:00:00.741Z', diff --git a/x-pack/test/api_integration/apis/monitoring/setup/collection/security.js b/x-pack/test/api_integration/apis/monitoring/setup/collection/security.js index b246d2bd98bf..99bbcb421ba2 100644 --- a/x-pack/test/api_integration/apis/monitoring/setup/collection/security.js +++ b/x-pack/test/api_integration/apis/monitoring/setup/collection/security.js @@ -14,7 +14,7 @@ export default function ({ getService }) { const supertestWithoutAuth = getService('supertestWithoutAuth'); describe('security', () => { - const archive = 'monitoring/setup/collection/kibana_exclusive_mb'; + const archive = 'monitoring/setup/collection/kibana_exclusive'; const timeRange = { min: '2019-04-09T00:00:00.741Z', max: '2019-04-09T23:59:59.741Z', diff --git a/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/cluster.json b/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/cluster.json index b3b5b38faedb..e3ed40b197cc 100644 --- a/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/cluster.json +++ b/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/cluster.json @@ -3,10 +3,19 @@ "license": {}, "elasticsearch": { "cluster_stats": { - "indices": {}, + "indices": { + "docs": {}, + "shards": {}, + "store": {} + }, "nodes": { - "count": {}, - "jvm": {} + "count": { + "total": {} + }, + "fs": {}, + "jvm": { + "mem": {} + } } }, "logs": { diff --git a/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/clusters.json b/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/clusters.json index c5006e8de824..0034199325e5 100644 --- a/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/clusters.json +++ b/x-pack/test/api_integration/apis/monitoring/standalone_cluster/fixtures/clusters.json @@ -17,25 +17,7 @@ }, "shards": { "total": 7, - "primaries": 7, - "replication": 0, - "index": { - "shards": { - "min": 1, - "max": 3, - "avg": 1.4 - }, - "primaries": { - "min": 1, - "max": 3, - "avg": 1.4 - }, - "replication": { - "min": 0, - "max": 0, - "avg": 0 - } - } + "primaries": 7 }, "store": { "size_in_bytes": 1245010 @@ -44,7 +26,6 @@ "nodes": { "fs": { "total_in_bytes": 499963174912, - "free_in_bytes": 107874111488, "available_in_bytes": 101780008960 }, "count": { @@ -118,10 +99,19 @@ "license": {}, "elasticsearch": { "cluster_stats": { - "indices": {}, + "indices": { + "docs": {}, + "shards": {}, + "store": {} + }, "nodes": { - "count": {}, - "jvm": {} + "count": { + "total": {} + }, + "fs": {}, + "jvm": { + "mem": {} + } } } }, diff --git a/x-pack/test/functional/apps/monitoring/cluster/list.js b/x-pack/test/functional/apps/monitoring/cluster/list.js index e4f93042f0bf..0b5b3a196beb 100644 --- a/x-pack/test/functional/apps/monitoring/cluster/list.js +++ b/x-pack/test/functional/apps/monitoring/cluster/list.js @@ -12,7 +12,7 @@ export default function ({ getService, getPageObjects }) { const clusterList = getService('monitoringClusterList'); const clusterOverview = getService('monitoringClusterOverview'); const testSubjects = getService('testSubjects'); - const PageObjects = getPageObjects(['monitoring', 'header']); + const PageObjects = getPageObjects(['monitoring', 'header', 'common']); describe('Cluster listing', () => { describe('with trial license clusters', () => { @@ -78,7 +78,7 @@ export default function ({ getService, getPageObjects }) { const SUPPORTED_CLUSTER_UUID = 'NDKg6VXAT6-TaGzEK2Zy7g'; before(async () => { - await setup('monitoring/multi-basic', { + await setup('monitoring/multi_basic', { from: 'Sep 7, 2017 @ 20:12:04.011', to: 'Sep 7, 2017 @ 20:18:55.733', }); @@ -108,6 +108,7 @@ export default function ({ getService, getPageObjects }) { }); it('primary basic cluster shows cluster metrics', async () => { + // PageObjects.common.sleep(10000) expect(await clusterList.getClusterName(SUPPORTED_CLUSTER_UUID)).to.be('production'); expect(await clusterList.getClusterStatus(SUPPORTED_CLUSTER_UUID)).to.be('Clear'); expect(await clusterList.getClusterNodesCount(SUPPORTED_CLUSTER_UUID)).to.be('2'); diff --git a/x-pack/test/functional/apps/monitoring/cluster/overview.js b/x-pack/test/functional/apps/monitoring/cluster/overview.js index a58babe1c491..dbdb8edc153b 100644 --- a/x-pack/test/functional/apps/monitoring/cluster/overview.js +++ b/x-pack/test/functional/apps/monitoring/cluster/overview.js @@ -16,7 +16,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-green-gold', { + await setup('monitoring/singlecluster_green_gold', { from: 'Aug 23, 2017 @ 21:29:35.267', to: 'Aug 23, 2017 @ 21:47:25.556', }); @@ -67,7 +67,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-yellow-platinum', { + await setup('monitoring/singlecluster_yellow_platinum', { from: 'Aug 29, 2017 @ 17:23:47.528', to: 'Aug 29, 2017 @ 17:25:50.701', }); @@ -113,7 +113,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-yellow-basic', { + await setup('monitoring/singlecluster_yellow_basic', { from: 'Aug 29, 2017 @ 17:55:43.879', to: 'Aug 29, 2017 @ 18:01:34.958', }); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail.js b/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail.js index 321c0e92d451..9ac24313c9b7 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail.js @@ -24,7 +24,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 20:31:48.354', to: 'Oct 5, 2017 @ 20:35:12.176', }); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail_mb.js new file mode 100644 index 000000000000..2ee2b7bcbe5c --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/index_detail_mb.js @@ -0,0 +1,81 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const PageObjects = getPageObjects(['monitoring', 'header']); + const overview = getService('monitoringClusterOverview'); + const indicesList = getService('monitoringElasticsearchIndices'); + const indexDetail = getService('monitoringElasticsearchIndexDetail'); + + describe('Elasticsearch index detail mb', () => { + afterEach(async () => { + await PageObjects.monitoring.clickBreadcrumb('~breadcrumbEsIndices'); // return back for next test + await indicesList.clearFilter(); + }); + + describe('Active Indices', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_three_nodes_shard_relocation_mb', { + from: 'Oct 5, 2017 @ 20:31:48.354', + to: 'Oct 5, 2017 @ 20:35:12.176', + }); + + // go to indices listing + await overview.clickEsIndices(); + expect(await indicesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have an index summary with green status index with full shard allocation', async () => { + await indicesList.clickRowByName('avocado-tweets-2017.10.02'); + + expect(await indexDetail.getSummary()).to.eql({ + dataSize: 'Total\n8.8 MB', + dataSizePrimaries: 'Primaries\n4.4 MB', + documentCount: 'Documents\n628', + totalShards: 'Total shards\n10', + unassignedShards: 'Unassigned shards\n0', + health: 'Health: green', + }); + }); + + it('should have an index summary with green status index with single relocating shard', async () => { + await indicesList.clickRowByName('relocation_test'); + + expect(await indexDetail.getSummary()).to.eql({ + dataSize: 'Total\n4.8 KB', + dataSizePrimaries: 'Primaries\n4.8 KB', + documentCount: 'Documents\n1', + totalShards: 'Total shards\n1', + unassignedShards: 'Unassigned shards\n0', + health: 'Health: green', + }); + }); + + it('should have an index summary with yellow status index with single unallocated shard', async () => { + await indicesList.clickRowByName('phone-home'); + + expect(await indexDetail.getSummary()).to.eql({ + dataSize: 'Total\n1.2 MB', + dataSizePrimaries: 'Primaries\n657.6 KB', + documentCount: 'Documents\n10', + totalShards: 'Total shards\n10', + unassignedShards: 'Unassigned shards\n1', + health: 'Health: yellow', + }); + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/indices.js b/x-pack/test/functional/apps/monitoring/elasticsearch/indices.js index b9be1ce39223..a39b08f00c91 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/indices.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/indices.js @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-red-platinum', { + await setup('monitoring/singlecluster_red_platinum', { from: 'Oct 6, 2017 @ 19:53:06.748', to: 'Oct 6, 2017 @ 20:15:30.212', }); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/indices_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/indices_mb.js new file mode 100644 index 000000000000..f12e6b5f80c8 --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/indices_mb.js @@ -0,0 +1,265 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const overview = getService('monitoringClusterOverview'); + const indicesList = getService('monitoringElasticsearchIndices'); + const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); + + describe('Elasticsearch indices listing mb', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_red_platinum_mb', { + from: 'Oct 6, 2017 @ 19:53:06.748', + to: 'Oct 6, 2017 @ 20:15:30.212', + }); + + // go to indices listing + await overview.clickEsIndices(); + expect(await indicesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have an Elasticsearch cluster summary with correct info', async () => { + expect(await esClusterSummaryStatus.getContent()).to.eql({ + nodesCount: 'Nodes\n1', + indicesCount: 'Indices\n19', + memory: 'JVM Heap\n267.7 MB / 676.8 MB', + totalShards: 'Total shards\n46', + unassignedShards: 'Unassigned shards\n23', + documentCount: 'Documents\n4,535', + dataSize: 'Data\n8.6 MB', + health: 'Health: red', + }); + }); + + // Revisit once https://github.com/elastic/eui/issues/1322 is resolved + it.skip('should show indices table with correct rows after sorting by Search Rate Desc', async () => { + await indicesList.clickSearchCol(); + await indicesList.clickSearchCol(); + + const rows = await indicesList.getRows(); + expect(rows.length).to.be(20); + + const indicesAll = await indicesList.getIndicesAll(); + + const tableData = [ + { + name: 'many-0006_gkuqbjonkjmg', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '4.08 /s', + unassignedShards: '0', + }, + { + name: 'many-0008_amnscruqlsnu', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '4.08 /s', + unassignedShards: '0', + }, + { + name: 'many-0010_dgnlpqtstfvi', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0012_jwomwdgfpisl', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0014_zrukbrvuluby', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0016_gyvtsyauoqqg', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0018_ipugjcmuagih', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0020_fqfovcnznbus', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0022_dqbcjopzejlk', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0024_rixhhwzyiczb', + status: 'Health: green', + documentCount: '1', + dataSize: '3.7 KB', + indexRate: '0 /s', + searchRate: '1.95 /s', + unassignedShards: '0', + }, + { + name: 'many-0001_clruksahirti', + status: 'Health: Deleted / Closed', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: 'N/A', + }, + { + name: 'many-0002_emdkmgdeflno', + status: 'Health: Deleted / Closed', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: 'N/A', + }, + { + name: 'many-0003_jbwrztjwhkjt', + status: 'Health: Deleted / Closed', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: 'N/A', + }, + { + name: 'many-0004_wzgjkelqclur', + status: 'Health: Deleted / Closed', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: 'N/A', + }, + { + name: 'many-0005_dnzzblxoumfe', + status: 'Health: Deleted / Closed', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: 'N/A', + }, + { + name: 'many-0007_milycdknpycp', + status: 'Health: red', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: '1', + }, + { + name: 'many-0009_reolfgzjjtvh', + status: 'Health: red', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: '1', + }, + { + name: 'many-0011_xtkcmlwmxcov', + status: 'Health: red', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: '1', + }, + { + name: 'many-0013_smjuwdkhpduv', + status: 'Health: red', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: '1', + }, + { + name: 'many-0015_vwmrucgzvohb', + status: 'Health: red', + documentCount: '1', + dataSize: '3.6 KB', + indexRate: '0 /s', + searchRate: '0 /s', + unassignedShards: '1', + }, + ]; /*eslint-enable*/ + + // check the all data in the table + indicesAll.forEach((obj, index) => { + expect(indicesAll[index].name).to.be(tableData[index].name); + expect(indicesAll[index].status).to.be(tableData[index].status); + expect(indicesAll[index].documentCount).to.be(tableData[index].documentCount); + expect(indicesAll[index].dataSize).to.be(tableData[index].dataSize); + expect(indicesAll[index].indexRate).to.be(tableData[index].indexRate); + expect(indicesAll[index].searchRate).to.be(tableData[index].searchRate); + expect(indicesAll[index].unassignedShards).to.be(tableData[index].unassignedShards); + }); + }); + + it('should filter for specific indices', async () => { + await indicesList.setFilter('000'); + const rows = await indicesList.getRows(); + expect(rows.length).to.be(9); + await indicesList.clearFilter(); + }); + + it('should filter for non-existent index', async () => { + await indicesList.setFilter('foobar'); + await indicesList.assertNoData(); + await indicesList.clearFilter(); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail.js b/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail.js index de2b1737843e..6627f8b37c6f 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail.js @@ -19,7 +19,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 20:31:48.354', to: 'Oct 5, 2017 @ 20:35:12.176', }); @@ -74,7 +74,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-red-platinum', { + await setup('monitoring/singlecluster_red_platinum', { from: 'Oct 6, 2017 @ 19:53:06.748', to: 'Oct 6, 2017 @ 20:15:30.212', }); @@ -110,7 +110,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 20:31:48.354', to: 'Oct 5, 2017 @ 20:35:12.176', }); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail_mb.js new file mode 100644 index 000000000000..360849916e0d --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/node_detail_mb.js @@ -0,0 +1,167 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const PageObjects = getPageObjects(['monitoring', 'header']); + const overview = getService('monitoringClusterOverview'); + const nodesList = getService('monitoringElasticsearchNodes'); + const nodeDetail = getService('monitoringElasticsearchNodeDetail'); + + describe('Elasticsearch node detail mb', () => { + describe('Active Nodes', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_three_nodes_shard_relocation_mb', { + from: 'Oct 5, 2017 @ 20:31:48.354', + to: 'Oct 5, 2017 @ 20:35:12.176', + }); + + // go to nodes listing + await overview.clickEsNodes(); + expect(await nodesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + afterEach(async () => { + await PageObjects.monitoring.clickBreadcrumb('~breadcrumbEsNodes'); // return back for next test + }); + + it('should show node summary of master node with 20 indices and 38 shards', async () => { + await nodesList.clickRowByResolver('jUT5KdxfRbORSCWkb5zjmA'); + + expect(await nodeDetail.getSummary()).to.eql({ + transportAddress: 'Transport Address\n127.0.0.1:9300', + jvmHeap: 'JVM Heap\n29%', + freeDiskSpace: 'Free Disk Space\n173.9 GB (37.42%)', + documentCount: 'Documents\n24.8k', + dataSize: 'Data\n50.4 MB', + indicesCount: 'Indices\n20', + shardsCount: 'Shards\n38', + nodeType: 'Type\nMaster Node', + status: 'Status: Online', + }); + }); + + it('should show node summary of data node with 4 indices and 4 shards', async () => { + await nodesList.clickRowByResolver('bwQWH-7IQY-mFPpfoaoFXQ'); + + expect(await nodeDetail.getSummary()).to.eql({ + transportAddress: 'Transport Address\n127.0.0.1:9302', + jvmHeap: 'JVM Heap\n17%', + freeDiskSpace: 'Free Disk Space\n173.9 GB (37.42%)', + documentCount: 'Documents\n240', + dataSize: 'Data\n1.4 MB', + indicesCount: 'Indices\n4', + shardsCount: 'Shards\n4', + nodeType: 'Type\nNode', + status: 'Status: Online', + }); + }); + }); + + describe('Offline Node', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_red_platinum', { + from: 'Oct 6, 2017 @ 19:53:06.748', + to: 'Oct 6, 2017 @ 20:15:30.212', + }); + + // go to nodes listing + await overview.clickEsNodes(); + expect(await nodesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should show node summary of NA for offline node', async () => { + await nodesList.clickRowByResolver('1jxg5T33TWub-jJL4qP0Wg'); + + expect(await nodeDetail.getSummary()).to.eql({ + transportAddress: 'Transport Address\n127.0.0.1:9302', + jvmHeap: 'JVM Heap\nN/A', + freeDiskSpace: 'Free Disk Space\nN/A (N/A)', + documentCount: 'Documents\nN/A', + dataSize: 'Data\nN/A', + indicesCount: 'Indices\nN/A', + shardsCount: 'Shards\nN/A', + nodeType: 'Type\nOffline Node', + status: 'Status: Offline', + }); + }); + }); + + describe('Advanced', () => { + describe('Active Nodes', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { + from: 'Oct 5, 2017 @ 20:31:48.354', + to: 'Oct 5, 2017 @ 20:35:12.176', + }); + + // go to nodes listing + await overview.clickEsNodes(); + expect(await nodesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + afterEach(async () => { + await PageObjects.monitoring.clickBreadcrumb('~breadcrumbEsNodes'); // return back for next test + }); + + it('should show node summary of master node with 20 indices and 38 shards', async () => { + await nodesList.clickRowByResolver('jUT5KdxfRbORSCWkb5zjmA'); + await nodeDetail.clickAdvanced(); + + expect(await nodeDetail.getSummary()).to.eql({ + transportAddress: 'Transport Address\n127.0.0.1:9300', + jvmHeap: 'JVM Heap\n29%', + freeDiskSpace: 'Free Disk Space\n173.9 GB (37.42%)', + documentCount: 'Documents\n24.8k', + dataSize: 'Data\n50.4 MB', + indicesCount: 'Indices\n20', + shardsCount: 'Shards\n38', + nodeType: 'Type\nMaster Node', + status: 'Status: Online', + }); + }); + + it('should show node summary of data node with 4 indices and 4 shards', async () => { + await nodesList.clickRowByResolver('bwQWH-7IQY-mFPpfoaoFXQ'); + await nodeDetail.clickAdvanced(); + + expect(await nodeDetail.getSummary()).to.eql({ + transportAddress: 'Transport Address\n127.0.0.1:9302', + jvmHeap: 'JVM Heap\n17%', + freeDiskSpace: 'Free Disk Space\n173.9 GB (37.42%)', + documentCount: 'Documents\n240', + dataSize: 'Data\n1.4 MB', + indicesCount: 'Indices\n4', + shardsCount: 'Shards\n4', + nodeType: 'Type\nNode', + status: 'Status: Online', + }); + }); + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js index c5bd0febb07b..eb2075f01717 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes.js @@ -21,7 +21,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 20:28:28.475', to: 'Oct 5, 2017 @ 20:34:38.341', }); @@ -57,7 +57,6 @@ export default function ({ getService, getPageObjects }) { expect(rows.length).to.be(3); const nodesAll = await nodesList.getNodesAll(); - console.log(JSON.stringify(nodesAll, null, 2)); const tableData = [ { name: 'whatever-01', @@ -251,7 +250,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 20:31:48.354', to: 'Oct 5, 2017 @ 20:35:12.176', }); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js new file mode 100644 index 000000000000..3727a841ba91 --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/nodes_mb.js @@ -0,0 +1,294 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const overview = getService('monitoringClusterOverview'); + const nodesList = getService('monitoringElasticsearchNodes'); + const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); + + describe('Elasticsearch nodes listing mb', function () { + // FF issue: https://github.com/elastic/kibana/issues/35551 + this.tags(['skipFirefox']); + + describe('with offline node', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_three_nodes_shard_relocation_mb', { + from: 'Oct 5, 2017 @ 20:28:28.475', + to: 'Oct 5, 2017 @ 20:34:38.341', + }); + + // go to nodes listing + await overview.clickEsNodes(); + expect(await nodesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have an Elasticsearch Cluster Summary Status with correct info', async () => { + expect(await esClusterSummaryStatus.getContent()).to.eql({ + nodesCount: 'Nodes\n2', + indicesCount: 'Indices\n20', + memory: 'JVM Heap\n696.6 MB / 1.3 GB', + totalShards: 'Total shards\n79', + unassignedShards: 'Unassigned shards\n7', + documentCount: 'Documents\n25,758', + dataSize: 'Data\n100.0 MB', + health: 'Health: yellow', + }); + }); + + describe('skipCloud', function () { + // TODO: https://github.com/elastic/stack-monitoring/issues/31 + this.tags(['skipCloud']); + + it('should have a nodes table with correct rows with default sorting', async () => { + const rows = await nodesList.getRows(); + expect(rows.length).to.be(3); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { + name: 'whatever-01', + status: 'Status: Online', + cpu: '0%', + cpuText: 'Trending\nup\nMax value\n3%\nMin value\n0%\nApplies to current time period', + load: '3.28', + loadText: + 'Trending\nup\nMax value\n3.71\nMin value\n2.19\nApplies to current time period', + memory: '39%', + memoryText: + 'Trending\ndown\nMax value\n52%\nMin value\n25%\nApplies to current time period', + disk: '173.9 GB', + diskText: + 'Trending\ndown\nMax value\n173.9 GB\nMin value\n173.9 GB\nApplies to current time period', + shards: '38', + }, + { + name: 'whatever-02', + status: 'Status: Online', + cpu: '2%', + cpuText: + 'Trending\ndown\nMax value\n3%\nMin value\n0%\nApplies to current time period', + load: '3.28', + loadText: + 'Trending\nup\nMax value\n3.73\nMin value\n2.29\nApplies to current time period', + memory: '25%', + memoryText: + 'Trending\ndown\nMax value\n49%\nMin value\n25%\nApplies to current time period', + disk: '173.9 GB', + diskText: + 'Trending\ndown\nMax value\n173.9 GB\nMin value\n173.9 GB\nApplies to current time period', + shards: '38', + }, + { name: 'whatever-03', status: 'Status: Offline' }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].name).to.be(tableData[node].name); + expect(nodesAll[node].status).to.be(tableData[node].status); + expect(nodesAll[node].cpu).to.be(tableData[node].cpu); + expect(nodesAll[node].cpuText).to.be(tableData[node].cpuText); + expect(nodesAll[node].load).to.be(tableData[node].load); + expect(nodesAll[node].loadText).to.be(tableData[node].loadText); + expect(nodesAll[node].memory).to.be(tableData[node].memory); + expect(nodesAll[node].memoryText).to.be(tableData[node].memoryText); + expect(nodesAll[node].disk).to.be(tableData[node].disk); + expect(nodesAll[node].diskText).to.be(tableData[node].diskText); + expect(nodesAll[node].shards).to.be(tableData[node].shards); + }); + }); + + it('should sort by cpu', async () => { + await nodesList.clickCpuCol(); + await nodesList.clickCpuCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { + cpu: '2%', + cpuText: + 'Trending\ndown\nMax value\n3%\nMin value\n0%\nApplies to current time period', + }, + { + cpu: '0%', + cpuText: 'Trending\nup\nMax value\n3%\nMin value\n0%\nApplies to current time period', + }, + { cpu: undefined, cpuText: undefined }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].cpu).to.be(tableData[node].cpu); + expect(nodesAll[node].cpuText).to.be(tableData[node].cpuText); + }); + }); + + it('should sort by load average', async () => { + await nodesList.clickLoadCol(); + await nodesList.clickLoadCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { + load: '3.28', + loadText: + 'Trending\nup\nMax value\n3.71\nMin value\n2.19\nApplies to current time period', + }, + { + load: '3.28', + loadText: + 'Trending\nup\nMax value\n3.73\nMin value\n2.29\nApplies to current time period', + }, + { load: undefined }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].load).to.be(tableData[node].load); + expect(nodesAll[node].loadText).to.be(tableData[node].loadText); + }); + }); + }); + + it('should sort by name', async () => { + await nodesList.clickNameCol(); + await nodesList.clickNameCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { name: 'whatever-01' }, + { name: 'whatever-02' }, + { name: 'whatever-03' }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].name).to.be(tableData[node].name); + }); + }); + + it('should sort by status', async () => { + await nodesList.clickStatusCol(); + await nodesList.clickStatusCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { status: 'Status: Online' }, + { status: 'Status: Online' }, + { status: 'Status: Offline' }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].status).to.be(tableData[node].status); + }); + }); + + it('should sort by memory', async () => { + await nodesList.clickMemoryCol(); + await nodesList.clickMemoryCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { + memory: '39%', + memoryText: + 'Trending\ndown\nMax value\n52%\nMin value\n25%\nApplies to current time period', + }, + { + memory: '25%', + memoryText: + 'Trending\ndown\nMax value\n49%\nMin value\n25%\nApplies to current time period', + }, + { memory: undefined, memoryText: undefined }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].memory).to.be(tableData[node].memory); + expect(nodesAll[node].memoryText).to.be(tableData[node].memoryText); + }); + }); + + it('should sort by disk', async () => { + await nodesList.clickDiskCol(); + await nodesList.clickDiskCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [ + { + disk: '173.9 GB', + diskText: + 'Trending\ndown\nMax value\n173.9 GB\nMin value\n173.9 GB\nApplies to current time period', + }, + { + disk: '173.9 GB', + diskText: + 'Trending\ndown\nMax value\n173.9 GB\nMin value\n173.9 GB\nApplies to current time period', + }, + { disk: undefined }, + ]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].disk).to.be(tableData[node].disk); + expect(nodesAll[node].diskText).to.be(tableData[node].diskText); + }); + }); + + it('should sort by shards', async () => { + await nodesList.clickShardsCol(); + await nodesList.clickShardsCol(); + + const nodesAll = await nodesList.getNodesAll(); + const tableData = [{ shards: '38' }, { shards: '38' }, { shards: undefined }]; + nodesAll.forEach((obj, node) => { + expect(nodesAll[node].shards).to.be(tableData[node].shards); + }); + }); + }); + + describe('with only online nodes', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { + from: 'Oct 5, 2017 @ 20:31:48.354', + to: 'Oct 5, 2017 @ 20:35:12.176', + }); + + // go to nodes listing + await overview.clickEsNodes(); + expect(await nodesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have an Elasticsearch Cluster Summary Status with correct info', async () => { + expect(await esClusterSummaryStatus.getContent()).to.eql({ + nodesCount: 'Nodes\n3', + indicesCount: 'Indices\n20', + memory: 'JVM Heap\n575.3 MB / 2.0 GB', + totalShards: 'Total shards\n80', + unassignedShards: 'Unassigned shards\n5', + documentCount: 'Documents\n25,927', + dataSize: 'Data\n101.6 MB', + health: 'Health: yellow', + }); + }); + + it('should filter for specific indices', async () => { + await nodesList.setFilter('01'); + const rows = await nodesList.getRows(); + expect(rows.length).to.be(1); + await nodesList.clearFilter(); + }); + + it('should filter for non-existent index', async () => { + await nodesList.setFilter('foobar'); + await nodesList.assertNoData(); + await nodesList.clearFilter(); + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js b/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js index 7e80696407b0..57d354cebbfe 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/overview.js @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 20:31:48.354', to: 'Oct 5, 2017 @ 20:35:12.176', }); diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js b/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js new file mode 100644 index 000000000000..65e77be0e27b --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/overview_mb.js @@ -0,0 +1,47 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const clusterOverview = getService('monitoringClusterOverview'); + const overview = getService('monitoringElasticsearchOverview'); + const esClusterSummaryStatus = getService('monitoringElasticsearchSummaryStatus'); + + describe('Elasticsearch overview mb', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_three_nodes_shard_relocation_mb', { + from: 'Oct 5, 2017 @ 20:31:48.354', + to: 'Oct 5, 2017 @ 20:35:12.176', + }); + + // go to overview + await clusterOverview.clickEsOverview(); + expect(await overview.isOnOverview()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have an Elasticsearch Cluster Summary Status with correct info', async () => { + expect(await esClusterSummaryStatus.getContent()).to.eql({ + nodesCount: 'Nodes\n3', + indicesCount: 'Indices\n20', + memory: 'JVM Heap\n575.3 MB / 2.0 GB', + totalShards: 'Total shards\n80', + unassignedShards: 'Unassigned shards\n5', + documentCount: 'Documents\n25,927', + dataSize: 'Data\n101.6 MB', + health: 'Health: yellow', + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/elasticsearch/shards.js b/x-pack/test/functional/apps/monitoring/elasticsearch/shards.js index ffc35796799e..36b2aa46e7ab 100644 --- a/x-pack/test/functional/apps/monitoring/elasticsearch/shards.js +++ b/x-pack/test/functional/apps/monitoring/elasticsearch/shards.js @@ -21,7 +21,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-three-nodes-shard-relocation', { + await setup('monitoring/singlecluster_three_nodes_shard_relocation', { from: 'Oct 5, 2017 @ 19:34:48.000', to: 'Oct 5, 2017 @ 20:35:12.000', }); diff --git a/x-pack/test/functional/apps/monitoring/index.js b/x-pack/test/functional/apps/monitoring/index.js index 2172f7ebf9f0..37d5d2083c4b 100644 --- a/x-pack/test/functional/apps/monitoring/index.js +++ b/x-pack/test/functional/apps/monitoring/index.js @@ -15,23 +15,34 @@ export default function ({ loadTestFile }) { loadTestFile(require.resolve('./cluster/overview')); // loadTestFile(require.resolve('./cluster/license')); + // NOTE: All _mb tests skipped because of various failures: https://github.com/elastic/kibana/issues/98239 + loadTestFile(require.resolve('./elasticsearch/overview')); + // loadTestFile(require.resolve('./elasticsearch/overview_mb')); loadTestFile(require.resolve('./elasticsearch/nodes')); + // loadTestFile(require.resolve('./elasticsearch/nodes_mb')); loadTestFile(require.resolve('./elasticsearch/node_detail')); + // loadTestFile(require.resolve('./elasticsearch/node_detail_mb')); loadTestFile(require.resolve('./elasticsearch/indices')); + // loadTestFile(require.resolve('./elasticsearch/indices_mb')); loadTestFile(require.resolve('./elasticsearch/index_detail')); + // loadTestFile(require.resolve('./elasticsearch/index_detail_mb')); loadTestFile(require.resolve('./elasticsearch/shards')); // loadTestFile(require.resolve('./elasticsearch/shard_activity')); loadTestFile(require.resolve('./kibana/overview')); + // loadTestFile(require.resolve('./kibana/overview_mb')); loadTestFile(require.resolve('./kibana/instances')); + // loadTestFile(require.resolve('./kibana/instances_mb')); loadTestFile(require.resolve('./kibana/instance')); + // loadTestFile(require.resolve('./kibana/instance_mb')); // loadTestFile(require.resolve('./logstash/overview')); // loadTestFile(require.resolve('./logstash/nodes')); // loadTestFile(require.resolve('./logstash/node')); loadTestFile(require.resolve('./logstash/pipelines')); + // loadTestFile(require.resolve('./logstash/pipelines_mb')); loadTestFile(require.resolve('./beats/cluster')); loadTestFile(require.resolve('./beats/overview')); @@ -42,5 +53,6 @@ export default function ({ loadTestFile }) { loadTestFile(require.resolve('./enable_monitoring')); loadTestFile(require.resolve('./setup/metricbeat_migration')); + // loadTestFile(require.resolve('./setup/metricbeat_migration_mb')); }); } diff --git a/x-pack/test/functional/apps/monitoring/kibana/instance.js b/x-pack/test/functional/apps/monitoring/kibana/instance.js index 7f057720d007..e96c4639ee58 100644 --- a/x-pack/test/functional/apps/monitoring/kibana/instance.js +++ b/x-pack/test/functional/apps/monitoring/kibana/instance.js @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-yellow-platinum', { + await setup('monitoring/singlecluster_yellow_platinum', { from: 'Aug 29, 2017 @ 17:24:14.254', to: 'Aug 29, 2017 @ 17:25:44.142', }); diff --git a/x-pack/test/functional/apps/monitoring/kibana/instance_mb.js b/x-pack/test/functional/apps/monitoring/kibana/instance_mb.js new file mode 100644 index 000000000000..c0164b3e0796 --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/kibana/instance_mb.js @@ -0,0 +1,48 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const clusterOverview = getService('monitoringClusterOverview'); + const instances = getService('monitoringKibanaInstances'); + const instance = getService('monitoringKibanaInstance'); + + describe('Kibana instance detail mb', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_yellow_platinum_mb', { + from: 'Aug 29, 2017 @ 17:24:14.254', + to: 'Aug 29, 2017 @ 17:25:44.142', + }); + + // go to kibana instance + await clusterOverview.clickKibanaInstances(); + expect(await instances.isOnInstances()).to.be(true); + + await instances.clickRowByName('tsullivan.local'); + + expect(await instance.isOnInstance()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have Instance Summary Status showing correct info', async () => { + expect(await instance.getSummary()).to.eql({ + transportAddress: 'Transport Address\ntsullivan.local:5601', + osFreeMemory: 'OS Free Memory\n1.5 GB', + version: 'Version\n7.0.0-alpha1', + uptime: 'Uptime\n3 minutes', + health: 'Health: green', + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/kibana/instances.js b/x-pack/test/functional/apps/monitoring/kibana/instances.js index 7a126c58fb04..2b6a9a3f35f6 100644 --- a/x-pack/test/functional/apps/monitoring/kibana/instances.js +++ b/x-pack/test/functional/apps/monitoring/kibana/instances.js @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-yellow-platinum', { + await setup('monitoring/singlecluster_yellow_platinum', { from: 'Aug 29, 2017 @ 17:24:14.254', to: 'Aug 29, 2017 @ 17:25:44.142', }); diff --git a/x-pack/test/functional/apps/monitoring/kibana/instances_mb.js b/x-pack/test/functional/apps/monitoring/kibana/instances_mb.js new file mode 100644 index 000000000000..3317513f8157 --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/kibana/instances_mb.js @@ -0,0 +1,46 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const clusterOverview = getService('monitoringClusterOverview'); + const instances = getService('monitoringKibanaInstances'); + const kibanaClusterSummaryStatus = getService('monitoringKibanaSummaryStatus'); + + // Failing: See https://github.com/elastic/kibana/issues/98190 + describe.skip('Kibana instances listing mb', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_yellow_platinum_mb', { + from: 'Aug 29, 2017 @ 17:24:14.254', + to: 'Aug 29, 2017 @ 17:25:44.142', + }); + + // go to kibana instances + await clusterOverview.clickKibanaInstances(); + expect(await instances.isOnInstances()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have Kibana Cluster Summary Status showing correct info', async () => { + expect(await kibanaClusterSummaryStatus.getContent()).to.eql({ + instances: 'Instances\n1', + memory: 'Memory\n219.6 MB / 1.4 GB', + requests: 'Requests\n174', + connections: 'Connections\n174', + maxResponseTime: 'Max. Response Time\n2203 ms', + health: 'Health: green', + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/kibana/overview.js b/x-pack/test/functional/apps/monitoring/kibana/overview.js index 5ce31bed24f3..9fc33fd1aa4d 100644 --- a/x-pack/test/functional/apps/monitoring/kibana/overview.js +++ b/x-pack/test/functional/apps/monitoring/kibana/overview.js @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/singlecluster-yellow-platinum', { + await setup('monitoring/singlecluster_yellow_platinum', { from: 'Aug 29, 2017 @ 17:24:14.254', to: 'Aug 29, 2017 @ 17:25:44.142', }); diff --git a/x-pack/test/functional/apps/monitoring/kibana/overview_mb.js b/x-pack/test/functional/apps/monitoring/kibana/overview_mb.js new file mode 100644 index 000000000000..581c321e98c9 --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/kibana/overview_mb.js @@ -0,0 +1,45 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const clusterOverview = getService('monitoringClusterOverview'); + const overview = getService('monitoringKibanaOverview'); + const kibanaClusterSummaryStatus = getService('monitoringKibanaSummaryStatus'); + + describe('Kibana overview mb', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/singlecluster_yellow_platinum_mb', { + from: 'Aug 29, 2017 @ 17:24:14.254', + to: 'Aug 29, 2017 @ 17:25:44.142', + }); + + // go to kibana overview + await clusterOverview.clickKibanaOverview(); + expect(await overview.isOnOverview()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have Kibana Cluster Summary Status showing correct info', async () => { + expect(await kibanaClusterSummaryStatus.getContent()).to.eql({ + instances: 'Instances\n1', + memory: 'Memory\n219.6 MB / 1.4 GB', + requests: 'Requests\n174', + connections: 'Connections\n174', + maxResponseTime: 'Max. Response Time\n2203 ms', + health: 'Health: green', + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/logstash/pipelines.js b/x-pack/test/functional/apps/monitoring/logstash/pipelines.js index 5de9e680e627..07b9702ac432 100644 --- a/x-pack/test/functional/apps/monitoring/logstash/pipelines.js +++ b/x-pack/test/functional/apps/monitoring/logstash/pipelines.js @@ -19,7 +19,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/logstash-pipelines', { + await setup('monitoring/logstash_pipelines', { from: 'Jan 22, 2018 @ 09:10:00.000', to: 'Jan 22, 2018 @ 09:41:00.000', }); diff --git a/x-pack/test/functional/apps/monitoring/logstash/pipelines_mb.js b/x-pack/test/functional/apps/monitoring/logstash/pipelines_mb.js new file mode 100644 index 000000000000..5f47d3832caa --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/logstash/pipelines_mb.js @@ -0,0 +1,107 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const PageObjects = getPageObjects(['common']); + const retry = getService('retry'); + const overview = getService('monitoringClusterOverview'); + const pipelinesList = getService('monitoringLogstashPipelines'); + const lsClusterSummaryStatus = getService('monitoringLogstashSummaryStatus'); + + describe('Logstash pipelines mb', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/logstash_pipelines_mb', { + from: 'Jan 22, 2018 @ 09:10:00.000', + to: 'Jan 22, 2018 @ 09:41:00.000', + }); + + // go to pipelines listing + await overview.clickLsPipelines(); + expect(await pipelinesList.isOnListing()).to.be(true); + }); + + after(async () => { + await tearDown(); + }); + + it('should have Logstash Cluster Summary Status showing correct info', async () => { + expect(await lsClusterSummaryStatus.getContent()).to.eql({ + nodeCount: 'Nodes\n2', + memoryUsed: 'Memory\n528.4 MB / 1.9 GB', + eventsInTotal: 'Events Received\n117.9k', + eventsOutTotal: 'Events Emitted\n111.9k', + }); + }); + + it('should have Pipelines table showing correct rows with default sorting', async () => { + const rows = await pipelinesList.getRows(); + expect(rows.length).to.be(4); + + await pipelinesList.clickIdCol(); + + const pipelinesAll = await pipelinesList.getPipelinesAll(); + + const tableData = [ + { id: 'main', eventsEmittedRate: '162.5 e/s', nodeCount: '1' }, + { id: 'nginx_logs', eventsEmittedRate: '62.5 e/s', nodeCount: '1' }, + { id: 'test_interpolation', eventsEmittedRate: '0 e/s', nodeCount: '1' }, + { id: 'tweets_about_labradoodles', eventsEmittedRate: '1.2 e/s', nodeCount: '1' }, + ]; + + // check the all data in the table + pipelinesAll.forEach((obj, index) => { + expect(pipelinesAll[index].id).to.be(tableData[index].id); + expect(pipelinesAll[index].eventsEmittedRate).to.be(tableData[index].eventsEmittedRate); + expect(pipelinesAll[index].nodeCount).to.be(tableData[index].nodeCount); + }); + }); + + it('should have Pipelines Table showing correct rows after sorting by Events Emitted Rate Asc', async () => { + await pipelinesList.clickEventsEmittedRateCol(); + + const rows = await pipelinesList.getRows(); + expect(rows.length).to.be(4); + + const pipelinesAll = await pipelinesList.getPipelinesAll(); + + const tableData = [ + { id: 'test_interpolation', eventsEmittedRate: '0 e/s', nodeCount: '1' }, + { id: 'tweets_about_labradoodles', eventsEmittedRate: '1.2 e/s', nodeCount: '1' }, + { id: 'nginx_logs', eventsEmittedRate: '62.5 e/s', nodeCount: '1' }, + { id: 'main', eventsEmittedRate: '162.5 e/s', nodeCount: '1' }, + ]; + + // check the all data in the table + pipelinesAll.forEach((obj, index) => { + expect(pipelinesAll[index].id).to.be(tableData[index].id); + expect(pipelinesAll[index].eventsEmittedRate).to.be(tableData[index].eventsEmittedRate); + expect(pipelinesAll[index].nodeCount).to.be(tableData[index].nodeCount); + }); + }); + + it('should filter for specific pipelines', async () => { + await pipelinesList.setFilter('la'); + await PageObjects.common.pressEnterKey(); + await retry.try(async () => { + const rows = await pipelinesList.getRows(); + expect(rows.length).to.be(2); + }); + await pipelinesList.clearFilter(); + }); + + it('should filter for non-existent pipeline', async () => { + await pipelinesList.setFilter('foobar'); + await pipelinesList.assertNoData(); + await pipelinesList.clearFilter(); + }); + }); +} diff --git a/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration.js b/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration.js index 6619371c2b78..a0986fa1c68b 100644 --- a/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration.js +++ b/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration.js @@ -19,7 +19,7 @@ export default function ({ getService, getPageObjects }) { const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); before(async () => { - await setup('monitoring/setup/collection/es_and_kibana_mb', { + await setup('monitoring/setup/collection/es_and_kibana', { from: 'Apr 9, 2019 @ 00:00:00.741', to: 'Apr 9, 2019 @ 23:59:59.741', useSuperUser: true, diff --git a/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration_mb.js b/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration_mb.js new file mode 100644 index 000000000000..04bee66dfb03 --- /dev/null +++ b/x-pack/test/functional/apps/monitoring/setup/metricbeat_migration_mb.js @@ -0,0 +1,54 @@ +/* + * 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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { getLifecycleMethods } from '../_get_lifecycle_methods'; + +export default function ({ getService, getPageObjects }) { + const deployment = getService('deployment'); + const setupMode = getService('monitoringSetupMode'); + const PageObjects = getPageObjects(['common', 'console']); + + // FLAKY: https://github.com/elastic/kibana/issues/74327 + describe.skip('Setup mode metricbeat migration mb', function () { + describe('setup mode btn', () => { + const { setup, tearDown } = getLifecycleMethods(getService, getPageObjects); + + before(async () => { + await setup('monitoring/setup/collection/es_and_kibana_mb', { + from: 'Apr 9, 2019 @ 00:00:00.741', + to: 'Apr 9, 2019 @ 23:59:59.741', + useSuperUser: true, + }); + }); + + after(async () => { + await tearDown(); + }); + + it('should exist', async () => { + expect(await setupMode.doesSetupModeBtnAppear()).to.be(true); + }); + + it('should be clickable and show the bottom bar', async () => { + await setupMode.clickSetupModeBtn(); + await PageObjects.common.sleep(1000); // bottom drawer animation + expect(await setupMode.doesBottomBarAppear()).to.be(true); + }); + + it('should not show metricbeat migration if cloud', async () => { + const isCloud = await deployment.isCloud(); + expect(await setupMode.doesMetricbeatMigrationTooltipAppear()).to.be(!isCloud); + }); + + // TODO: this does not work because TLS isn't enabled in the test env + // it('should show alerts all the time', async () => { + // expect(await setupMode.doesAlertsTooltipAppear()).to.be(true); + // }); + }); + }); +} diff --git a/x-pack/test/functional/es_archives/monitoring/apm_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/apm_mb/data.json.gz new file mode 100644 index 000000000000..3065596f55b5 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/apm_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/apm_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/apm_mb/mappings.json new file mode 100644 index 000000000000..4e6af879b1fe --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/apm_mb/mappings.json @@ -0,0 +1,22921 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-beats-6-2018.08.31", + "mappings": { + "dynamic": false, + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/basic_6.3.x_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/basic_6.3.x_mb/data.json.gz new file mode 100644 index 000000000000..10cc1cbb68d0 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/basic_6.3.x_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/basic_6.3.x_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/basic_6.3.x_mb/mappings.json new file mode 100644 index 000000000000..907d52a21713 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/basic_6.3.x_mb/mappings.json @@ -0,0 +1,23322 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-6-2018.07.23", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-6-2018.07.23", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/beats_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/beats_mb/data.json.gz new file mode 100644 index 000000000000..d725c2ef4c46 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/beats_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/beats_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/beats_mb/mappings.json new file mode 100644 index 000000000000..1ec4dfae845f --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/beats_mb/mappings.json @@ -0,0 +1,23623 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.12.19", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-beats-6-2017.12.19", + "mappings": { + "dynamic": false, + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "number_of_replicas": "1", + "number_of_shards": "5" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2017.12.19", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/beats-with-restarted-instance/data.json.gz b/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/beats-with-restarted-instance/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/beats-with-restarted-instance/mappings.json b/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/beats-with-restarted-instance/mappings.json rename to x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance_mb/data.json.gz new file mode 100644 index 000000000000..921a1694ccad Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance_mb/mappings.json new file mode 100644 index 000000000000..ba6fd4ec3ef3 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/beats_with_restarted_instance_mb/mappings.json @@ -0,0 +1,23689 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-beats-6-2018.02.09", + "mappings": { + "dynamic": false, + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2018.02.09", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2018.02.09", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/ccr_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/ccr_mb/data.json.gz new file mode 100644 index 000000000000..60d42870b0ba Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/ccr_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/ccr_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/ccr_mb/mappings.json new file mode 100644 index 000000000000..8d69212f0ea8 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/ccr_mb/mappings.json @@ -0,0 +1,23201 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-6-2018.09.19", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/logs_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/logs_mb/data.json.gz new file mode 100644 index 000000000000..98049b65188e Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/logs_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/logs_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/logs_mb/mappings.json new file mode 100644 index 000000000000..66c7255a1c02 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/logs_mb/mappings.json @@ -0,0 +1,26544 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.03.15", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + "filebeat-8.0.0": { + "is_write_index": true + } + }, + "index": "filebeat-8.0.0-2019.03.15-000001", + "mappings": { + "_meta": { + "beat": "filebeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kibana.log.meta": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "kibana.log.meta.*" + } + }, + { + "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" + } + } + }, + "apache": { + "properties": { + "access": { + "properties": { + "ssl": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "error": { + "properties": { + "module": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "apache2": { + "properties": { + "access": { + "properties": { + "geoip": { + "type": "object" + }, + "user_agent": { + "type": "object" + } + } + }, + "error": { + "type": "object" + } + } + }, + "auditd": { + "properties": { + "log": { + "properties": { + "a0": { + "ignore_above": 1024, + "type": "keyword" + }, + "addr": { + "type": "ip" + }, + "geoip": { + "type": "object" + }, + "item": { + "ignore_above": 1024, + "type": "keyword" + }, + "items": { + "ignore_above": 1024, + "type": "keyword" + }, + "laddr": { + "type": "ip" + }, + "lport": { + "type": "long" + }, + "new_auid": { + "ignore_above": 1024, + "type": "keyword" + }, + "new_ses": { + "ignore_above": 1024, + "type": "keyword" + }, + "old_auid": { + "ignore_above": 1024, + "type": "keyword" + }, + "old_ses": { + "ignore_above": 1024, + "type": "keyword" + }, + "rport": { + "type": "long" + }, + "sequence": { + "type": "long" + }, + "tty": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "certificate": { + "properties": { + "common_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "labels": { + "type": "object" + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "audit": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "indices": { + "ignore_above": 1024, + "type": "keyword" + }, + "layer": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "realm": { + "ignore_above": 1024, + "type": "keyword" + }, + "request": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "properties": { + "params": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "realm": { + "ignore_above": 1024, + "type": "keyword" + }, + "roles": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cluster": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "deprecation": { + "properties": { + "cluster": { + "type": "object" + }, + "node": { + "type": "object" + } + } + }, + "gc": { + "properties": { + "heap": { + "properties": { + "size_kb": { + "type": "long" + }, + "used_kb": { + "type": "long" + } + } + }, + "jvm_runtime_sec": { + "type": "float" + }, + "old_gen": { + "properties": { + "size_kb": { + "type": "long" + }, + "used_kb": { + "type": "long" + } + } + }, + "phase": { + "properties": { + "class_unload_time_sec": { + "type": "float" + }, + "cpu_time": { + "properties": { + "real_sec": { + "type": "float" + }, + "sys_sec": { + "type": "float" + }, + "user_sec": { + "type": "float" + } + } + }, + "duration_sec": { + "type": "float" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "parallel_rescan_time_sec": { + "type": "float" + }, + "scrub_string_table_time_sec": { + "type": "float" + }, + "scrub_symbol_table_time_sec": { + "type": "float" + }, + "weak_refs_processing_time_sec": { + "type": "float" + } + } + }, + "stopping_threads_time_sec": { + "type": "float" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threads_total_stop_time_sec": { + "type": "float" + }, + "young_gen": { + "properties": { + "size_kb": { + "type": "long" + }, + "used_kb": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "cluster": { + "type": "object" + }, + "gc": { + "properties": { + "collection_duration": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "observation_duration": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "overhead_seq": { + "type": "long" + }, + "young": { + "properties": { + "one": { + "type": "long" + }, + "two": { + "type": "long" + } + } + } + } + }, + "node": { + "type": "object" + }, + "stacktrace": { + "ignore_above": 1024, + "index": false, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "slowlog": { + "properties": { + "extra_source": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "routing": { + "ignore_above": 1024, + "type": "keyword" + }, + "search_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "source_query": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "ignore_above": 1024, + "type": "keyword" + }, + "took": { + "ignore_above": 1024, + "type": "keyword" + }, + "total_hits": { + "ignore_above": 1024, + "type": "keyword" + }, + "total_shards": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "types": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "target_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fileset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "backend_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_queue": { + "type": "long" + }, + "bind_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes_read": { + "type": "long" + }, + "client": { + "type": "object" + }, + "connection_wait_time_ms": { + "type": "long" + }, + "connections": { + "properties": { + "active": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "frontend": { + "type": "long" + }, + "retries": { + "type": "long" + }, + "server": { + "type": "long" + } + } + }, + "destination": { + "type": "object" + }, + "error_message": { + "norms": false, + "type": "text" + }, + "frontend_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "type": "object" + }, + "http": { + "properties": { + "request": { + "properties": { + "captured_cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "captured_headers": { + "ignore_above": 1024, + "type": "keyword" + }, + "raw_request_line": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_wait_ms": { + "type": "long" + }, + "time_wait_without_data_ms": { + "type": "long" + } + } + }, + "response": { + "properties": { + "captured_cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "captured_headers": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "server_queue": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp": { + "properties": { + "connection_waiting_time_ms": { + "type": "long" + } + } + }, + "termination_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_backend_connect": { + "type": "long" + }, + "time_queue": { + "type": "long" + }, + "total_waiting_time_ms": { + "type": "long" + } + } + }, + "hash": { + "properties": { + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "icinga": { + "properties": { + "debug": { + "properties": { + "facility": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "main": { + "properties": { + "facility": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup": { + "properties": { + "facility": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "iis": { + "properties": { + "access": { + "properties": { + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "type": "object" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "site_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "sub_status": { + "type": "long" + }, + "user_agent": { + "type": "object" + }, + "win32_status": { + "type": "long" + } + } + }, + "error": { + "properties": { + "geoip": { + "type": "object" + }, + "queue_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reason_phrase": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "log": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "trace": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + } + } + } + } + } + } + }, + "kibana": { + "properties": { + "log": { + "properties": { + "meta": { + "type": "object" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "type": "object" + }, + "container": { + "properties": { + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "log": { + "properties": { + "file": { + "properties": { + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "logstash": { + "properties": { + "log": { + "properties": { + "log_event": { + "type": "object" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "slowlog": { + "properties": { + "event": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "plugin_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "plugin_params": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "plugin_params_object": { + "type": "object" + }, + "plugin_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "took_in_millis": { + "type": "long" + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "mongodb": { + "properties": { + "log": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "context": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "error": { + "type": "object" + }, + "slowlog": { + "properties": { + "bytes_sent": { + "type": "long" + }, + "current_user": { + "ignore_above": 1024, + "type": "keyword" + }, + "filesort": { + "type": "boolean" + }, + "filesort_on_disk": { + "type": "boolean" + }, + "full_join": { + "type": "boolean" + }, + "full_scan": { + "type": "boolean" + }, + "innodb": { + "properties": { + "io_r_bytes": { + "type": "long" + }, + "io_r_ops": { + "type": "long" + }, + "io_r_wait": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "pages_distinct": { + "type": "long" + }, + "queue_wait": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "rec_lock_wait": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "trx_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "killed": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_errno": { + "ignore_above": 1024, + "type": "keyword" + }, + "lock_time": { + "properties": { + "sec": { + "type": "float" + } + } + }, + "log_slow_rate_limit": { + "ignore_above": 1024, + "type": "keyword" + }, + "log_slow_rate_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "merge_passes": { + "type": "long" + }, + "priority_queue": { + "type": "boolean" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_cache_hit": { + "type": "boolean" + }, + "rows_affected": { + "type": "long" + }, + "rows_examined": { + "type": "long" + }, + "rows_sent": { + "type": "long" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + }, + "tmp_disk_tables": { + "type": "long" + }, + "tmp_table": { + "type": "boolean" + }, + "tmp_table_on_disk": { + "type": "boolean" + }, + "tmp_table_sizes": { + "type": "long" + }, + "tmp_tables": { + "type": "long" + } + } + }, + "thread_id": { + "type": "long" + } + } + }, + "nats": { + "properties": { + "log": { + "properties": { + "client": { + "properties": { + "id": { + "type": "long" + } + } + }, + "msg": { + "properties": { + "bytes": { + "type": "long" + }, + "error": { + "properties": { + "message": { + "norms": false, + "type": "text" + } + } + }, + "max_messages": { + "type": "long" + }, + "queue_group": { + "norms": false, + "type": "text" + }, + "reply_to": { + "ignore_above": 1024, + "type": "keyword" + }, + "sid": { + "type": "long" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nginx": { + "properties": { + "access": { + "properties": { + "geoip": { + "type": "object" + }, + "user_agent": { + "type": "object" + } + } + }, + "error": { + "properties": { + "connection_id": { + "type": "long" + } + } + } + } + }, + "observer": { + "properties": { + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "osquery": { + "properties": { + "result": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "calendar_time": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_identifier": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "unix_time": { + "type": "long" + } + } + } + } + }, + "postgresql": { + "properties": { + "log": { + "properties": { + "core_id": { + "type": "long" + }, + "database": { + "ignore_above": 1024, + "type": "keyword" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "program": { + "ignore_above": 1024, + "type": "keyword" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + } + } + }, + "title": { + "ignore_above": 1024, + "type": "keyword" + }, + "working_directory": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "log": { + "properties": { + "role": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "slowlog": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "cmd": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "related": { + "properties": { + "ip": { + "type": "ip" + } + } + }, + "santa": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "decision": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "bsdname": { + "ignore_above": 1024, + "type": "keyword" + }, + "bus": { + "ignore_above": 1024, + "type": "keyword" + }, + "fs": { + "ignore_above": 1024, + "type": "keyword" + }, + "model": { + "ignore_above": 1024, + "type": "keyword" + }, + "mount": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stream": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "type": "long" + }, + "facility_label": { + "ignore_above": 1024, + "type": "keyword" + }, + "priority": { + "type": "long" + }, + "severity_label": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "auth": { + "properties": { + "groupadd": { + "type": "object" + }, + "ssh": { + "properties": { + "dropped_ip": { + "type": "ip" + }, + "geoip": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "signature": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "sudo": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "error": { + "ignore_above": 1024, + "type": "keyword" + }, + "pwd": { + "ignore_above": 1024, + "type": "keyword" + }, + "tty": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "useradd": { + "properties": { + "home": { + "ignore_above": 1024, + "type": "keyword" + }, + "shell": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "syslog": { + "type": "object" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "traefik": { + "properties": { + "access": { + "properties": { + "backend_url": { + "ignore_above": 1024, + "type": "keyword" + }, + "frontend_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "properties": { + "city_name": { + "path": "source.geo.city_name", + "type": "alias" + }, + "continent_name": { + "path": "source.geo.continent_name", + "type": "alias" + }, + "country_iso_code": { + "path": "source.geo.country_iso_code", + "type": "alias" + }, + "location": { + "path": "source.geo.location", + "type": "alias" + }, + "region_iso_code": { + "path": "source.geo.region_iso_code", + "type": "alias" + }, + "region_name": { + "path": "source.geo.region_name", + "type": "alias" + } + } + }, + "request_count": { + "type": "long" + }, + "user_agent": { + "properties": { + "device": { + "path": "user_agent.device.name", + "type": "alias" + }, + "name": { + "path": "user_agent.name", + "type": "alias" + }, + "original": { + "path": "user_agent.original", + "type": "alias" + }, + "os": { + "path": "user_agent.os.full_name", + "type": "alias" + }, + "os_name": { + "path": "user_agent.os.name", + "type": "alias" + } + } + }, + "user_identifier": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "audit": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "effective": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "filesystem": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "saved": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "terminal": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "settings": { + "index": { + "lifecycle": { + "name": "filebeat-8.0.0", + "rollover_alias": "filebeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "client.address", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.ip", + "client.mac", + "client.user.email", + "client.user.full_name", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.ip", + "destination.mac", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "ecs.version", + "error.code", + "error.id", + "error.message", + "event.action", + "event.category", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.timezone", + "event.type", + "file.device", + "file.extension", + "file.gid", + "file.group", + "file.inode", + "file.mode", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.id", + "group.name", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.ip", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.email", + "host.user.full_name", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.original", + "network.application", + "network.community_id", + "network.direction", + "network.forwarded_ip", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.ip", + "observer.mac", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "process.args", + "process.executable", + "process.name", + "process.title", + "process.working_directory", + "related.ip", + "server.address", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.ip", + "server.mac", + "server.user.email", + "server.user.full_name", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.ip", + "source.mac", + "source.user.email", + "source.user.full_name", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "url.domain", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.scheme", + "url.username", + "user.email", + "user.full_name", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "agent.hostname", + "error.type", + "cloud.project.id", + "host.os.build", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.container.name", + "kubernetes.container.image", + "log.file.path", + "log.source.address", + "stream", + "input.type", + "syslog.severity_label", + "syslog.facility_label", + "process.program", + "log.flags", + "user_agent.os.full_name", + "fileset.name", + "apache.access.ssl.protocol", + "apache.access.ssl.cipher", + "apache.error.module", + "user.terminal", + "user.audit.id", + "user.audit.name", + "user.audit.group.id", + "user.audit.group.name", + "user.effective.id", + "user.effective.name", + "user.effective.group.id", + "user.effective.group.name", + "user.filesystem.id", + "user.filesystem.name", + "user.filesystem.group.id", + "user.filesystem.group.name", + "user.owner.id", + "user.owner.name", + "user.owner.group.id", + "user.owner.group.name", + "user.saved.id", + "user.saved.name", + "user.saved.group.id", + "user.saved.group.name", + "auditd.log.old_auid", + "auditd.log.new_auid", + "auditd.log.old_ses", + "auditd.log.new_ses", + "auditd.log.items", + "auditd.log.item", + "auditd.log.tty", + "auditd.log.a0", + "auditd.log.addr", + "auditd.log.laddr", + "elasticsearch.component", + "elasticsearch.cluster.uuid", + "elasticsearch.cluster.name", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.index.name", + "elasticsearch.index.id", + "elasticsearch.shard.id", + "elasticsearch.audit.layer", + "elasticsearch.audit.origin.type", + "elasticsearch.audit.realm", + "elasticsearch.audit.user.realm", + "elasticsearch.audit.user.roles", + "elasticsearch.audit.action", + "elasticsearch.audit.url.params", + "elasticsearch.audit.indices", + "elasticsearch.audit.request.id", + "elasticsearch.audit.request.name", + "elasticsearch.gc.phase.name", + "elasticsearch.gc.tags", + "elasticsearch.slowlog.logger", + "elasticsearch.slowlog.took", + "elasticsearch.slowlog.types", + "elasticsearch.slowlog.stats", + "elasticsearch.slowlog.search_type", + "elasticsearch.slowlog.source_query", + "elasticsearch.slowlog.extra_source", + "elasticsearch.slowlog.total_hits", + "elasticsearch.slowlog.total_shards", + "elasticsearch.slowlog.routing", + "elasticsearch.slowlog.id", + "elasticsearch.slowlog.type", + "haproxy.frontend_name", + "haproxy.backend_name", + "haproxy.server_name", + "haproxy.bind_name", + "haproxy.error_message", + "haproxy.source", + "haproxy.termination_state", + "haproxy.mode", + "haproxy.http.response.captured_cookie", + "haproxy.http.response.captured_headers", + "haproxy.http.request.captured_cookie", + "haproxy.http.request.captured_headers", + "haproxy.http.request.raw_request_line", + "icinga.debug.facility", + "icinga.main.facility", + "icinga.startup.facility", + "iis.access.site_name", + "iis.access.server_name", + "iis.access.cookie", + "iis.error.reason_phrase", + "iis.error.queue_name", + "kafka.log.component", + "kafka.log.class", + "kafka.log.trace.class", + "kafka.log.trace.message", + "kibana.log.tags", + "kibana.log.state", + "logstash.log.module", + "text", + "logstash.log.thread", + "logstash.slowlog.module", + "text", + "logstash.slowlog.thread", + "text", + "logstash.slowlog.event", + "logstash.slowlog.plugin_name", + "logstash.slowlog.plugin_type", + "text", + "logstash.slowlog.plugin_params", + "mongodb.log.component", + "mongodb.log.context", + "mysql.slowlog.query", + "mysql.slowlog.schema", + "mysql.slowlog.current_user", + "mysql.slowlog.last_errno", + "mysql.slowlog.killed", + "mysql.slowlog.log_slow_rate_type", + "mysql.slowlog.log_slow_rate_limit", + "mysql.slowlog.innodb.trx_id", + "nats.log.msg.type", + "nats.log.msg.subject", + "nats.log.msg.reply_to", + "nats.log.msg.error.message", + "nats.log.msg.queue_group", + "osquery.result.name", + "osquery.result.action", + "osquery.result.host_identifier", + "osquery.result.calendar_time", + "postgresql.log.timestamp", + "postgresql.log.database", + "postgresql.log.query", + "redis.log.role", + "redis.slowlog.cmd", + "redis.slowlog.key", + "redis.slowlog.args", + "santa.action", + "santa.decision", + "santa.reason", + "santa.mode", + "santa.disk.volume", + "santa.disk.bus", + "santa.disk.serial", + "santa.disk.bsdname", + "santa.disk.model", + "santa.disk.fs", + "santa.disk.mount", + "certificate.common_name", + "certificate.sha256", + "hash.sha256", + "system.auth.ssh.method", + "system.auth.ssh.signature", + "system.auth.ssh.dropped_ip", + "system.auth.sudo.error", + "system.auth.sudo.tty", + "system.auth.sudo.pwd", + "system.auth.sudo.user", + "system.auth.sudo.command", + "system.auth.useradd.home", + "system.auth.useradd.shell", + "traefik.access.user_identifier", + "traefik.access.frontend_name", + "traefik.access.backend_url", + "fields.*" + ] + }, + "refresh_interval": "5s" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/logs_multiple_clusters_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/logs_multiple_clusters_mb/data.json.gz new file mode 100644 index 000000000000..2ee475f14efa Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/logs_multiple_clusters_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/logs_multiple_clusters_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/logs_multiple_clusters_mb/mappings.json new file mode 100644 index 000000000000..110c58357c5c --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/logs_multiple_clusters_mb/mappings.json @@ -0,0 +1,26749 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.08.23", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + "filebeat-8.0.0": { + "is_write_index": true + } + }, + "index": "filebeat-8.0.0-2019.08.23-000001", + "mappings": { + "_meta": { + "beat": "filebeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "docker.attrs": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.attrs.*" + } + }, + { + "kibana.log.meta": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "kibana.log.meta.*" + } + }, + { + "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" + } + } + }, + "apache": { + "properties": { + "access": { + "properties": { + "ssl": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "error": { + "properties": { + "module": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "apache2": { + "properties": { + "access": { + "properties": { + "geoip": { + "type": "object" + }, + "user_agent": { + "type": "object" + } + } + }, + "error": { + "type": "object" + } + } + }, + "auditd": { + "properties": { + "log": { + "properties": { + "a0": { + "ignore_above": 1024, + "type": "keyword" + }, + "addr": { + "type": "ip" + }, + "geoip": { + "type": "object" + }, + "item": { + "ignore_above": 1024, + "type": "keyword" + }, + "items": { + "ignore_above": 1024, + "type": "keyword" + }, + "laddr": { + "type": "ip" + }, + "lport": { + "type": "long" + }, + "new_auid": { + "ignore_above": 1024, + "type": "keyword" + }, + "new_ses": { + "ignore_above": 1024, + "type": "keyword" + }, + "old_auid": { + "ignore_above": 1024, + "type": "keyword" + }, + "old_ses": { + "ignore_above": 1024, + "type": "keyword" + }, + "rport": { + "type": "long" + }, + "sequence": { + "type": "long" + }, + "tty": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "certificate": { + "properties": { + "common_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "docker": { + "properties": { + "attrs": { + "type": "object" + }, + "container": { + "properties": { + "labels": { + "type": "object" + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "audit": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "indices": { + "ignore_above": 1024, + "type": "keyword" + }, + "layer": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "origin": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "realm": { + "ignore_above": 1024, + "type": "keyword" + }, + "request": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "properties": { + "params": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "realm": { + "ignore_above": 1024, + "type": "keyword" + }, + "roles": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cluster": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "deprecation": { + "type": "object" + }, + "gc": { + "properties": { + "heap": { + "properties": { + "size_kb": { + "type": "long" + }, + "used_kb": { + "type": "long" + } + } + }, + "jvm_runtime_sec": { + "type": "float" + }, + "old_gen": { + "properties": { + "size_kb": { + "type": "long" + }, + "used_kb": { + "type": "long" + } + } + }, + "phase": { + "properties": { + "class_unload_time_sec": { + "type": "float" + }, + "cpu_time": { + "properties": { + "real_sec": { + "type": "float" + }, + "sys_sec": { + "type": "float" + }, + "user_sec": { + "type": "float" + } + } + }, + "duration_sec": { + "type": "float" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "parallel_rescan_time_sec": { + "type": "float" + }, + "scrub_string_table_time_sec": { + "type": "float" + }, + "scrub_symbol_table_time_sec": { + "type": "float" + }, + "weak_refs_processing_time_sec": { + "type": "float" + } + } + }, + "stopping_threads_time_sec": { + "type": "float" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threads_total_stop_time_sec": { + "type": "float" + }, + "young_gen": { + "properties": { + "size_kb": { + "type": "long" + }, + "used_kb": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "cluster": { + "type": "object" + }, + "gc": { + "properties": { + "collection_duration": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "observation_duration": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "overhead_seq": { + "type": "long" + }, + "young": { + "properties": { + "one": { + "type": "long" + }, + "two": { + "type": "long" + } + } + } + } + }, + "node": { + "type": "object" + }, + "stacktrace": { + "ignore_above": 1024, + "index": false, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "slowlog": { + "properties": { + "extra_source": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "routing": { + "ignore_above": 1024, + "type": "keyword" + }, + "search_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "source_query": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "ignore_above": 1024, + "type": "keyword" + }, + "took": { + "ignore_above": 1024, + "type": "keyword" + }, + "total_hits": { + "ignore_above": 1024, + "type": "keyword" + }, + "total_shards": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "types": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "target_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fileset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "backend_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_queue": { + "type": "long" + }, + "bind_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes_read": { + "type": "long" + }, + "client": { + "type": "object" + }, + "connection_wait_time_ms": { + "type": "long" + }, + "connections": { + "properties": { + "active": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "frontend": { + "type": "long" + }, + "retries": { + "type": "long" + }, + "server": { + "type": "long" + } + } + }, + "destination": { + "type": "object" + }, + "error_message": { + "norms": false, + "type": "text" + }, + "frontend_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "type": "object" + }, + "http": { + "properties": { + "request": { + "properties": { + "captured_cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "captured_headers": { + "ignore_above": 1024, + "type": "keyword" + }, + "raw_request_line": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_wait_ms": { + "type": "long" + }, + "time_wait_without_data_ms": { + "type": "long" + } + } + }, + "response": { + "properties": { + "captured_cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "captured_headers": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "server_queue": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp": { + "properties": { + "connection_waiting_time_ms": { + "type": "long" + } + } + }, + "termination_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_backend_connect": { + "type": "long" + }, + "time_queue": { + "type": "long" + }, + "total_waiting_time_ms": { + "type": "long" + } + } + }, + "hash": { + "properties": { + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "icinga": { + "properties": { + "debug": { + "properties": { + "facility": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "main": { + "properties": { + "facility": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup": { + "properties": { + "facility": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "icmp": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "igmp": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "iis": { + "properties": { + "access": { + "properties": { + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "type": "object" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "site_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "sub_status": { + "type": "long" + }, + "user_agent": { + "type": "object" + }, + "win32_status": { + "type": "long" + } + } + }, + "error": { + "properties": { + "geoip": { + "type": "object" + }, + "queue_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reason_phrase": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "log": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "trace": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + } + } + } + } + } + } + }, + "kibana": { + "properties": { + "log": { + "properties": { + "meta": { + "type": "object" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "type": "object" + }, + "container": { + "properties": { + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "log": { + "properties": { + "file": { + "properties": { + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "logstash": { + "properties": { + "log": { + "properties": { + "log_event": { + "type": "object" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "slowlog": { + "properties": { + "event": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "plugin_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "plugin_params": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "plugin_params_object": { + "type": "object" + }, + "plugin_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "took_in_millis": { + "type": "long" + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "mongodb": { + "properties": { + "log": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "context": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "error": { + "type": "object" + }, + "slowlog": { + "properties": { + "bytes_received": { + "type": "long" + }, + "bytes_sent": { + "type": "long" + }, + "current_user": { + "ignore_above": 1024, + "type": "keyword" + }, + "filesort": { + "type": "boolean" + }, + "filesort_on_disk": { + "type": "boolean" + }, + "full_join": { + "type": "boolean" + }, + "full_scan": { + "type": "boolean" + }, + "innodb": { + "properties": { + "io_r_bytes": { + "type": "long" + }, + "io_r_ops": { + "type": "long" + }, + "io_r_wait": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "pages_distinct": { + "type": "long" + }, + "queue_wait": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "rec_lock_wait": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "trx_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "killed": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_errno": { + "ignore_above": 1024, + "type": "keyword" + }, + "lock_time": { + "properties": { + "sec": { + "type": "float" + } + } + }, + "log_slow_rate_limit": { + "ignore_above": 1024, + "type": "keyword" + }, + "log_slow_rate_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "merge_passes": { + "type": "long" + }, + "priority_queue": { + "type": "boolean" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_cache_hit": { + "type": "boolean" + }, + "read_first": { + "type": "long" + }, + "read_key": { + "type": "long" + }, + "read_last": { + "type": "long" + }, + "read_next": { + "type": "long" + }, + "read_prev": { + "type": "long" + }, + "read_rnd": { + "type": "long" + }, + "read_rnd_next": { + "type": "long" + }, + "rows_affected": { + "type": "long" + }, + "rows_examined": { + "type": "long" + }, + "rows_sent": { + "type": "long" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + }, + "sort_merge_passes": { + "type": "long" + }, + "sort_range_count": { + "type": "long" + }, + "sort_rows": { + "type": "long" + }, + "sort_scan_count": { + "type": "long" + }, + "tmp_disk_tables": { + "type": "long" + }, + "tmp_table": { + "type": "boolean" + }, + "tmp_table_on_disk": { + "type": "boolean" + }, + "tmp_table_sizes": { + "type": "long" + }, + "tmp_tables": { + "type": "long" + } + } + }, + "thread_id": { + "type": "long" + } + } + }, + "nats": { + "properties": { + "log": { + "properties": { + "client": { + "properties": { + "id": { + "type": "long" + } + } + }, + "msg": { + "properties": { + "bytes": { + "type": "long" + }, + "error": { + "properties": { + "message": { + "norms": false, + "type": "text" + } + } + }, + "max_messages": { + "type": "long" + }, + "queue_group": { + "norms": false, + "type": "text" + }, + "reply_to": { + "ignore_above": 1024, + "type": "keyword" + }, + "sid": { + "type": "long" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nginx": { + "properties": { + "access": { + "properties": { + "geoip": { + "type": "object" + }, + "user_agent": { + "type": "object" + } + } + }, + "error": { + "properties": { + "connection_id": { + "type": "long" + } + } + } + } + }, + "observer": { + "properties": { + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "osquery": { + "properties": { + "result": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "calendar_time": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_identifier": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "unix_time": { + "type": "long" + } + } + } + } + }, + "postgresql": { + "properties": { + "log": { + "properties": { + "core_id": { + "type": "long" + }, + "database": { + "ignore_above": 1024, + "type": "keyword" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "program": { + "ignore_above": 1024, + "type": "keyword" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + } + } + }, + "title": { + "ignore_above": 1024, + "type": "keyword" + }, + "working_directory": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "log": { + "properties": { + "role": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "slowlog": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "cmd": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "related": { + "properties": { + "ip": { + "type": "ip" + } + } + }, + "santa": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "decision": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "bsdname": { + "ignore_above": 1024, + "type": "keyword" + }, + "bus": { + "ignore_above": 1024, + "type": "keyword" + }, + "fs": { + "ignore_above": 1024, + "type": "keyword" + }, + "model": { + "ignore_above": 1024, + "type": "keyword" + }, + "mount": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stream": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "type": "long" + }, + "facility_label": { + "ignore_above": 1024, + "type": "keyword" + }, + "priority": { + "type": "long" + }, + "severity_label": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "auth": { + "properties": { + "groupadd": { + "type": "object" + }, + "ssh": { + "properties": { + "dropped_ip": { + "type": "ip" + }, + "event": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "signature": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "sudo": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "error": { + "ignore_above": 1024, + "type": "keyword" + }, + "pwd": { + "ignore_above": 1024, + "type": "keyword" + }, + "tty": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "useradd": { + "properties": { + "home": { + "ignore_above": 1024, + "type": "keyword" + }, + "shell": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "syslog": { + "type": "object" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "traefik": { + "properties": { + "access": { + "properties": { + "backend_url": { + "ignore_above": 1024, + "type": "keyword" + }, + "frontend_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "geoip": { + "properties": { + "city_name": { + "path": "source.geo.city_name", + "type": "alias" + }, + "continent_name": { + "path": "source.geo.continent_name", + "type": "alias" + }, + "country_iso_code": { + "path": "source.geo.country_iso_code", + "type": "alias" + }, + "location": { + "path": "source.geo.location", + "type": "alias" + }, + "region_iso_code": { + "path": "source.geo.region_iso_code", + "type": "alias" + }, + "region_name": { + "path": "source.geo.region_name", + "type": "alias" + } + } + }, + "request_count": { + "type": "long" + }, + "user_agent": { + "properties": { + "device": { + "path": "user_agent.device.name", + "type": "alias" + }, + "name": { + "path": "user_agent.name", + "type": "alias" + }, + "original": { + "path": "user_agent.original", + "type": "alias" + }, + "os": { + "path": "user_agent.os.full_name", + "type": "alias" + }, + "os_name": { + "path": "user_agent.os.name", + "type": "alias" + } + } + }, + "user_identifier": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "audit": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "effective": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "filesystem": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "saved": { + "properties": { + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "terminal": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "settings": { + "index": { + "lifecycle": { + "name": "filebeat-8.0.0", + "rollover_alias": "filebeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "client.address", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.user.email", + "client.user.full_name", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "ecs.version", + "error.code", + "error.id", + "error.message", + "event.action", + "event.category", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.timezone", + "event.type", + "file.device", + "file.extension", + "file.gid", + "file.group", + "file.inode", + "file.mode", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.id", + "group.name", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.email", + "host.user.full_name", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.original", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "process.args", + "process.executable", + "process.name", + "process.title", + "process.working_directory", + "server.address", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.user.email", + "server.user.full_name", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.user.email", + "source.user.full_name", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "url.domain", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.scheme", + "url.username", + "user.email", + "user.full_name", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "agent.hostname", + "error.type", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "log.file.path", + "log.source.address", + "stream", + "input.type", + "syslog.severity_label", + "syslog.facility_label", + "process.program", + "log.flags", + "user_agent.os.full_name", + "fileset.name", + "event.code", + "icmp.code", + "icmp.type", + "igmp.type", + "source.as.organization.name", + "destination.as.organization.name", + "apache.access.ssl.protocol", + "apache.access.ssl.cipher", + "apache.error.module", + "user.terminal", + "user.audit.id", + "user.audit.name", + "user.audit.group.id", + "user.audit.group.name", + "user.effective.id", + "user.effective.name", + "user.effective.group.id", + "user.effective.group.name", + "user.filesystem.id", + "user.filesystem.name", + "user.filesystem.group.id", + "user.filesystem.group.name", + "user.owner.id", + "user.owner.name", + "user.owner.group.id", + "user.owner.group.name", + "user.saved.id", + "user.saved.name", + "user.saved.group.id", + "user.saved.group.name", + "auditd.log.old_auid", + "auditd.log.new_auid", + "auditd.log.old_ses", + "auditd.log.new_ses", + "auditd.log.items", + "auditd.log.item", + "auditd.log.tty", + "auditd.log.a0", + "elasticsearch.component", + "elasticsearch.cluster.uuid", + "elasticsearch.cluster.name", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.index.name", + "elasticsearch.index.id", + "elasticsearch.shard.id", + "elasticsearch.audit.layer", + "elasticsearch.audit.event_type", + "elasticsearch.audit.origin.type", + "elasticsearch.audit.realm", + "elasticsearch.audit.user.realm", + "elasticsearch.audit.user.roles", + "elasticsearch.audit.action", + "elasticsearch.audit.url.params", + "elasticsearch.audit.indices", + "elasticsearch.audit.request.id", + "elasticsearch.audit.request.name", + "elasticsearch.audit.message", + "elasticsearch.gc.phase.name", + "elasticsearch.gc.tags", + "elasticsearch.slowlog.logger", + "elasticsearch.slowlog.took", + "elasticsearch.slowlog.types", + "elasticsearch.slowlog.stats", + "elasticsearch.slowlog.search_type", + "elasticsearch.slowlog.source_query", + "elasticsearch.slowlog.extra_source", + "elasticsearch.slowlog.total_hits", + "elasticsearch.slowlog.total_shards", + "elasticsearch.slowlog.routing", + "elasticsearch.slowlog.id", + "elasticsearch.slowlog.type", + "elasticsearch.slowlog.source", + "haproxy.frontend_name", + "haproxy.backend_name", + "haproxy.server_name", + "haproxy.bind_name", + "haproxy.error_message", + "haproxy.source", + "haproxy.termination_state", + "haproxy.mode", + "haproxy.http.response.captured_cookie", + "haproxy.http.response.captured_headers", + "haproxy.http.request.captured_cookie", + "haproxy.http.request.captured_headers", + "haproxy.http.request.raw_request_line", + "icinga.debug.facility", + "icinga.main.facility", + "icinga.startup.facility", + "iis.access.site_name", + "iis.access.server_name", + "iis.access.cookie", + "iis.error.reason_phrase", + "iis.error.queue_name", + "kafka.log.component", + "kafka.log.class", + "kafka.log.trace.class", + "kafka.log.trace.message", + "kibana.log.tags", + "kibana.log.state", + "logstash.log.module", + "text", + "logstash.log.thread", + "logstash.slowlog.module", + "text", + "logstash.slowlog.thread", + "text", + "logstash.slowlog.event", + "logstash.slowlog.plugin_name", + "logstash.slowlog.plugin_type", + "text", + "logstash.slowlog.plugin_params", + "mongodb.log.component", + "mongodb.log.context", + "mysql.slowlog.query", + "mysql.slowlog.schema", + "mysql.slowlog.current_user", + "mysql.slowlog.last_errno", + "mysql.slowlog.killed", + "mysql.slowlog.log_slow_rate_type", + "mysql.slowlog.log_slow_rate_limit", + "mysql.slowlog.innodb.trx_id", + "nats.log.msg.type", + "nats.log.msg.subject", + "nats.log.msg.reply_to", + "nats.log.msg.error.message", + "nats.log.msg.queue_group", + "osquery.result.name", + "osquery.result.action", + "osquery.result.host_identifier", + "osquery.result.calendar_time", + "postgresql.log.timestamp", + "postgresql.log.database", + "postgresql.log.query", + "redis.log.role", + "redis.slowlog.cmd", + "redis.slowlog.key", + "redis.slowlog.args", + "santa.action", + "santa.decision", + "santa.reason", + "santa.mode", + "santa.disk.volume", + "santa.disk.bus", + "santa.disk.serial", + "santa.disk.bsdname", + "santa.disk.model", + "santa.disk.fs", + "santa.disk.mount", + "certificate.common_name", + "certificate.sha256", + "hash.sha256", + "system.auth.ssh.method", + "system.auth.ssh.signature", + "system.auth.ssh.event", + "system.auth.sudo.error", + "system.auth.sudo.tty", + "system.auth.sudo.pwd", + "system.auth.sudo.user", + "system.auth.sudo.command", + "system.auth.useradd.home", + "system.auth.useradd.shell", + "traefik.access.user_identifier", + "traefik.access.frontend_name", + "traefik.access.backend_url", + "fields.*" + ] + }, + "refresh_interval": "5s" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/logstash/changing_pipelines_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/logstash/changing_pipelines_mb/data.json.gz new file mode 100644 index 000000000000..d38f3cb83caf Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/logstash/changing_pipelines_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/logstash/changing_pipelines_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/logstash/changing_pipelines_mb/mappings.json new file mode 100644 index 000000000000..12c4e37d01d7 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/logstash/changing_pipelines_mb/mappings.json @@ -0,0 +1,23495 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-alerts-7", + "mappings": { + "dynamic": "false", + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.11.04", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-7-2019.11.04", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/logstash-pipelines/data.json.gz b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/logstash-pipelines/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/logstash_pipelines/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/logstash-pipelines/mappings.json b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/logstash-pipelines/mappings.json rename to x-pack/test/functional/es_archives/monitoring/logstash_pipelines/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_mb/data.json.gz new file mode 100644 index 000000000000..900f4da323f4 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_mb/mappings.json new file mode 100644 index 000000000000..4deec638c509 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_mb/mappings.json @@ -0,0 +1,23428 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-logstash-6-2018.01.22", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2018.01.22", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_multicluster_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_multicluster_mb/data.json.gz new file mode 100644 index 000000000000..503c753d14c0 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_multicluster_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_multicluster_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_multicluster_mb/mappings.json new file mode 100644 index 000000000000..1c2378e094dc --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/logstash_pipelines_multicluster_mb/mappings.json @@ -0,0 +1,23495 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-alerts-7", + "mappings": { + "dynamic": "false", + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.11.11", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-7-2019.11.11", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/multi-basic/data.json.gz b/x-pack/test/functional/es_archives/monitoring/multi_basic/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/multi-basic/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/multi_basic/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/multi-basic/mappings.json b/x-pack/test/functional/es_archives/monitoring/multi_basic/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/multi-basic/mappings.json rename to x-pack/test/functional/es_archives/monitoring/multi_basic/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/multi_basic_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/multi_basic_mb/data.json.gz new file mode 100644 index 000000000000..a60671320f08 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/multi_basic_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/multi_basic_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/multi_basic_mb/mappings.json new file mode 100644 index 000000000000..70b10794e71a --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/multi_basic_mb/mappings.json @@ -0,0 +1,23604 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2017.09.07", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.09.07", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-logstash-6-2017.09.07", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/multicluster/mappings.json b/x-pack/test/functional/es_archives/monitoring/multicluster/mappings.json index 319a2e95e47b..d93a7ff5bf3b 100644 --- a/x-pack/test/functional/es_archives/monitoring/multicluster/mappings.json +++ b/x-pack/test/functional/es_archives/monitoring/multicluster/mappings.json @@ -602,82 +602,75 @@ "cluster_uuid": { "type": "keyword" }, - "timestamp": { - "type": "date", - "format": "date_time" - }, "interval_ms": { "type": "long" }, - "type": { - "type": "keyword" - }, - "source_node": { + "logstash_state": { "properties": { - "uuid": { + "ephemeral_id": { "type": "keyword" }, "host": { "type": "keyword" }, - "transport_address": { - "type": "keyword" - }, - "ip": { + "http_address": { "type": "keyword" }, "name": { "type": "keyword" }, - "timestamp": { - "type": "date", - "format": "date_time" - } - } - }, - "logstash_stats": { - "type": "object", - "properties": { - "logstash": { + "pipeline": { "properties": { - "uuid": { - "type": "keyword" - }, - "name": { - "type": "keyword" + "batch_size": { + "type": "integer" }, "ephemeral_id": { "type": "keyword" }, - "host": { + "format": { "type": "keyword" }, - "http_address": { + "hash": { "type": "keyword" }, + "id": { + "type": "keyword" + }, + "representation": { + "enabled": false + }, "version": { "type": "keyword" }, - "snapshot": { - "type": "boolean" - }, - "status": { - "type": "keyword" - }, - "pipeline": { - "properties": { - "workers": { - "type": "short" - }, - "batch_size": { - "type": "long" - } - } + "workers": { + "type": "short" } } }, + "snapshot": { + "type": "boolean" + }, + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "logstash_stats": { + "properties": { + "batch_size": { + "type": "integer" + }, "events": { "properties": { + "duration_in_millis": { + "type": "long" + }, "filtered": { "type": "long" }, @@ -686,20 +679,11 @@ }, "out": { "type": "long" - }, - "duration_in_millis": { - "type": "long" } } }, - "timestamp": { - "type": "date" - }, "jvm": { "properties": { - "uptime_in_millis": { - "type": "long" - }, "gc": { "properties": { "collectors": { @@ -740,40 +724,54 @@ "type": "long" } } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "ephemeral_id": { + "type": "keyword" + }, + "host": { + "type": "keyword" + }, + "http_address": { + "type": "keyword" + }, + "name": { + "type": "keyword" + }, + "pipeline": { + "properties": { + "batch_size": { + "type": "long" + }, + "workers": { + "type": "short" + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" } } }, "os": { "properties": { - "cpu": { - "properties": { - "load_average": { - "properties": { - "1m": { - "type": "half_float" - }, - "5m": { - "type": "half_float" - }, - "15m": { - "type": "half_float" - } - } - } - } - }, "cgroup": { "properties": { - "cpuacct": { - "properties": { - "control_group": { - "type": "keyword" - }, - "usage_nanos": { - "type": "long" - } - } - }, "cpu": { "properties": { "control_group": { @@ -793,11 +791,142 @@ } } } + }, + "cpuacct": { + "properties": { + "control_group": { + "type": "keyword" + }, + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } } } } } }, + "pipelines": { + "properties": { + "ephemeral_id": { + "type": "keyword" + }, + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "queue_push_duration_in_millis": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "reloads": { + "properties": { + "failures": { + "type": "long" + }, + "successes": { + "type": "long" + } + } + }, + "vertices": { + "properties": { + "double_gauges": { + "properties": { + "name": { + "type": "keyword" + }, + "value": { + "type": "double" + } + }, + "type": "nested" + }, + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "long_counters": { + "properties": { + "name": { + "type": "keyword" + }, + "value": { + "type": "long" + } + }, + "type": "nested" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "long" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, "process": { "properties": { "cpu": { @@ -815,16 +944,6 @@ } } }, - "reloads": { - "properties": { - "failures": { - "type": "long" - }, - "successes": { - "type": "long" - } - } - }, "queue": { "properties": { "events_count": { @@ -835,173 +954,24 @@ } } }, - "pipelines": { - "type": "nested", + "reloads": { "properties": { - "id": { - "type": "keyword" + "failures": { + "type": "long" }, - "hash": { - "type": "keyword" - }, - "ephemeral_id": { - "type": "keyword" - }, - "events": { - "properties": { - "in": { - "type": "long" - }, - "filtered": { - "type": "long" - }, - "out": { - "type": "long" - }, - "duration_in_millis": { - "type": "long" - }, - "queue_push_duration_in_millis": { - "type": "long" - } - } - }, - "queue": { - "properties": { - "events_count": { - "type": "long" - }, - "type": { - "type": "keyword" - }, - "max_queue_size_in_bytes": { - "type": "long" - }, - "queue_size_in_bytes": { - "type": "long" - } - } - }, - "vertices": { - "type": "nested", - "properties": { - "id": { - "type": "keyword" - }, - "pipeline_ephemeral_id": { - "type": "keyword" - }, - "events_in": { - "type": "long" - }, - "events_out": { - "type": "long" - }, - "duration_in_millis": { - "type": "long" - }, - "queue_push_duration_in_millis": { - "type": "long" - }, - "long_counters": { - "type": "nested", - "properties": { - "name": { - "type": "keyword" - }, - "value": { - "type": "long" - } - } - }, - "double_gauges": { - "type": "nested", - "properties": { - "name": { - "type": "keyword" - }, - "value": { - "type": "double" - } - } - } - } - }, - "reloads": { - "properties": { - "failures": { - "type": "long" - }, - "successes": { - "type": "long" - } - } + "successes": { + "type": "long" } } }, + "timestamp": { + "type": "date" + }, "workers": { "type": "short" - }, - "batch_size": { - "type": "integer" } - } - }, - "logstash_state": { - "properties": { - "uuid": { - "type": "keyword" - }, - "name": { - "type": "keyword" - }, - "host": { - "type": "keyword" - }, - "http_address": { - "type": "keyword" - }, - "ephemeral_id": { - "type": "keyword" - }, - "version": { - "type": "keyword" - }, - "snapshot": { - "type": "boolean" - }, - "status": { - "type": "keyword" - }, - "pipeline": { - "properties": { - "id": { - "type": "keyword" - }, - "hash": { - "type": "keyword" - }, - "ephemeral_id": { - "type": "keyword" - }, - "workers": { - "type": "short" - }, - "batch_size": { - "type": "integer" - }, - "format": { - "type": "keyword" - }, - "version": { - "type": "keyword" - }, - "representation": { - "enabled": false - } - } - } - } + }, + "type": "object" }, "metricset": { "properties": { @@ -1015,6 +985,36 @@ "type": "text" } } + }, + "source_node": { + "properties": { + "host": { + "type": "keyword" + }, + "ip": { + "type": "keyword" + }, + "name": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "transport_address": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" } } }, @@ -1212,4 +1212,4 @@ } } } -} +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/multicluster_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/multicluster_mb/data.json.gz new file mode 100644 index 000000000000..6c0a9f83bc64 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/multicluster_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/multicluster_mb/data.json.rebuilding b/x-pack/test/functional/es_archives/monitoring/multicluster_mb/data.json.rebuilding new file mode 100644 index 000000000000..1c805379f6c0 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/multicluster_mb/data.json.rebuilding @@ -0,0 +1,470907 @@ +{ + "type": "_doc", + "value": { + "id": "9lDp510BY87G63mlLHdV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.406Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 142, + "time": { + "ms": 495 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 142 + } + }, + "search": { + "query": { + "count": 43, + "time": { + "ms": 99 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VIjOlzhQ6mHR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KxQhQK30Sbf6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVQufqXkVy0r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m86Yba4OYVlY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rt0G9bvYZ2bA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.410Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 67, + "query_total": 36 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.410Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 143283, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 1335 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.410Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 84 + }, + "indexing": { + "index_time_in_millis": 295, + "index_total": 120, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 685 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 466467 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 295, + "index_total": 120, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 685 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 3 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 9652, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 59143, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2394, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 44289, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 466467 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.410Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.410Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 42388 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 812, + "fixed_bit_set_memory_in_bytes": 48, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17506, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14958, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 42388 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.410Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 16033 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 292, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4208, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3214, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 16033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431353856 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 98 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 495 + }, + "index_total": { + "count": 142 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 100 + }, + "query_total": { + "count": 47 + } + }, + "segments": { + "count": 13, + "doc_values": { + "memory": { + "bytes": 10892 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 48 + } + }, + "index_writer": { + "memory": { + "bytes": 143283 + } + }, + "memory": { + "bytes": 84580 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 2423 + } + }, + "stored_fields": { + "memory": { + "bytes": 4056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 65289 + } + }, + "version_map": { + "memory": { + "bytes": 1335 + } + } + }, + "store": { + "size": { + "bytes": 597117 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 215 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 225023744, + "pct": 35 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.154296875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Do510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.397Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 72, + "time": { + "ms": 358 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 72 + } + }, + "search": { + "query": { + "count": 25, + "time": { + "ms": 73 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDo510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "By4DIT2PMKgB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OS07kDDhCJDy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRU9ngygRAeruZbbSqLGWQ:7r5cGj40Qcyia0J1xF0lnA:.monitoring-es-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "tRU9ngygRAeruZbbSqLGWQ" + }, + "stats": { + "state": { + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRU9ngygRAeruZbbSqLGWQ:_na:.monitoring-es-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "tRU9ngygRAeruZbbSqLGWQ" + }, + "stats": { + "state": { + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRU9ngygRAeruZbbSqLGWQ:7r5cGj40Qcyia0J1xF0lnA:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "tRU9ngygRAeruZbbSqLGWQ" + }, + "stats": { + "state": { + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRU9ngygRAeruZbbSqLGWQ:7r5cGj40Qcyia0J1xF0lnA:.watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "tRU9ngygRAeruZbbSqLGWQ" + }, + "stats": { + "state": { + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRU9ngygRAeruZbbSqLGWQ:_na:.watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "tRU9ngygRAeruZbbSqLGWQ" + }, + "stats": { + "state": { + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDo510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.403Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 59, + "query_total": 24 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDo510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.403Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 46 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 66, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 553 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 346273 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 66, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 553 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 5240, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38234, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1596, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29526, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 346273 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Do510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.403Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 52492 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 524, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20096, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 22, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52492 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDo510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431411200 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 52 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 358 + }, + "index_total": { + "count": 72 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 74 + }, + "query_total": { + "count": 29 + } + }, + "segments": { + "count": 12, + "doc_values": { + "memory": { + "bytes": 5832 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 59675 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 1619 + } + }, + "stored_fields": { + "memory": { + "bytes": 3744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 46560 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 402393 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 208 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131747840, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.56884765625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dn510BY87G63mlzncE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:34.394Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1, + "time": { + "ms": 113 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1 + } + }, + "search": { + "query": { + "count": 0, + "time": { + "ms": 0 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDn510BY87G63mlzncE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:34.397Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_Zg2PNnPRV-GOULeeFK6Sg:7r5cGj40Qcyia0J1xF0lnA:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:34.409Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "_Zg2PNnPRV-GOULeeFK6Sg" + }, + "stats": { + "state": { + "state_uuid": "_Zg2PNnPRV-GOULeeFK6Sg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDn510BY87G63mlzncE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:34.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dn510BY87G63mlzncE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200433647616 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 113 + }, + "index_total": { + "count": 1 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 49 + }, + "query_total": { + "count": 4 + } + }, + "segments": { + "count": 1, + "doc_values": { + "memory": { + "bytes": 68 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1345 + }, + "norms": { + "memory": { + "bytes": 0 + } + }, + "points": { + "memory": { + "bytes": 1 + } + }, + "stored_fields": { + "memory": { + "bytes": 312 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 964 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 3628 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 5, + "ms": 145 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 166358952, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.02001953125 + } + } + }, + "process": { + "cpu": { + "pct": 26 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Do510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.385Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 24, + "time": { + "ms": 251 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 24 + } + }, + "search": { + "query": { + "count": 9, + "time": { + "ms": 70 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDo510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.386Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zWcydNI04eFc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.386Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1jzNCBtL7Ex", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.386Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDo510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.390Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 56, + "query_total": 8 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDo510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.390Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 18 + }, + "indexing": { + "index_time_in_millis": 95, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 285 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 113511 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 95, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 285 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 1144, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12142, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 532, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9842, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 113511 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Do510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.390Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 52492 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 524, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20096, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 22, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52492 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDo510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200432947200 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 24 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 251 + }, + "index_total": { + "count": 24 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 70 + }, + "query_total": { + "count": 13 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 1736 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 33583 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 555 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 26876 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 169631 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 198 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 106351744, + "pct": 16 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.48583984375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDo510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.397Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 48, + "time": { + "ms": 304 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 48 + } + }, + "search": { + "query": { + "count": 17, + "time": { + "ms": 71 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDo510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Lxgw1lkwTgPJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1IXzAvhFEgE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Do510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.400Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 57, + "query_total": 16 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDo510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.400Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 32 + }, + "indexing": { + "index_time_in_millis": 148, + "index_total": 42, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 410 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 229867 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 148, + "index_total": 42, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 410 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 3200, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 25196, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1064, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 19684, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 229867 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDo510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.400Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 52492 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 524, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20096, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 22, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52492 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Do510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431804416 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 38 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 304 + }, + "index_total": { + "count": 48 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 21 + } + }, + "segments": { + "count": 10, + "doc_values": { + "memory": { + "bytes": 3792 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 46637 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 1087 + } + }, + "stored_fields": { + "memory": { + "bytes": 3120 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 36718 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 285987 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 198 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 206207440, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.48291015625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDo510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.400Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 60, + "time": { + "ms": 328 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 60 + } + }, + "search": { + "query": { + "count": 21, + "time": { + "ms": 72 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDo510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.403Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BC3Oor6n2zZa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.403Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZCXI3kM9ueEi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.403Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDo510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.409Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 58, + "query_total": 20 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Do510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.409Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 39 + }, + "indexing": { + "index_time_in_millis": 172, + "index_total": 54, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 453 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 288076 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 172, + "index_total": 54, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 453 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 4228, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 31723, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1330, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 24605, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 288076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDo510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.409Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 52492 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 524, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20096, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 22, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52492 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDo510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431484928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 45 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 328 + }, + "index_total": { + "count": 60 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 73 + }, + "query_total": { + "count": 25 + } + }, + "segments": { + "count": 11, + "doc_values": { + "memory": { + "bytes": 4820 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 53164 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 1353 + } + }, + "stored_fields": { + "memory": { + "bytes": 3432 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 41639 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 344196 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 198 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 254836512, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.8603515625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDo510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.393Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 36, + "time": { + "ms": 279 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 36 + } + }, + "search": { + "query": { + "count": 13, + "time": { + "ms": 70 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Do510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.394Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NMwVJleoMvFp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.394Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yY9L9q9W0mQt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.394Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDo510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.397Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 56, + "query_total": 12 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDo510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.397Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 25 + }, + "indexing": { + "index_time_in_millis": 123, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 336 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 171741 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 123, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 336 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 2252, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18749, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 798, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14763, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 171741 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDo510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.397Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 52492 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 524, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20096, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 22, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52492 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDo510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.405Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431980544 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 31 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 279 + }, + "index_total": { + "count": 36 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 71 + }, + "query_total": { + "count": 17 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 2844 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 40190 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 821 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 31797 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 227861 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 198 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 156387944, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.60595703125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDn510BY87G63ml83fo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.387Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 12, + "time": { + "ms": 222 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 12 + } + }, + "search": { + "query": { + "count": 5, + "time": { + "ms": 63 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDn510BY87G63ml83fo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.388Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Fok9Gf2C79Fs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.388Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8QaLUjkzOc3n", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.388Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDn510BY87G63ml83fo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.392Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 49, + "query_total": 4 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dn510BY87G63ml83fp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.392Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 6 + }, + "indexing": { + "index_time_in_millis": 66, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 186 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 55402 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 66, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 186 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 132, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 5631, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 266, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 4921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 55402 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDn510BY87G63ml83fp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.392Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 52492 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 788 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 524, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20096, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 22, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52492 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDn510BY87G63ml83fp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.436Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200433102848 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 12 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 222 + }, + "index_total": { + "count": 12 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 70 + }, + "query_total": { + "count": 9 + } + }, + "segments": { + "count": 7, + "doc_values": { + "memory": { + "bytes": 724 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 27072 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 289 + } + }, + "stored_fields": { + "memory": { + "bytes": 2184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 21955 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 111522 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 182 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 189444344, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.25830078125 + } + } + }, + "process": { + "cpu": { + "pct": 9 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.398Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 100, + "time": { + "ms": 424 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 100 + } + }, + "search": { + "query": { + "count": 35, + "time": { + "ms": 92 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Do510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aCq34jRng1nj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E4AX3Iw3zz7T", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YWQn8I6GB4Nr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MvxtZtrUlQWR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "woKupVKPzffe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.399Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 60, + "query_total": 28 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 143283, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 1335 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 53 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 78, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 627 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 404629 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 78, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 627 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 3 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 6412, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 44905, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1862, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 34447, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 404629 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Do510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 42388 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 812, + "fixed_bit_set_memory_in_bytes": 48, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17506, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14958, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 42388 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 16033 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 292, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4208, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3214, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 16033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Do510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.440Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431435776 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 67 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 424 + }, + "index_total": { + "count": 100 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 98 + }, + "query_total": { + "count": 39 + } + }, + "segments": { + "count": 11, + "doc_values": { + "memory": { + "bytes": 7652 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 48 + } + }, + "index_writer": { + "memory": { + "bytes": 143283 + } + }, + "memory": { + "bytes": 70342 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 1891 + } + }, + "stored_fields": { + "memory": { + "bytes": 3432 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 55447 + } + }, + "version_map": { + "memory": { + "bytes": 1335 + } + } + }, + "store": { + "size": { + "bytes": 473503 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 215 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 123743016, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.48095703125 + } + } + }, + "process": { + "cpu": { + "pct": 7 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.401Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 121, + "time": { + "ms": 471 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 121 + } + }, + "search": { + "query": { + "count": 39, + "time": { + "ms": 98 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.402Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1tXAMrjva8kR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.402Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AreLFyeWdgog", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.402Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wirEqUKF7LDo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.402Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i5TZy0sRoCVo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.402Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X5XDCk6ow6lA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.402Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 66, + "query_total": 32 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 143283, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 1335 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 74 + }, + "indexing": { + "index_time_in_millis": 271, + "index_total": 99, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 656 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 404629 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 271, + "index_total": 99, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 656 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 3 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 8064, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 52056, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2128, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39368, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 404629 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 42388 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 812, + "fixed_bit_set_memory_in_bytes": 48, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17506, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14958, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 42388 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 16033 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 292, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4208, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3214, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 16033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.416Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431333376 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 88 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 471 + }, + "index_total": { + "count": 121 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 99 + }, + "query_total": { + "count": 43 + } + }, + "segments": { + "count": 12, + "doc_values": { + "memory": { + "bytes": 9304 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 48 + } + }, + "index_writer": { + "memory": { + "bytes": 143283 + } + }, + "memory": { + "bytes": 77493 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 2157 + } + }, + "stored_fields": { + "memory": { + "bytes": 3744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 60368 + } + }, + "version_map": { + "memory": { + "bytes": 1335 + } + } + }, + "store": { + "size": { + "bytes": 535341 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 215 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 174641976, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.705078125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.425Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 233, + "time": { + "ms": 618 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 233 + } + }, + "search": { + "query": { + "count": 55, + "time": { + "ms": 103 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1tPEDwHNj0x", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8J1h6n59uh1r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "apnpMhbPkOqD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "POkiuKbI1hgp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eOmb1pVuk1hz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 71, + "query_total": 48 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 143283, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 1335 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 130 + }, + "indexing": { + "index_time_in_millis": 384, + "index_total": 199, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 589840 + }, + "refresh": { + "total_time_in_millis": 1069 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 220403 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 384, + "index_total": 199, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 589840 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1069 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 3 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 9288, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 40052, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1453, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 27439, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 220403 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 42388 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 812, + "fixed_bit_set_memory_in_bytes": 48, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17506, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14958, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 42388 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 74, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 946 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 16033 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 74, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 946 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 816, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24304, + "norms_memory_in_bytes": 2304, + "points_memory_in_bytes": 28, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 19284, + "version_map_memory_in_bytes": 838 + }, + "store": { + "size_in_bytes": 16033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDp510BY87G63mloXia", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.435Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430845952 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 156 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 618 + }, + "index_total": { + "count": 233 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 103 + }, + "query_total": { + "count": 59 + } + }, + "segments": { + "count": 22, + "doc_values": { + "memory": { + "bytes": 11664 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 48 + } + }, + "index_writer": { + "memory": { + "bytes": 143283 + } + }, + "memory": { + "bytes": 98092 + }, + "norms": { + "memory": { + "bytes": 4096 + } + }, + "points": { + "memory": { + "bytes": 1511 + } + }, + "stored_fields": { + "memory": { + "bytes": 6864 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 73957 + } + }, + "version_map": { + "memory": { + "bytes": 2173 + } + } + }, + "store": { + "size": { + "bytes": 319223 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 12, + "ms": 240 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 138280160, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.39990234375 + } + } + }, + "process": { + "cpu": { + "pct": 12 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 191, + "time": { + "ms": 558 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 191 + } + }, + "search": { + "query": { + "count": 51, + "time": { + "ms": 101 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cukucnjQvLkF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "reZuty9L5Ixz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vBDF8xpn2IqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5L0HGKPu5DWP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VevFvzirE3d1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:7r5cGj40Qcyia0J1xF0lnA:.monitoring-es-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:_na:.monitoring-es-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:7r5cGj40Qcyia0J1xF0lnA:.triggered_watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:_na:.triggered_watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:7r5cGj40Qcyia0J1xF0lnA:.watcher-history-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:_na:.watcher-history-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:7r5cGj40Qcyia0J1xF0lnA:.monitoring-alerts-6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:_na:.monitoring-alerts-6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:7r5cGj40Qcyia0J1xF0lnA:.watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:_na:.watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hUJoJv6HQlGsZWluC-g1Gg:7r5cGj40Qcyia0J1xF0lnA:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.408Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "hUJoJv6HQlGsZWluC-g1Gg" + }, + "stats": { + "state": { + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.411Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 69, + "query_total": 44 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.411Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 143283, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 1335 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.411Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 104 + }, + "indexing": { + "index_time_in_millis": 341, + "index_total": 162, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 589840 + }, + "refresh": { + "total_time_in_millis": 852 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 96700 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 341, + "index_total": 162, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 589840 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 852 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 3 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 7392, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18391, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 533, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9842, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 96700 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.411Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.411Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 42388 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 812, + "fixed_bit_set_memory_in_bytes": 48, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17506, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14958, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 42388 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.411Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 16033 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 292, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4208, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3214, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 16033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431226880 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 125 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 558 + }, + "index_total": { + "count": 191 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4670 + } + }, + "search": { + "query_time": { + "ms": 103 + }, + "query_total": { + "count": 55 + } + }, + "segments": { + "count": 13, + "doc_values": { + "memory": { + "bytes": 9244 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 48 + } + }, + "index_writer": { + "memory": { + "bytes": 143283 + } + }, + "memory": { + "bytes": 56335 + }, + "norms": { + "memory": { + "bytes": 2176 + } + }, + "points": { + "memory": { + "bytes": 569 + } + }, + "stored_fields": { + "memory": { + "bytes": 4056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 40290 + } + }, + "version_map": { + "memory": { + "bytes": 1335 + } + } + }, + "store": { + "size": { + "bytes": 195520 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 10, + "ms": 225 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 260481584, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.01025390625 + } + } + }, + "process": { + "cpu": { + "pct": 8 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDp510BY87G63mlwHji", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.419Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 22, + "time": { + "ms": 134 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 64 + } + }, + "search": { + "query": { + "count": 44, + "time": { + "ms": 137 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDp510BY87G63mlwHji", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.422Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jju0Qh45Cmv9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.422Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yoCBkUWL5ep7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.422Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDp510BY87G63mlwHji", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.432Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 11675 + }, + "search": { + "query_time_in_millis": 137, + "query_total": 44 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDp510BY87G63mlwHji", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430514176 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 134 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5387 + } + }, + "search": { + "query_time": { + "ms": 43 + }, + "query_total": { + "count": 21 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 187 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 234599800, + "pct": 37 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.017578125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDp510BY87G63mltng9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:39.735Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430604288 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 45 + }, + "query_total": { + "count": 11 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 176530248, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.36767578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dp510BY87G63mltnhp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:39.759Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 60, + "query_total": 24 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDp510BY87G63mltnhp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:39.760Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 24, + "time": { + "ms": 60 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDp510BY87G63mltnhp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:39.760Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDp510BY87G63mltnhp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:39.760Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430604288 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 60 + }, + "query_total": { + "count": 24 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 124895056, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.36767578125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDp510BY87G63mlkHjV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:29.733Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431140864 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 1618 + } + }, + "search": { + "query_time": { + "ms": 44 + }, + "query_total": { + "count": 9 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 173295544, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.60888671875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDp510BY87G63mlkXi0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:29.754Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 24366 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 57, + "query_total": 20 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 24366 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDp510BY87G63mlkXi1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:29.757Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 20, + "time": { + "ms": 57 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dp510BY87G63mlkXi1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:29.758Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDp510BY87G63mlkXi1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:29.758Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431140864 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4670 + } + }, + "search": { + "query_time": { + "ms": 57 + }, + "query_total": { + "count": 20 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 121139464, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.60888671875 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDp510BY87G63mlmnj0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.416Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 22, + "time": { + "ms": 134 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 64 + } + }, + "search": { + "query": { + "count": 40, + "time": { + "ms": 136 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dp510BY87G63mlmnj0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.418Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GRaMogvyGHrJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.418Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N7CbVBK4OA7q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.418Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDp510BY87G63mlmnj0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.427Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 9340 + }, + "search": { + "query_time_in_millis": 136, + "query_total": 40 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDp510BY87G63mlmnj0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.445Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431083520 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 134 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4670 + } + }, + "search": { + "query_time": { + "ms": 42 + }, + "query_total": { + "count": 19 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 187 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 229310304, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.39990234375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.412Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 163, + "time": { + "ms": 518 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 163 + } + }, + "search": { + "query": { + "count": 47, + "time": { + "ms": 100 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OfsNY8xEHrCT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BRXYJdn64smc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UnuUPZUYjF6Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LfTKKYrWXZ1E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6AY9snSXPnuq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 189 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 68, + "query_total": 40 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1345, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 143283, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 1335 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 94 + }, + "indexing": { + "index_time_in_millis": 318, + "index_total": 141, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 589840 + }, + "refresh": { + "total_time_in_millis": 759 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 528243 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 318, + "index_total": 141, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 589840 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 759 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 5900, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 11400, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 267, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 4921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 528243 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 3 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6628 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 42388 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 53 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 812, + "fixed_bit_set_memory_in_bytes": 48, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17506, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14958, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 42388 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.415Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 16033 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 57, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 822 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 292, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4208, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3214, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 16033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.432Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431521792 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 108 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 518 + }, + "index_total": { + "count": 163 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 101 + }, + "query_total": { + "count": 51 + } + }, + "segments": { + "count": 5, + "doc_values": { + "memory": { + "bytes": 7140 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 48 + } + }, + "index_writer": { + "memory": { + "bytes": 143283 + } + }, + "memory": { + "bytes": 36837 + }, + "norms": { + "memory": { + "bytes": 1920 + } + }, + "points": { + "memory": { + "bytes": 296 + } + }, + "stored_fields": { + "memory": { + "bytes": 1560 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 25921 + } + }, + "version_map": { + "memory": { + "bytes": 1335 + } + } + }, + "store": { + "size": { + "bytes": 165574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 10, + "ms": 225 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 179711504, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.44140625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDp510BY87G63mlw3ig", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:43.154Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430514176 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5529 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 15 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 168466080, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.017578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dp510BY87G63mlnHjH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:33.154Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200431083520 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4670 + } + }, + "search": { + "query_time": { + "ms": 50 + }, + "query_total": { + "count": 14 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 166081560, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.39990234375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.421Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 360, + "time": { + "ms": 786 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 360 + } + }, + "search": { + "query": { + "count": 75, + "time": { + "ms": 109 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ssLJ0QxdovHo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Oy8BtnyDMkS7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7Xef7bXlDaqw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VJV3FbxHTssB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LfwSuILbwE8t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.422Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 73, + "query_total": 60 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 146207, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 2606 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 207 + }, + "indexing": { + "index_time_in_millis": 518, + "index_total": 310, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1146003 + }, + "refresh": { + "total_time_in_millis": 1459 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 308002 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 518, + "index_total": 310, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1146003 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1459 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 6 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 12048, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 53880, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2049, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 37287, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308002 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6637 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 1, + "query_total": 8 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6637 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 14 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 107302 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1660, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 47204, + "norms_memory_in_bytes": 3968, + "points_memory_in_bytes": 44, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40596, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107302 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 76904 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 844, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28246, + "norms_memory_in_bytes": 2688, + "points_memory_in_bytes": 32, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22498, + "version_map_memory_in_bytes": 838 + }, + "store": { + "size_in_bytes": 76904 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.433Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430198784 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 240 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 786 + }, + "index_total": { + "count": 360 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 110 + }, + "query_total": { + "count": 79 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 15300 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 144 + } + }, + "index_writer": { + "memory": { + "bytes": 146207 + } + }, + "memory": { + "bytes": 145560 + }, + "norms": { + "memory": { + "bytes": 7040 + } + }, + "points": { + "memory": { + "bytes": 2139 + } + }, + "stored_fields": { + "memory": { + "bytes": 8424 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 112657 + } + }, + "version_map": { + "memory": { + "bytes": 3444 + } + } + }, + "store": { + "size": { + "bytes": 731676 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 15, + "ms": 268 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239212960, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.244140625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDq510BY87G63mlD3gD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.422Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 22, + "time": { + "ms": 134 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 64 + } + }, + "search": { + "query": { + "count": 52, + "time": { + "ms": 144 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDq510BY87G63mlD3gD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.428Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CuWzwzfgNdc9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.428Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "keAjIGID7edA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.428Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDq510BY87G63mlD3gD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.438Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7764 + }, + "search": { + "query_time_in_millis": 144, + "query_total": 52 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDq510BY87G63mlD3gD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430313472 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 134 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 44 + }, + "query_total": { + "count": 23 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 187 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239935872, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.244140625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDq510BY87G63mlK3h0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:09.742Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430108672 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3094 + } + }, + "search": { + "query_time": { + "ms": 48 + }, + "query_total": { + "count": 15 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 178088144, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.86474609375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDq510BY87G63mlK3il", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:09.772Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 36 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDq510BY87G63mlK3il", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:09.772Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 36, + "time": { + "ms": 63 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dq510BY87G63mlK3il", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:09.773Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDq510BY87G63mlK3il", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:09.773Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430108672 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 63 + }, + "query_total": { + "count": 36 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 128126632, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.86474609375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDp510BY87G63ml3XhP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:49.738Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430809088 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3094 + } + }, + "search": { + "query_time": { + "ms": 47 + }, + "query_total": { + "count": 12 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 176712512, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.69580078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDp510BY87G63ml3Xhy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:49.764Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 61, + "query_total": 28 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDp510BY87G63ml3Xhy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:49.764Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 28, + "time": { + "ms": 61 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dp510BY87G63ml3Xhy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:49.764Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDp510BY87G63ml3Xhy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:49.765Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430804992 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 61 + }, + "query_total": { + "count": 28 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 126346104, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.69580078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDq510BY87G63mlBHhi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:59.741Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430555136 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3094 + } + }, + "search": { + "query_time": { + "ms": 48 + }, + "query_total": { + "count": 13 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 177663912, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.61376953125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dq510BY87G63mlBHiC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:59.766Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 62, + "query_total": 32 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDq510BY87G63mlBHiC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:59.766Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 32, + "time": { + "ms": 62 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDq510BY87G63mlBHiC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:59.766Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDq510BY87G63mlBHiC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:59.766Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430551040 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 62 + }, + "query_total": { + "count": 32 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 127361640, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.61376953125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDp510BY87G63ml53jn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.418Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 22, + "time": { + "ms": 134 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 64 + } + }, + "search": { + "query": { + "count": 48, + "time": { + "ms": 143 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dp510BY87G63ml53jn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.420Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NUzisS6HzTRW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.420Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OocBOXtECyc6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.420Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDp510BY87G63ml53jn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.431Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 10958 + }, + "search": { + "query_time_in_millis": 143, + "query_total": 48 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDp510BY87G63ml53jn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.447Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430727168 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 134 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 43 + }, + "query_total": { + "count": 22 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 187 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 238293144, + "pct": 37 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.3193359375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dp510BY87G63ml6niv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:53.155Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430727168 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5529 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 17 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 169574824, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.3193359375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.419Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 323, + "time": { + "ms": 755 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 323 + } + }, + "search": { + "query": { + "count": 71, + "time": { + "ms": 108 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VJ59YC4Mpl2h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XUm4h1YwshBX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rz5ItfIuBIsH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4D4OqgdBwd5B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EwjhIetlh9PE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.420Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 72, + "query_total": 56 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 146207, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 2606 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 185 + }, + "indexing": { + "index_time_in_millis": 487, + "index_total": 273, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1146003 + }, + "refresh": { + "total_time_in_millis": 1349 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 308002 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 487, + "index_total": 273, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1146003 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1349 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 6 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 10056, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 32123, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1129, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 19690, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308002 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6637 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 1, + "query_total": 8 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6637 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 14 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 107302 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1660, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 47204, + "norms_memory_in_bytes": 3968, + "points_memory_in_bytes": 44, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40596, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107302 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 76904 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 844, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28246, + "norms_memory_in_bytes": 2688, + "points_memory_in_bytes": 32, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22498, + "version_map_memory_in_bytes": 838 + }, + "store": { + "size_in_bytes": 76904 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430645248 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 218 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 755 + }, + "index_total": { + "count": 323 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 109 + }, + "query_total": { + "count": 75 + } + }, + "segments": { + "count": 23, + "doc_values": { + "memory": { + "bytes": 13308 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 144 + } + }, + "index_writer": { + "memory": { + "bytes": 146207 + } + }, + "memory": { + "bytes": 123803 + }, + "norms": { + "memory": { + "bytes": 7040 + } + }, + "points": { + "memory": { + "bytes": 1219 + } + }, + "stored_fields": { + "memory": { + "bytes": 7176 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 95060 + } + }, + "version_map": { + "memory": { + "bytes": 3444 + } + } + }, + "store": { + "size": { + "bytes": 532616 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 14, + "ms": 256 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 255125728, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.3193359375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 286, + "time": { + "ms": 724 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 286 + } + }, + "search": { + "query": { + "count": 67, + "time": { + "ms": 107 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Oy4mTfwQNxqn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bLfFHXbRdXrN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vNRaT0dLdb4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PcqjhM4gPxP0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9Ycyt8xS7Dhi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.424Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 71, + "query_total": 52 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 146207, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 2606 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 163 + }, + "indexing": { + "index_time_in_millis": 456, + "index_total": 236, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1146003 + }, + "refresh": { + "total_time_in_millis": 1251 + }, + "segments": { + "count": 10 + }, + "store": { + "size_in_bytes": 689753 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 456, + "index_total": 236, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1146003 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1251 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 6 + }, + "segments": { + "count": 10, + "doc_values_memory_in_bytes": 11384, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 61913, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2373, + "stored_fields_memory_in_bytes": 3120, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 45036, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 689753 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6637 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 1, + "query_total": 8 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6637 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 14 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 107302 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1660, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 47204, + "norms_memory_in_bytes": 3968, + "points_memory_in_bytes": 44, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40596, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107302 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 76904 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 844, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28246, + "norms_memory_in_bytes": 2688, + "points_memory_in_bytes": 32, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22498, + "version_map_memory_in_bytes": 838 + }, + "store": { + "size_in_bytes": 76904 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430231552 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 196 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 724 + }, + "index_total": { + "count": 286 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 108 + }, + "query_total": { + "count": 71 + } + }, + "segments": { + "count": 29, + "doc_values": { + "memory": { + "bytes": 14636 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 144 + } + }, + "index_writer": { + "memory": { + "bytes": 146207 + } + }, + "memory": { + "bytes": 153593 + }, + "norms": { + "memory": { + "bytes": 7040 + } + }, + "points": { + "memory": { + "bytes": 2463 + } + }, + "stored_fields": { + "memory": { + "bytes": 9048 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 120406 + } + }, + "version_map": { + "memory": { + "bytes": 3444 + } + } + }, + "store": { + "size": { + "bytes": 914367 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 14, + "ms": 256 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 116550688, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.017578125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDq510BY87G63mlEXi7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:03.156Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430313472 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 18 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 171054928, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.244140625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.428Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 437, + "time": { + "ms": 852 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 437 + } + }, + "search": { + "query": { + "count": 83, + "time": { + "ms": 110 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NYTZwhBrhOYN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "36Zff8eX4PPP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MhYHGXvCIEQS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "599TdEw7G4rs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wxd8M6ZfTo0v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:7r5cGj40Qcyia0J1xF0lnA:.monitoring-es-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:_na:.monitoring-es-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:7r5cGj40Qcyia0J1xF0lnA:.triggered_watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:_na:.triggered_watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:7r5cGj40Qcyia0J1xF0lnA:.watcher-history-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:_na:.watcher-history-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:7r5cGj40Qcyia0J1xF0lnA:.monitoring-alerts-6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:_na:.monitoring-alerts-6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:7r5cGj40Qcyia0J1xF0lnA:.watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:_na:.watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A8qLRApQ7S6iYvVS2BN_w:7r5cGj40Qcyia0J1xF0lnA:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "7A8qLRApQ7S6iYvVS2BN_w" + }, + "stats": { + "state": { + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 74, + "query_total": 68 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 146207, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 2606 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 257 + }, + "indexing": { + "index_time_in_millis": 584, + "index_total": 387, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1770708 + }, + "refresh": { + "total_time_in_millis": 1829 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 250431 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 584, + "index_total": 387, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1770708 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1829 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 6 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 13212, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 47339, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1656, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 30279, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 250431 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6637 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 1, + "query_total": 8 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6637 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 14 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 107302 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1660, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 47204, + "norms_memory_in_bytes": 3968, + "points_memory_in_bytes": 44, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40596, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107302 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 76904 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 844, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28246, + "norms_memory_in_bytes": 2688, + "points_memory_in_bytes": 32, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22498, + "version_map_memory_in_bytes": 838 + }, + "store": { + "size_in_bytes": 76904 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.443Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430084096 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 290 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 852 + }, + "index_total": { + "count": 437 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 111 + }, + "query_total": { + "count": 87 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 16464 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 144 + } + }, + "index_writer": { + "memory": { + "bytes": 146207 + } + }, + "memory": { + "bytes": 139019 + }, + "norms": { + "memory": { + "bytes": 7040 + } + }, + "points": { + "memory": { + "bytes": 1746 + } + }, + "stored_fields": { + "memory": { + "bytes": 8120 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 105649 + } + }, + "version_map": { + "memory": { + "bytes": 3444 + } + } + }, + "store": { + "size": { + "bytes": 675498 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 18, + "ms": 288 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 87222528, + "pct": 13 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.43896484375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDq510BY87G63mlhHhg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 23, + "time": { + "ms": 148 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 65 + } + }, + "search": { + "query": { + "count": 74, + "time": { + "ms": 160 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDq510BY87G63mlhHhg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.437Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AmDqzAj0CjOd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.437Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j8rfXzPrAwAN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.437Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "br3bVMU3v4K2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.437Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iLRysFEjQFRO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.437Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dq510BY87G63mlhHhg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.445Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 147, + "query_total": 64 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDq510BY87G63mlhHhg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.445Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 13, + "query_total": 10 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2690, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1928, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDq510BY87G63mlhHhg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.478Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200429842432 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 148 + }, + "index_total": { + "count": 23 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3801 + } + }, + "search": { + "query_time": { + "ms": 51 + }, + "query_total": { + "count": 34 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 113418488, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.5634765625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDq510BY87G63mlNngQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.427Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 22, + "time": { + "ms": 134 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 64 + } + }, + "search": { + "query": { + "count": 56, + "time": { + "ms": 145 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dq510BY87G63mlNngQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.430Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Jnw5Zk3ntey3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.430Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QU7gQEV83SVG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.430Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mg1Mn90gQO61heh2db6Clw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.433Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mg1Mn90gQO61heh2db6Clw" + }, + "stats": { + "state": { + "state_uuid": "mg1Mn90gQO61heh2db6Clw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mg1Mn90gQO61heh2db6Clw:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.433Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mg1Mn90gQO61heh2db6Clw" + }, + "stats": { + "state": { + "state_uuid": "mg1Mn90gQO61heh2db6Clw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mg1Mn90gQO61heh2db6Clw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.433Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mg1Mn90gQO61heh2db6Clw" + }, + "stats": { + "state": { + "state_uuid": "mg1Mn90gQO61heh2db6Clw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDq510BY87G63mlNngQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.437Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 145, + "query_total": 56 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDq510BY87G63mlNngQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.455Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430563328 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 134 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 44 + }, + "query_total": { + "count": 25 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 187 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 242532608, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.79541015625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dq510BY87G63mleXiY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:29.747Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200429936640 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 49 + }, + "query_total": { + "count": 18 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188700184, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.00341796875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDq510BY87G63mleXjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:29.777Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 65, + "query_total": 44 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDq510BY87G63mleXjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:29.779Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 44, + "time": { + "ms": 65 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDq510BY87G63mleXjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:29.779Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dq510BY87G63mleXjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:29.779Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200429936640 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 65 + }, + "query_total": { + "count": 44 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 130344944, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.00341796875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDq510BY87G63mlUniD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:19.743Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430284800 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 48 + }, + "query_total": { + "count": 16 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 186482176, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.6513671875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dq510BY87G63mlUniv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:19.776Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 64, + "query_total": 40 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDq510BY87G63mlUniv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:19.777Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 40, + "time": { + "ms": 64 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDq510BY87G63mlUniv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:19.777Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDq510BY87G63mlUniv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:19.777Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430280704 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 64 + }, + "query_total": { + "count": 40 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129317624, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.6513671875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDq510BY87G63mlXXgz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.431Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 23, + "time": { + "ms": 148 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 65 + } + }, + "search": { + "query": { + "count": 62, + "time": { + "ms": 151 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDq510BY87G63mlXXgz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rRWamsuItk72", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IGOLV6ZIwbwe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dkolgTQDXG12", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EQq872D5NiVT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDq510BY87G63mlXXgz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.442Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 146, + "query_total": 60 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dq510BY87G63mlXXgz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.442Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 5, + "query_total": 2 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2690, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1928, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDq510BY87G63mlXXgz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.468Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430202880 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 148 + }, + "index_total": { + "count": 23 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 49 + }, + "query_total": { + "count": 28 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 99834280, + "pct": 15 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.43896484375 + } + } + }, + "process": { + "cpu": { + "pct": 7 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.426Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 397, + "time": { + "ms": 824 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 397 + } + }, + "search": { + "query": { + "count": 79, + "time": { + "ms": 110 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.427Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "houiggi3BomB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.427Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KyznqHAa2cdp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.427Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DkYJcwdiHBTv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.427Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KcTwsZcokb8n", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.427Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ckX1YjdFjB4Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.427Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 74, + "query_total": 64 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 146207, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 2606 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 229 + }, + "indexing": { + "index_time_in_millis": 556, + "index_total": 347, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1770708 + }, + "refresh": { + "total_time_in_millis": 1755 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 250431 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 556, + "index_total": 347, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1770708 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1755 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 6 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 11148, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 25510, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 736, + "stored_fields_memory_in_bytes": 944, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12682, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 250431 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6637 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 1, + "query_total": 8 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6637 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 14 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 107302 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 171 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1660, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 47204, + "norms_memory_in_bytes": 3968, + "points_memory_in_bytes": 44, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40596, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107302 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 76904 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 83, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1012 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 844, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28246, + "norms_memory_in_bytes": 2688, + "points_memory_in_bytes": 32, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22498, + "version_map_memory_in_bytes": 838 + }, + "store": { + "size_in_bytes": 76904 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430444544 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 262 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 824 + }, + "index_total": { + "count": 397 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 110 + }, + "query_total": { + "count": 83 + } + }, + "segments": { + "count": 22, + "doc_values": { + "memory": { + "bytes": 14400 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 144 + } + }, + "index_writer": { + "memory": { + "bytes": 146207 + } + }, + "memory": { + "bytes": 117190 + }, + "norms": { + "memory": { + "bytes": 7040 + } + }, + "points": { + "memory": { + "bytes": 826 + } + }, + "stored_fields": { + "memory": { + "bytes": 6872 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 88052 + } + }, + "version_map": { + "memory": { + "bytes": 3444 + } + } + }, + "store": { + "size": { + "bytes": 475045 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 17, + "ms": 283 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 108541864, + "pct": 17 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.79541015625 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDq510BY87G63mlX3jg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:23.162Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430202880 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 54 + }, + "query_total": { + "count": 20 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 182750920, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.43896484375 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dq510BY87G63mlOHjM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:13.158Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430563328 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 54 + }, + "query_total": { + "count": 19 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 172231880, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.79541015625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 598, + "time": { + "ms": 1066 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 598 + } + }, + "search": { + "query": { + "count": 123, + "time": { + "ms": 186 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pBiVqOYr3C4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fy7FpTWF5KJV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0GizVCr8W4NQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TD92DhppxrBN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7ABR6lQyT8g4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zwVHzXbg819v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.438Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 76, + "query_total": 80 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 152151, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 5180 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 4 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 269 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 46044 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 269 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 12 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 204, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12336, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 117, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11079, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 46044 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 341 + }, + "indexing": { + "index_time_in_millis": 696, + "index_total": 513, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2396583 + }, + "refresh": { + "total_time_in_millis": 3338 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 603159 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 696, + "index_total": 513, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2396583 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3338 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 12 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 16028, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 61161, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2196, + "stored_fields_memory_in_bytes": 2816, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40121, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 603159 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 4, + "query_total": 18 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 48986 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 720, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16380, + "norms_memory_in_bytes": 1536, + "points_memory_in_bytes": 20, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12856, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48986 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 184929 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2940, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 77336, + "norms_memory_in_bytes": 6528, + "points_memory_in_bytes": 74, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 66234, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 184929 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.453Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421163008 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 390 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1066 + }, + "index_total": { + "count": 598 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 187 + }, + "query_total": { + "count": 127 + } + }, + "segments": { + "count": 30, + "doc_values": { + "memory": { + "bytes": 20640 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 240 + } + }, + "index_writer": { + "memory": { + "bytes": 152151 + } + }, + "memory": { + "bytes": 183443 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 2421 + } + }, + "stored_fields": { + "memory": { + "bytes": 9368 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 142566 + } + }, + "version_map": { + "memory": { + "bytes": 5180 + } + } + }, + "store": { + "size": { + "bytes": 923527 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 22, + "ms": 345 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 117122880, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.6259765625 + } + } + }, + "process": { + "cpu": { + "pct": 7 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dq510BY87G63ml0nht", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.438Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 23, + "time": { + "ms": 148 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 65 + } + }, + "search": { + "query": { + "count": 97, + "time": { + "ms": 168 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDq510BY87G63ml0nht", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.441Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PiSA2S4ciU9c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.441Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFl0PqqYpG6h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.441Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "90RpvTR6WMUn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.441Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5gerqaDNDbwz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.441Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDq510BY87G63ml0nht", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.450Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 149, + "query_total": 72 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDq510BY87G63ml0nht", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.450Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 19, + "query_total": 25 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2690, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1928, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDq510BY87G63ml0nht", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.482Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421249024 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 148 + }, + "index_total": { + "count": 23 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 54 + }, + "query_total": { + "count": 43 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 137926472, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.6259765625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDq510BY87G63ml1XgT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:53.166Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421249024 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 66 + }, + "query_total": { + "count": 36 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 191387904, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.6259765625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDq510BY87G63mlx3i9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:49.751Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421326848 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 49 + }, + "query_total": { + "count": 20 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 193483232, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.59375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDq510BY87G63mlx3j3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:49.785Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 67, + "query_total": 52 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dq510BY87G63mlx3j3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:49.786Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 52, + "time": { + "ms": 67 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDq510BY87G63mlx3j3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:49.786Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDq510BY87G63mlx3j3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:49.786Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421326848 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 67 + }, + "query_total": { + "count": 52 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 132578544, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.59375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDq510BY87G63mloHiv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:39.751Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200423424000 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 49 + }, + "query_total": { + "count": 19 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 190178464, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.68017578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDq510BY87G63mloHjf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:39.782Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 65, + "query_total": 48 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDq510BY87G63mloHjf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:39.783Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 48, + "time": { + "ms": 65 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dq510BY87G63mloHjf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:39.784Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDq510BY87G63mloHjf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:39.785Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200423288832 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 65 + }, + "query_total": { + "count": 48 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131340720, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.68017578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDq510BY87G63mlq3hn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.436Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 23, + "time": { + "ms": 148 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 65 + } + }, + "search": { + "query": { + "count": 86, + "time": { + "ms": 166 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dq510BY87G63mlq3hn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3I1E6baDVNme", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L9xvAv1sxliV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "muAnQeAMWwmi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a2qesjMTORym", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDq510BY87G63mlq3hn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 149, + "query_total": 68 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDq510BY87G63mlq3hn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 4380 + }, + "search": { + "query_time_in_millis": 17, + "query_total": 18 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2690, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1928, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dq510BY87G63mlq3hn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421699584 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 148 + }, + "index_total": { + "count": 23 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4527 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 39 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 127151872, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.90673828125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.432Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 494, + "time": { + "ms": 947 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 494 + } + }, + "search": { + "query": { + "count": 101, + "time": { + "ms": 164 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JwaCnrRGEAZM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ag2kwURyFa8g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mn7vv3ZLkL5E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HLacCQPCVHfF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F2RLdNG8t2xf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "00nRgDm0U9sG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.434Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 75, + "query_total": 72 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 148870, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 3845 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 15780 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 1117 + }, + "search": { + "query_time_in_millis": 49, + "query_total": 6 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4112, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 39, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 15780 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 280 + }, + "indexing": { + "index_time_in_millis": 624, + "index_total": 427, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2396583 + }, + "refresh": { + "total_time_in_millis": 2275 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 224374 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 624, + "index_total": 427, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2396583 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2275 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 24, + "query_total": 9 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 11448, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20319, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 478, + "stored_fields_memory_in_bytes": 632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7761, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 224374 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6637 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 57 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 2, + "query_total": 13 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6637 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 110, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1244 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 76904 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 110, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1244 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 643229, + "memory_in_bytes": 16340, + "norms_memory_in_bytes": 1536, + "points_memory_in_bytes": 20, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12856, + "version_map_memory_in_bytes": 162 + }, + "store": { + "size_in_bytes": 76904 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 19 + }, + "indexing": { + "index_time_in_millis": 63, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 345 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 107302 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 63, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 345 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2064, + "fixed_bit_set_memory_in_bytes": 192, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 59766, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 58, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51276, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107302 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.443Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200430186496 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 320 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 947 + }, + "index_total": { + "count": 494 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3452 + } + }, + "search": { + "query_time": { + "ms": 164 + }, + "query_total": { + "count": 105 + } + }, + "segments": { + "count": 20, + "doc_values": { + "memory": { + "bytes": 15008 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 192 + } + }, + "index_writer": { + "memory": { + "bytes": 792099 + } + }, + "memory": { + "bytes": 116767 + }, + "norms": { + "memory": { + "bytes": 7040 + } + }, + "points": { + "memory": { + "bytes": 609 + } + }, + "stored_fields": { + "memory": { + "bytes": 6248 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 87862 + } + }, + "version_map": { + "memory": { + "bytes": 4007 + } + } + }, + "store": { + "size": { + "bytes": 464768 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 19, + "ms": 313 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 209598552, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.5634765625 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.443Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 554, + "time": { + "ms": 1031 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 554 + } + }, + "search": { + "query": { + "count": 119, + "time": { + "ms": 185 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9PBGsQowjnAO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uS7pRjZ0XymN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EZsv11rXBYAC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KftcwbFZH1x3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W3EbqM8f0dlO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "spf3hjZTxhBx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 75, + "query_total": 76 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 152151, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 5180 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 3 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 141 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 30915 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 141 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 12 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8224, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 78, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7386, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 30915 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 317 + }, + "indexing": { + "index_time_in_millis": 664, + "index_total": 470, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2396583 + }, + "refresh": { + "total_time_in_millis": 2928 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 426127 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 664, + "index_total": 470, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2396583 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2928 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 12 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 13864, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 42500, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1398, + "stored_fields_memory_in_bytes": 1880, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25358, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 426127 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 4, + "query_total": 18 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 48986 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 720, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16380, + "norms_memory_in_bytes": 1536, + "points_memory_in_bytes": 20, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12856, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48986 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 184929 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2940, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 77336, + "norms_memory_in_bytes": 6528, + "points_memory_in_bytes": 74, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 66234, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 184929 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.453Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421576704 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 365 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1031 + }, + "index_total": { + "count": 554 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 186 + }, + "query_total": { + "count": 123 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 18408 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 240 + } + }, + "index_writer": { + "memory": { + "bytes": 152151 + } + }, + "memory": { + "bytes": 160670 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 1584 + } + }, + "stored_fields": { + "memory": { + "bytes": 8120 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 124110 + } + }, + "version_map": { + "memory": { + "bytes": 5180 + } + } + }, + "store": { + "size": { + "bytes": 731366 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 21, + "ms": 338 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129383560, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.90673828125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDq510BY87G63mlrngD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:43.164Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421699584 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4523 + } + }, + "search": { + "query_time": { + "ms": 64 + }, + "query_total": { + "count": 31 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188853232, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.90673828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dq510BY87G63mlhnj7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:33.164Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200429842432 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3790 + } + }, + "search": { + "query_time": { + "ms": 62 + }, + "query_total": { + "count": 25 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 187093152, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.5634765625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.443Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 686, + "time": { + "ms": 1138 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 686 + } + }, + "search": { + "query": { + "count": 131, + "time": { + "ms": 187 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DGJQC5osAkvB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0HeZC9LYICDb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yW0yrAZl29uL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5mtdLJ6FAaFK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVwrO8wmJMtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oSntbyQ5cXxe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 88 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 152151, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 5180 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 6 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 470 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 61191 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 470 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 12 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 340, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20560, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 195, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 18465, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 61191 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 389 + }, + "indexing": { + "index_time_in_millis": 764, + "index_total": 599, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3062944 + }, + "refresh": { + "total_time_in_millis": 4197 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 551419 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 764, + "index_total": 599, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3062944 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 4197 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 12 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 16484, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 52862, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1816, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 32370, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 551419 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 4, + "query_total": 18 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 48986 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 720, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16380, + "norms_memory_in_bytes": 1536, + "points_memory_in_bytes": 20, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12856, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48986 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 184929 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2940, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 77336, + "norms_memory_in_bytes": 6528, + "points_memory_in_bytes": 74, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 66234, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 184929 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.460Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420896768 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 440 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1138 + }, + "index_total": { + "count": 686 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 188 + }, + "query_total": { + "count": 135 + } + }, + "segments": { + "count": 30, + "doc_values": { + "memory": { + "bytes": 21232 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 240 + } + }, + "index_writer": { + "memory": { + "bytes": 152151 + } + }, + "memory": { + "bytes": 183368 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 2119 + } + }, + "stored_fields": { + "memory": { + "bytes": 9368 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 142201 + } + }, + "version_map": { + "memory": { + "bytes": 5180 + } + } + }, + "store": { + "size": { + "bytes": 902090 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 24, + "ms": 371 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 155805728, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.66455078125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDr510BY87G63mlIHmZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.442Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 23, + "time": { + "ms": 148 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 65 + } + }, + "search": { + "query": { + "count": 123, + "time": { + "ms": 179 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDr510BY87G63mlIHmZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.448Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PNH2C48YMQq2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.448Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fOOn9adArsxK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.448Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IngfSnVRGI7P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.448Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HqLA093vx78X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.448Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ" + }, + "stats": { + "state": { + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ" + }, + "stats": { + "state": { + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ" + }, + "stats": { + "state": { + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ" + }, + "stats": { + "state": { + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "VH1XEBxWSeOC5Wp1nJWOOQ" + }, + "stats": { + "state": { + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dr510BY87G63mlIHmZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.469Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 152, + "query_total": 80 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDr510BY87G63mlIHmZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.469Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 27, + "query_total": 43 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2690, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1928, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDr510BY87G63mlIHmZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.494Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420986880 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 148 + }, + "index_total": { + "count": 23 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 59 + }, + "query_total": { + "count": 55 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 167920832, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.66455078125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dr510BY87G63mlI3k0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:13.168Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420986880 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 70 + }, + "query_total": { + "count": 48 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 197185448, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.66455078125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDr510BY87G63mlR3mM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.441Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 24, + "time": { + "ms": 150 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 67 + } + }, + "search": { + "query": { + "count": 135, + "time": { + "ms": 181 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dr510BY87G63mlR3mM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CdJECKlZ7Iwb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vz53R59piqcr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Kzv2l14NA6BU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TglPrG7qhkWT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDr510BY87G63mlR3mM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.449Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 152, + "query_total": 84 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDr510BY87G63mlR3mM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.449Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 8763 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 51 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dr510BY87G63mlR3mM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420839424 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 150 + }, + "index_total": { + "count": 24 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6718 + } + }, + "search": { + "query_time": { + "ms": 60 + }, + "query_total": { + "count": 61 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188195784, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.83447265625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDr510BY87G63mlPHn8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:19.765Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421007360 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 50 + }, + "query_total": { + "count": 24 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 199582928, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2109375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDr510BY87G63mlPXku", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:19.789Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 69, + "query_total": 64 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDr510BY87G63mlPXku", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:19.790Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 64, + "time": { + "ms": 69 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dr510BY87G63mlPXku", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:19.790Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDr510BY87G63mlPXku", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:19.791Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421007360 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 69 + }, + "query_total": { + "count": 64 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 140923800, + "pct": 22 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2109375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDq510BY87G63ml7njR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:59.756Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421523456 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 50 + }, + "query_total": { + "count": 22 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 195672952, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.97607421875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dq510BY87G63ml73gA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:59.785Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 68, + "query_total": 56 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDq510BY87G63ml73gA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:59.787Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 56, + "time": { + "ms": 68 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDq510BY87G63ml73gA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:59.788Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDq510BY87G63ml73gA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:59.788Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421552128 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 68 + }, + "query_total": { + "count": 56 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 138394200, + "pct": 22 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.97607421875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dr510BY87G63mlFXjw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:09.761Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421175296 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 50 + }, + "query_total": { + "count": 23 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 197896992, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2001953125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDr510BY87G63mlFnkQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:09.789Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 68, + "query_total": 60 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDr510BY87G63mlFnkQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:09.790Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 60, + "time": { + "ms": 68 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDr510BY87G63mlFnkQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:09.790Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dr510BY87G63mlFnkQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:09.790Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421171200 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 68 + }, + "query_total": { + "count": 60 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 139763056, + "pct": 22 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2001953125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDq510BY87G63ml-Xib", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 23, + "time": { + "ms": 148 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 65 + } + }, + "search": { + "query": { + "count": 109, + "time": { + "ms": 173 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDq510BY87G63ml-Xib", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.447Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ut42o6Om9kNf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.447Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8gnyd8ERtwTL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.447Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vxsXwHuyzoC7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.447Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wb9xVIYSQPdV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.447Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDq510BY87G63ml-Xic", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.454Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 151, + "query_total": 76 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dq510BY87G63ml-Xic", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.454Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3659 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 22, + "query_total": 33 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2690, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1928, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 7318 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDq510BY87G63ml-Xic", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421474304 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 148 + }, + "index_total": { + "count": 23 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 57 + }, + "query_total": { + "count": 49 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 152962928, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2177734375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.440Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 642, + "time": { + "ms": 1102 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 642 + } + }, + "search": { + "query": { + "count": 127, + "time": { + "ms": 187 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GCAR3QIqvbOm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WcNxFOmCTVIe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4zAKk4Ga5an3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xNUFew6ussvU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Pg29SMZU0WTy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GIYeyEZmq5Vr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.441Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 84 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 152151, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 5180 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 364 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 61191 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 364 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 12 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 272, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16448, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 156, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14772, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 61191 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 365 + }, + "indexing": { + "index_time_in_millis": 730, + "index_total": 556, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3062944 + }, + "refresh": { + "total_time_in_millis": 3844 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 374334 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 730, + "index_total": 556, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3062944 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3844 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 12 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 14264, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 34145, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1018, + "stored_fields_memory_in_bytes": 1256, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17607, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 374334 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 4, + "query_total": 18 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 48986 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 720, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16380, + "norms_memory_in_bytes": 1536, + "points_memory_in_bytes": 20, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12856, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48986 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 184929 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2940, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 77336, + "norms_memory_in_bytes": 6528, + "points_memory_in_bytes": 74, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 66234, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 184929 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421355520 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 415 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1102 + }, + "index_total": { + "count": 642 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 187 + }, + "query_total": { + "count": 131 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 18944 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 240 + } + }, + "index_writer": { + "memory": { + "bytes": 152151 + } + }, + "memory": { + "bytes": 160539 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 1282 + } + }, + "stored_fields": { + "memory": { + "bytes": 8120 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 123745 + } + }, + "version_map": { + "memory": { + "bytes": 5180 + } + } + }, + "store": { + "size": { + "bytes": 709849 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 23, + "ms": 352 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 169857296, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2177734375 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDq510BY87G63ml_Hgm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:03.167Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421474304 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 67 + }, + "query_total": { + "count": 42 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15197 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11376 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37233 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194817288, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.2177734375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.446Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 788, + "time": { + "ms": 1247 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 788 + } + }, + "search": { + "query": { + "count": 153, + "time": { + "ms": 201 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1RStsZT572K1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k3zrydGtv0Gl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I8LKByXPHe1Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BCCmYlPeB8eB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1ifpX4ujJquW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xSWeoz06Yp5P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 78, + "query_total": 96 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 12, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 12, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 154766, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 6323 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 91508 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "request_cache": { + "memory_size_in_bytes": 1117 + }, + "search": { + "query_time_in_millis": 73, + "query_total": 18 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24672, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 234, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 91508 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 442 + }, + "indexing": { + "index_time_in_millis": 848, + "index_total": 685, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3790606 + }, + "refresh": { + "total_time_in_millis": 5008 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 297299 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 848, + "index_total": 685, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3790606 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5008 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 31, + "query_total": 15 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 17968, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 46637, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1410, + "stored_fields_memory_in_bytes": 1896, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25363, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 297299 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 5, + "query_total": 23 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 145, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1938 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 48986 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 145, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1938 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 788, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20362, + "norms_memory_in_bytes": 1920, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 16070, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48986 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 27 + }, + "indexing": { + "index_time_in_millis": 88, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 758 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 184929 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 88, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 758 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 3008, + "fixed_bit_set_memory_in_bytes": 288, + "index_writer_memory_in_bytes": 2189772, + "memory_in_bytes": 89560, + "norms_memory_in_bytes": 7680, + "points_memory_in_bytes": 86, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 76914, + "version_map_memory_in_bytes": 906 + }, + "store": { + "size_in_bytes": 184929 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.493Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420724736 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 495 + }, + "fielddata": { + "memory": { + "bytes": 800 + } + }, + "indexing": { + "index_time": { + "ms": 1247 + }, + "index_total": { + "count": 788 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3452 + } + }, + "search": { + "query_time": { + "ms": 202 + }, + "query_total": { + "count": 157 + } + }, + "segments": { + "count": 31, + "doc_values": { + "memory": { + "bytes": 22812 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 288 + } + }, + "index_writer": { + "memory": { + "bytes": 2344538 + } + }, + "memory": { + "bytes": 193439 + }, + "norms": { + "memory": { + "bytes": 9600 + } + }, + "points": { + "memory": { + "bytes": 1764 + } + }, + "stored_fields": { + "memory": { + "bytes": 9696 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 149567 + } + }, + "version_map": { + "memory": { + "bytes": 7229 + } + } + }, + "store": { + "size": { + "bytes": 914133 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 26, + "ms": 405 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 251766064, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.97802734375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDr510BY87G63mli3kn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:39.773Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420134912 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 51 + }, + "query_total": { + "count": 27 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 202014104, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.8193359375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDr510BY87G63mli3lV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:39.792Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 71, + "query_total": 72 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDr510BY87G63mli3lV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:39.793Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 72, + "time": { + "ms": 71 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dr510BY87G63mli3lV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:39.794Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDr510BY87G63mli3lV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:39.794Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420130816 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 71 + }, + "query_total": { + "count": 72 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 143381216, + "pct": 22 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.8193359375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dr510BY87G63mllXnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i5hh2YR1gQdR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rqpcgTYtIUEW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eS8qraC5HBFp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VAq1d9eadk4I", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CghF2S8GTK2jQit6TnwEhA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "CghF2S8GTK2jQit6TnwEhA" + }, + "stats": { + "state": { + "state_uuid": "CghF2S8GTK2jQit6TnwEhA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CghF2S8GTK2jQit6TnwEhA:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "CghF2S8GTK2jQit6TnwEhA" + }, + "stats": { + "state": { + "state_uuid": "CghF2S8GTK2jQit6TnwEhA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CghF2S8GTK2jQit6TnwEhA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "CghF2S8GTK2jQit6TnwEhA" + }, + "stats": { + "state": { + "state_uuid": "CghF2S8GTK2jQit6TnwEhA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CghF2S8GTK2jQit6TnwEhA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "CghF2S8GTK2jQit6TnwEhA" + }, + "stats": { + "state": { + "state_uuid": "CghF2S8GTK2jQit6TnwEhA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CghF2S8GTK2jQit6TnwEhA:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.456Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "CghF2S8GTK2jQit6TnwEhA" + }, + "stats": { + "state": { + "state_uuid": "CghF2S8GTK2jQit6TnwEhA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDr510BY87G63mllXnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 155, + "query_total": 92 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDr510BY87G63mllXnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 8763 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 51 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dr510BY87G63mllXnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.492Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419958784 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 150 + }, + "index_total": { + "count": 24 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6718 + } + }, + "search": { + "query_time": { + "ms": 61 + }, + "query_total": { + "count": 64 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 198640136, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 12.91552734375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDr510BY87G63mlmHlv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:43.175Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419958784 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 93 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6715 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 55 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 207473768, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 12.91552734375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDr510BY87G63mlZHkP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:29.769Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421154816 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 51 + }, + "query_total": { + "count": 26 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 200749016, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.3671875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDr510BY87G63mlZHkz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:29.792Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 70, + "query_total": 68 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDr510BY87G63mlZHkz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:29.792Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 68, + "time": { + "ms": 70 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dr510BY87G63mlZHkz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:29.793Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDr510BY87G63mlZHkz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:29.793Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421154816 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 70 + }, + "query_total": { + "count": 68 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 141873024, + "pct": 22 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.3671875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDr510BY87G63mlbnm2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 24, + "time": { + "ms": 150 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 67 + } + }, + "search": { + "query": { + "count": 139, + "time": { + "ms": 183 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dr510BY87G63mlbnm2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7tpLektEeNE6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UThSQoZo6yNS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pcEDp3MtwfiW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B5OiypDNdKNO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.446Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDr510BY87G63mlbnm2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 154, + "query_total": 88 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDr510BY87G63mlbnm2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 8763 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 51 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dr510BY87G63mlbnm2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.476Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421068800 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 150 + }, + "index_total": { + "count": 24 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6718 + } + }, + "search": { + "query_time": { + "ms": 61 + }, + "query_total": { + "count": 63 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194589360, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.97802734375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.444Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 730, + "time": { + "ms": 1183 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 730 + } + }, + "search": { + "query": { + "count": 135, + "time": { + "ms": 188 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m9a5K3DlRFLx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZYd44llKoDZk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFQbDjrlsnFU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5zcXjpxiMWXB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4nJsZPLkP0IL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i4RhZmKS66A9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.445Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 78, + "query_total": 92 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 152151, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 5180 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 76347 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 12 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24672, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 234, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 76347 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 418 + }, + "indexing": { + "index_time_in_millis": 807, + "index_total": 642, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3790606 + }, + "refresh": { + "total_time_in_millis": 4713 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 551419 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 807, + "index_total": 642, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3790606 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 4713 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 12 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 15664, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24568, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 490, + "stored_fields_memory_in_bytes": 648, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7766, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 551419 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 7, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 242 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 4, + "query_total": 18 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 48986 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 133, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1765 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 720, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16380, + "norms_memory_in_bytes": 1536, + "points_memory_in_bytes": 20, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12856, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48986 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.448Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 184929 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 534 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2940, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 77336, + "norms_memory_in_bytes": 6528, + "points_memory_in_bytes": 74, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 66234, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 184929 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.472Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421265408 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 470 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1183 + }, + "index_total": { + "count": 730 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 188 + }, + "query_total": { + "count": 139 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 20480 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 240 + } + }, + "index_writer": { + "memory": { + "bytes": 152151 + } + }, + "memory": { + "bytes": 159186 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 832 + } + }, + "stored_fields": { + "memory": { + "bytes": 8136 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 121290 + } + }, + "version_map": { + "memory": { + "bytes": 5180 + } + } + }, + "store": { + "size": { + "bytes": 663131 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 25, + "ms": 398 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 209675152, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.83447265625 + } + } + }, + "process": { + "cpu": { + "pct": 6 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDr510BY87G63mlSnlI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:23.169Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420839424 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 93 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6715 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 52 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 204708024, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.83447265625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDr510BY87G63mlcXlc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:33.172Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200421068800 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 93 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6715 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 53 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 205412312, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.97802734375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDr510BY87G63mllXnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.450Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 24, + "time": { + "ms": 150 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 67 + } + }, + "search": { + "query": { + "count": 143, + "time": { + "ms": 184 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 951, + "time": { + "ms": 1400 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 951 + } + }, + "search": { + "query": { + "count": 179, + "time": { + "ms": 212 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UKO2yiGBt33f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YDHodUvrAUld", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iXjC6fYRYsbk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N5AWwwUcPSju", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j3ylambNUwbF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "72E5JPMPG8Jc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "USKEe36af7A8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 81, + "query_total": 108 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 157919, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 7658 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 91508 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 24 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24672, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 234, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 91508 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 551 + }, + "indexing": { + "index_time_in_millis": 967, + "index_total": 828, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4472974 + }, + "refresh": { + "total_time_in_millis": 6343 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 504678 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 967, + "index_total": 828, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4472974 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6343 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 34, + "query_total": 18 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 20876, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 66047, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2213, + "stored_fields_memory_in_bytes": 2832, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40126, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 504678 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 6, + "query_total": 28 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 12 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 375 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 63572 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 375 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 204, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 15729, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 146, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14443, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 63572 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 39964 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 39964 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.458Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 38 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 308764 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 4204, + "fixed_bit_set_memory_in_bytes": 432, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 131764, + "norms_memory_in_bytes": 11392, + "points_memory_in_bytes": 128, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 113232, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308764 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419168256 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 627 + }, + "fielddata": { + "memory": { + "bytes": 800 + } + }, + "indexing": { + "index_time": { + "ms": 1400 + }, + "index_total": { + "count": 951 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 212 + }, + "query_total": { + "count": 183 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 27052 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 768 + } + }, + "index_writer": { + "memory": { + "bytes": 157919 + } + }, + "memory": { + "bytes": 266800 + }, + "norms": { + "memory": { + "bytes": 12928 + } + }, + "points": { + "memory": { + "bytes": 2751 + } + }, + "stored_fields": { + "memory": { + "bytes": 12192 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 211877 + } + }, + "version_map": { + "memory": { + "bytes": 7658 + } + } + }, + "store": { + "size": { + "bytes": 1255717 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 31, + "ms": 468 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 145161736, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 17.3173828125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 847, + "time": { + "ms": 1317 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 847 + } + }, + "search": { + "query": { + "count": 171, + "time": { + "ms": 210 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AKB4JJwPgYcZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6bFjgHEkloAl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AgDTHBMaXiKa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gBj5YbrI0bai", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HaY9HsMvKVVj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a98XHIcNHvHs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.monitoring-alerts-6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:_na:.monitoring-alerts-6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.monitoring-es-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:_na:.monitoring-es-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.watcher-history-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:_na:.watcher-history-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.monitoring-kibana-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:_na:.monitoring-kibana-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.triggered_watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:_na:.triggered_watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:7r5cGj40Qcyia0J1xF0lnA:.watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YxT-fQsrQYWh3wCXbUSZxA:_na:.watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.447Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "YxT-fQsrQYWh3wCXbUSZxA" + }, + "stats": { + "state": { + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 79, + "query_total": 100 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 157919, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 7658 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 91508 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 24 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24672, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 234, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 91508 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 466 + }, + "indexing": { + "index_time_in_millis": 892, + "index_total": 728, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4472974 + }, + "refresh": { + "total_time_in_millis": 5423 + }, + "segments": { + "count": 10 + }, + "store": { + "size_in_bytes": 498992 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 892, + "index_total": 728, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4472974 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5423 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 34, + "query_total": 18 + }, + "segments": { + "count": 10, + "doc_values_memory_in_bytes": 20440, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 68006, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2211, + "stored_fields_memory_in_bytes": 3144, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 42211, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 498992 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 6, + "query_total": 28 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 72901 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 72901 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 38 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 210323 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 4204, + "fixed_bit_set_memory_in_bytes": 432, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 131764, + "norms_memory_in_bytes": 11392, + "points_memory_in_bytes": 128, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 113232, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 210323 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419524608 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 530 + }, + "fielddata": { + "memory": { + "bytes": 800 + } + }, + "indexing": { + "index_time": { + "ms": 1317 + }, + "index_total": { + "count": 847 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 211 + }, + "query_total": { + "count": 175 + } + }, + "segments": { + "count": 37, + "doc_values": { + "memory": { + "bytes": 26412 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 432 + } + }, + "index_writer": { + "memory": { + "bytes": 157919 + } + }, + "memory": { + "bytes": 253030 + }, + "norms": { + "memory": { + "bytes": 12928 + } + }, + "points": { + "memory": { + "bytes": 2603 + } + }, + "stored_fields": { + "memory": { + "bytes": 11568 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 199519 + } + }, + "version_map": { + "memory": { + "bytes": 7658 + } + } + }, + "store": { + "size": { + "bytes": 914133 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 28, + "ms": 433 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253205504, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 12.91552734375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.459Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 30, + "time": { + "ms": 331 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 77 + } + }, + "search": { + "query": { + "count": 153, + "time": { + "ms": 188 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1q7WYzGOm9N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JQKW6n35MAkZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l5RdKC8j6Rgq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9EoPGgtkygQD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gpapPurM7341", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yYOdUxZ58l9B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YGKmYZeKP6BU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EnYF2QUBlrzi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JfcjaaPlI1mh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UPXzdB2nQOeD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zBTkctiaRlEj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mrMYhQvXMWTP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FDvROjg86Hlo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lYZPzEti4J3H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gELeu-FhR4ufmR_ribyDSw:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.465Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "gELeu-FhR4ufmR_ribyDSw" + }, + "stats": { + "state": { + "state_uuid": "gELeu-FhR4ufmR_ribyDSw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.470Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 157, + "query_total": 100 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.470Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 6 + }, + "indexing": { + "index_time_in_millis": 181, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1058 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 591 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 396, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2304 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 9968, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 297024, + "norms_memory_in_bytes": 31872, + "points_memory_in_bytes": 664, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 252024, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67809 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.470Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 31, + "query_total": 53 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419307520 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 13 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 278 + }, + "index_total": { + "count": 28 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3797 + } + }, + "search": { + "query_time": { + "ms": 62 + }, + "query_total": { + "count": 67 + } + }, + "segments": { + "count": 12, + "doc_values": { + "memory": { + "bytes": 4216 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 117023 + }, + "norms": { + "memory": { + "bytes": 11008 + } + }, + "points": { + "memory": { + "bytes": 227 + } + }, + "stored_fields": { + "memory": { + "bytes": 3744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 97828 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 104633 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 252 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 175539512, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 17.3173828125 + } + } + }, + "process": { + "cpu": { + "pct": 6 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDr510BY87G63mlvHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.455Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 24, + "time": { + "ms": 150 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 67 + } + }, + "search": { + "query": { + "count": 147, + "time": { + "ms": 184 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDr510BY87G63mlvHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.457Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ur4b3OPTiKLN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.457Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BUIAj1IRzW8S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.457Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9TuGX7rbPrtJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.457Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlJEZj7ejHsf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.457Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KPm1PMrCQjiM6FXh0s95Tg:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "KPm1PMrCQjiM6FXh0s95Tg" + }, + "stats": { + "state": { + "state_uuid": "KPm1PMrCQjiM6FXh0s95Tg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KPm1PMrCQjiM6FXh0s95Tg:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "KPm1PMrCQjiM6FXh0s95Tg" + }, + "stats": { + "state": { + "state_uuid": "KPm1PMrCQjiM6FXh0s95Tg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KPm1PMrCQjiM6FXh0s95Tg:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "KPm1PMrCQjiM6FXh0s95Tg" + }, + "stats": { + "state": { + "state_uuid": "KPm1PMrCQjiM6FXh0s95Tg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KPm1PMrCQjiM6FXh0s95Tg:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "KPm1PMrCQjiM6FXh0s95Tg" + }, + "stats": { + "state": { + "state_uuid": "KPm1PMrCQjiM6FXh0s95Tg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KPm1PMrCQjiM6FXh0s95Tg:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "KPm1PMrCQjiM6FXh0s95Tg" + }, + "stats": { + "state": { + "state_uuid": "KPm1PMrCQjiM6FXh0s95Tg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dr510BY87G63mlvHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.463Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 155, + "query_total": 96 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDr510BY87G63mlvHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.463Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 51 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDr510BY87G63mlvHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.479Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420220928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 150 + }, + "index_total": { + "count": 24 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3797 + } + }, + "search": { + "query_time": { + "ms": 61 + }, + "query_total": { + "count": 65 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 210 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 205041368, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 15.86181640625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDr510BY87G63ml2XlL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:59.781Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419590144 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 10 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 52 + }, + "query_total": { + "count": 30 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 2196 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 60763 + }, + "norms": { + "memory": { + "bytes": 5440 + } + }, + "points": { + "memory": { + "bytes": 122 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 50197 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33968 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 7, + "ms": 213 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194818056, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 17.95458984375 + } + } + }, + "process": { + "cpu": { + "pct": 6 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDr510BY87G63ml2Xlh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:59.799Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 73, + "query_total": 80 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDr510BY87G63ml2Xlh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:59.799Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 80, + "time": { + "ms": 73 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dr510BY87G63ml2Xlh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:59.800Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDr510BY87G63ml2Xlh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:59.800Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419586048 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 73 + }, + "query_total": { + "count": 80 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 145399504, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 17.95458984375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDr510BY87G63mlsnk7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.778Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420188160 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 90 + }, + "index_total": { + "count": 21 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 51 + }, + "query_total": { + "count": 28 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33574 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 176 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 204089856, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 16.28515625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDr510BY87G63mlsnlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.797Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 72, + "query_total": 76 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dr510BY87G63mlsnlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.798Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 76, + "time": { + "ms": 72 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDr510BY87G63mlsnlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.801Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDr510BY87G63mlsnlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.802Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420188160 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 76 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 144638248, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 16.28515625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.465Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 893, + "time": { + "ms": 1365 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 893 + } + }, + "search": { + "query": { + "count": 175, + "time": { + "ms": 211 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n3JaAO4UvOwk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kypxD4kCHmyg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aWXIYmbgoyxF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "luMfusE0kWbP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Pu8Mk7ERiriW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b4mCpjaIDWel", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Oz7XwGlMqLTs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.467Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 80, + "query_total": 104 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 157919, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 7658 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 91508 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 590 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 24 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24672, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 234, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 91508 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 495 + }, + "indexing": { + "index_time_in_millis": 934, + "index_total": 771, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4472974 + }, + "refresh": { + "total_time_in_millis": 6138 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 504678 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 934, + "index_total": 771, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4472974 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6138 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 34, + "query_total": 18 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 16972, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 42377, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1292, + "stored_fields_memory_in_bytes": 1584, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22529, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 504678 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 6, + "query_total": 28 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dr510BY87G63mlxHnI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 7 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 362 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 38324 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 362 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 192, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 9777, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 76, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 8941, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 38324 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDr510BY87G63mlxHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 39964 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 39964 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDr510BY87G63mlxHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 38 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 308764 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 4204, + "fixed_bit_set_memory_in_bytes": 432, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 131764, + "norms_memory_in_bytes": 11392, + "points_memory_in_bytes": 128, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 113232, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308764 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dr510BY87G63mlxHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420384768 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 566 + }, + "fielddata": { + "memory": { + "bytes": 800 + } + }, + "indexing": { + "index_time": { + "ms": 1365 + }, + "index_total": { + "count": 893 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 212 + }, + "query_total": { + "count": 179 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 23080 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 624 + } + }, + "index_writer": { + "memory": { + "bytes": 157919 + } + }, + "memory": { + "bytes": 237178 + }, + "norms": { + "memory": { + "bytes": 12928 + } + }, + "points": { + "memory": { + "bytes": 1760 + } + }, + "stored_fields": { + "memory": { + "bytes": 10632 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 188778 + } + }, + "version_map": { + "memory": { + "bytes": 7658 + } + } + }, + "store": { + "size": { + "bytes": 1023647 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 30, + "ms": 461 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 120874888, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 15.86181640625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDr510BY87G63ml5nmU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:03.182Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419307520 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 14 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 342 + }, + "index_total": { + "count": 27 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3794 + } + }, + "search": { + "query_time": { + "ms": 74 + }, + "query_total": { + "count": 60 + } + }, + "segments": { + "count": 12, + "doc_values": { + "memory": { + "bytes": 4576 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 129552 + }, + "norms": { + "memory": { + "bytes": 12544 + } + }, + "points": { + "memory": { + "bytes": 267 + } + }, + "stored_fields": { + "memory": { + "bytes": 3744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 108421 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 38006 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 269 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 203297536, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 17.3173828125 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dr510BY87G63mlv3mE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:53.178Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200420220928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 9 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 93 + }, + "index_total": { + "count": 22 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6715 + } + }, + "search": { + "query_time": { + "ms": 73 + }, + "query_total": { + "count": 56 + } + }, + "segments": { + "count": 9, + "doc_values": { + "memory": { + "bytes": 748 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 15422 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 9 + } + }, + "stored_fields": { + "memory": { + "bytes": 2808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 11601 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 37612 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 170 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 209203024, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 15.86181640625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.461Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1070, + "time": { + "ms": 1504 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1070 + } + }, + "search": { + "query": { + "count": 201, + "time": { + "ms": 322 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jr4NKhjNXoXP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r4OKptBMD7E0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kp8ogoKPzK8F", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6AoW0eq6tHiy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JBZRIJUo9CKx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CfwPTyUFbP0u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oXnhe1AeuYj4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.462Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 82, + "query_total": 116 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Ds510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 157919, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 7658 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 729 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 107091 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 729 + }, + "request_cache": { + "memory_size_in_bytes": 10358 + }, + "search": { + "query_time_in_millis": 111, + "query_total": 30 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 544, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 32896, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 312, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29544, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107091 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 618 + }, + "indexing": { + "index_time_in_millis": 1060, + "index_total": 942, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 5248981 + }, + "refresh": { + "total_time_in_millis": 6723 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 491686 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1060, + "index_total": 942, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 5248981 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6723 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 55, + "query_total": 20 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 22256, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 61935, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1951, + "stored_fields_memory_in_bytes": 2520, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 35208, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 491686 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 6, + "query_total": 28 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Ds510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 22 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 443 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 88818 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 443 + }, + "request_cache": { + "memory_size_in_bytes": 7057 + }, + "search": { + "query_time_in_millis": 54, + "query_total": 6 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 340, + "fixed_bit_set_memory_in_bytes": 624, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27633, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 286, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25447, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 88818 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 39964 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 39964 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 38 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 308764 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 4204, + "fixed_bit_set_memory_in_bytes": 432, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 131764, + "norms_memory_in_bytes": 11392, + "points_memory_in_bytes": 128, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 113232, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308764 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Ds510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417976320 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 707 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1504 + }, + "index_total": { + "count": 1070 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 19750 + } + }, + "search": { + "query_time": { + "ms": 323 + }, + "query_total": { + "count": 205 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 28704 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1056 + } + }, + "index_writer": { + "memory": { + "bytes": 157919 + } + }, + "memory": { + "bytes": 282816 + }, + "norms": { + "memory": { + "bytes": 12928 + } + }, + "points": { + "memory": { + "bytes": 2707 + } + }, + "stored_fields": { + "memory": { + "bytes": 13128 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 225349 + } + }, + "version_map": { + "memory": { + "bytes": 7658 + } + } + }, + "store": { + "size": { + "bytes": 1101977 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 34, + "ms": 499 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 108941040, + "pct": 17 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.845703125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDs510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.462Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 33, + "time": { + "ms": 351 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 83 + } + }, + "search": { + "query": { + "count": 180, + "time": { + "ms": 198 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDs510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LnmBuWQlCdg4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VgXIdsdpr3uN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZcpDgMPiEe6N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oUyJi5CuGcwK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XizcndLL8lDF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SZXYWFZnrL4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1g91s4Bhpns", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XSaatIKl6Hvc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vQtNKs6zHykp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WAD4Lchn8VPz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UK4xV4ETL6g1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pMfBydVjzABL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QJ7dI7VxHFtb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wta5QmVAdFOQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDs510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.474Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 159, + "query_total": 108 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Ds510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.474Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 9 + }, + "indexing": { + "index_time_in_millis": 201, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1202 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 344575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 439, + "index_total": 16, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 10, + "doc_values_memory_in_bytes": 11032, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 343836, + "norms_memory_in_bytes": 36736, + "points_memory_in_bytes": 712, + "stored_fields_memory_in_bytes": 3120, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 292236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 689150 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDs510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.474Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 39, + "query_total": 72 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDs510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.501Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418115584 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 13 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 278 + }, + "index_total": { + "count": 28 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 66 + }, + "query_total": { + "count": 78 + } + }, + "segments": { + "count": 12, + "doc_values": { + "memory": { + "bytes": 4216 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 117023 + }, + "norms": { + "memory": { + "bytes": 11008 + } + }, + "points": { + "memory": { + "bytes": 227 + } + }, + "stored_fields": { + "memory": { + "bytes": 3744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 97828 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 237897 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 252 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 206407856, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.845703125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDs510BY87G63mlTnmG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:29.793Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417751040 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 14 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 132 + }, + "index_total": { + "count": 25 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 34 + } + }, + "segments": { + "count": 11, + "doc_values": { + "memory": { + "bytes": 3884 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 118551 + }, + "norms": { + "memory": { + "bytes": 11520 + } + }, + "points": { + "memory": { + "bytes": 220 + } + }, + "stored_fields": { + "memory": { + "bytes": 3432 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 99495 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 244885 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 219 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 175411800, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.85791015625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDs510BY87G63mlTnmn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:29.819Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 92 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Ds510BY87G63mlTnmn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:29.819Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 92, + "time": { + "ms": 77 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDs510BY87G63mlTnmn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:29.820Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDs510BY87G63mlTnmn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:29.820Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417746944 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 77 + }, + "query_total": { + "count": 92 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 148214816, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.85791015625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDs510BY87G63mlAHnT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:09.786Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419323904 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 14 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 132 + }, + "index_total": { + "count": 25 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 52 + }, + "query_total": { + "count": 31 + } + }, + "segments": { + "count": 11, + "doc_values": { + "memory": { + "bytes": 3884 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 118551 + }, + "norms": { + "memory": { + "bytes": 11520 + } + }, + "points": { + "memory": { + "bytes": 220 + } + }, + "stored_fields": { + "memory": { + "bytes": 3432 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 99495 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 244885 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 219 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 172108496, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 16.41064453125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDs510BY87G63mlAHn2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:09.842Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 74, + "query_total": 84 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Ds510BY87G63mlAHn2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:09.844Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 84, + "time": { + "ms": 74 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDs510BY87G63mlAHn2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:09.846Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDs510BY87G63mlAHn2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:09.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419323904 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 74 + }, + "query_total": { + "count": 84 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 146426776, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 16.41064453125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDs510BY87G63mlJ3lx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:19.788Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418230272 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 14 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 132 + }, + "index_total": { + "count": 25 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 33 + } + }, + "segments": { + "count": 11, + "doc_values": { + "memory": { + "bytes": 3884 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 118551 + }, + "norms": { + "memory": { + "bytes": 11520 + } + }, + "points": { + "memory": { + "bytes": 220 + } + }, + "stored_fields": { + "memory": { + "bytes": 3432 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 99495 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 244885 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 219 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 173645848, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 14.876953125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDs510BY87G63mlJ3mV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:19.813Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 76, + "query_total": 88 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Ds510BY87G63mlJ3mV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:19.813Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 88, + "time": { + "ms": 76 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDs510BY87G63mlJ3mV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:19.814Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDs510BY87G63mlJ3mV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:19.814Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418226176 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 76 + }, + "query_total": { + "count": 88 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 147437584, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 14.876953125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1011, + "time": { + "ms": 1461 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1011 + } + }, + "search": { + "query": { + "count": 183, + "time": { + "ms": 212 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0NZS8J7XJDMY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nsjcS7GLSfok", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VOZmrG8umAh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uZikQXrsgbiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XRPDM0xeK4yE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yElh1boxQH0s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qENsMsXZdLYr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.475Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 81, + "query_total": 112 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Ds510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 157919, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 7658 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 9 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 717 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 107091 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 717 + }, + "request_cache": { + "memory_size_in_bytes": 2234 + }, + "search": { + "query_time_in_millis": 77, + "query_total": 24 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 476, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28784, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 273, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25851, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 107091 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 592 + }, + "indexing": { + "index_time_in_millis": 1022, + "index_total": 885, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 5248981 + }, + "refresh": { + "total_time_in_millis": 6645 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 491686 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1022, + "index_total": 885, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 5248981 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6645 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 34, + "query_total": 18 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 18384, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38298, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1031, + "stored_fields_memory_in_bytes": 1272, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17611, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 491686 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 6, + "query_total": 28 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Ds510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 17 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 431 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 88818 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 431 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 272, + "fixed_bit_set_memory_in_bytes": 480, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 21681, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 216, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 19945, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 88818 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 39964 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 154, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2328 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 39964 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 38 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 308764 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 4204, + "fixed_bit_set_memory_in_bytes": 432, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 131764, + "norms_memory_in_bytes": 11392, + "points_memory_in_bytes": 128, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 113232, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308764 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Ds510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.489Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418807808 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 675 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1461 + }, + "index_total": { + "count": 1011 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 4569 + } + }, + "search": { + "query_time": { + "ms": 213 + }, + "query_total": { + "count": 187 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 24696 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 912 + } + }, + "index_writer": { + "memory": { + "bytes": 157919 + } + }, + "memory": { + "bytes": 249115 + }, + "norms": { + "memory": { + "bytes": 12928 + } + }, + "points": { + "memory": { + "bytes": 1678 + } + }, + "stored_fields": { + "memory": { + "bytes": 11256 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 198557 + } + }, + "version_map": { + "memory": { + "bytes": 7658 + } + } + }, + "store": { + "size": { + "bytes": 1076732 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 32, + "ms": 484 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231047312, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 15.73681640625 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Ds510BY87G63mlDXmu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:13.187Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419037184 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 17 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 362 + }, + "index_total": { + "count": 30 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 77 + }, + "query_total": { + "count": 65 + } + }, + "segments": { + "count": 13, + "doc_values": { + "memory": { + "bytes": 5108 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 152958 + }, + "norms": { + "memory": { + "bytes": 14976 + } + }, + "points": { + "memory": { + "bytes": 291 + } + }, + "stored_fields": { + "memory": { + "bytes": 4056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 128527 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 315166 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 269 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 263524000, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 15.73681640625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Ds510BY87G63mlNHm5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:23.190Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418115584 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 17 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 362 + }, + "index_total": { + "count": 30 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 80 + }, + "query_total": { + "count": 72 + } + }, + "segments": { + "count": 13, + "doc_values": { + "memory": { + "bytes": 5108 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 152958 + }, + "norms": { + "memory": { + "bytes": 14976 + } + }, + "points": { + "memory": { + "bytes": 291 + } + }, + "stored_fields": { + "memory": { + "bytes": 4056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 128527 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 315166 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 8, + "ms": 269 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 265674136, + "pct": 42 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.845703125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDs510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.482Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 33, + "time": { + "ms": 351 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 83 + } + }, + "search": { + "query": { + "count": 165, + "time": { + "ms": 192 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDs510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b5UiY5lDcwpy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KuB4YhEPRYy6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2AlTC5GGtWw9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m6cPt1EkhwoH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YLcbXmdlwWWm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q0HFMD2N78pp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dd1TsslVshB5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qTnV1w4YDdWE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "enTBWxbipqzE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YXdeo8vLX2PP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sHVs8R6cGfvw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mpKVm94jj4P2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Evh1Z0kopaQ7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BUlDB9EjELc1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDs510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.506Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 157, + "query_total": 104 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Ds510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.506Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 9 + }, + "indexing": { + "index_time_in_millis": 201, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1202 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 344575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 439, + "index_total": 16, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 10, + "doc_values_memory_in_bytes": 11032, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 343836, + "norms_memory_in_bytes": 36736, + "points_memory_in_bytes": 712, + "stored_fields_memory_in_bytes": 3120, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 292236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 689150 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDs510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.506Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 35, + "query_total": 61 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDs510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.538Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200419037184 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 13 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 278 + }, + "index_total": { + "count": 28 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 64 + }, + "query_total": { + "count": 71 + } + }, + "segments": { + "count": 12, + "doc_values": { + "memory": { + "bytes": 4216 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 117023 + }, + "norms": { + "memory": { + "bytes": 11008 + } + }, + "points": { + "memory": { + "bytes": 227 + } + }, + "stored_fields": { + "memory": { + "bytes": 3744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 97828 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 237897 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 252 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 196031632, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 15.73681640625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDs510BY87G63mlh3np", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1219, + "time": { + "ms": 1625 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1219 + } + }, + "search": { + "query": { + "count": 323, + "time": { + "ms": 498 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDs510BY87G63mlh3np", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iuCaDEOerWCz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tEou7Ulo9R1K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uP3pb4pXuAGY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7kdfj2MfS86V", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RhH3jOEcT2W5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O4Wq56xPFrs8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6Aj3NX1ZYhSZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.469Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDs510BY87G63mlh3np", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 83, + "query_total": 124 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Ds510BY87G63mlh3np", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 164083, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 10008 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDs510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 12 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 826 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 20650 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 826 + }, + "request_cache": { + "memory_size_in_bytes": 32496 + }, + "search": { + "query_time_in_millis": 162, + "query_total": 69 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1508, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 5554, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 41, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 20650 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDs510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 670 + }, + "indexing": { + "index_time_in_millis": 1129, + "index_total": 1056, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6068052 + }, + "refresh": { + "total_time_in_millis": 7071 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 662838 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1129, + "index_total": 1056, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6068052 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7071 + }, + "request_cache": { + "memory_size_in_bytes": 13206 + }, + "search": { + "query_time_in_millis": 118, + "query_total": 46 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 25384, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 56311, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1567, + "stored_fields_memory_in_bytes": 1904, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 27456, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 662838 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDs510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "request_cache": { + "memory_size_in_bytes": 1932 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 48 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Ds510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 32 + }, + "indexing": { + "index_time_in_millis": 21, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 556 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 139310 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 848 + }, + "indexing": { + "index_time_in_millis": 21, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 556 + }, + "request_cache": { + "memory_size_in_bytes": 23437 + }, + "search": { + "query_time_in_millis": 103, + "query_total": 35 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 476, + "fixed_bit_set_memory_in_bytes": 912, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 39537, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 426, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 36451, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 139310 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDs510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 32490 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 32490 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDs510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.471Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 50 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 408053 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2136, + "fixed_bit_set_memory_in_bytes": 96, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35538, + "norms_memory_in_bytes": 2816, + "points_memory_in_bytes": 33, + "stored_fields_memory_in_bytes": 632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 408053 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Ds510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.479Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417341440 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 783 + }, + "fielddata": { + "memory": { + "bytes": 848 + } + }, + "indexing": { + "index_time": { + "ms": 1625 + }, + "index_total": { + "count": 1219 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 73406 + } + }, + "search": { + "query_time": { + "ms": 499 + }, + "query_total": { + "count": 327 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 30836 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1008 + } + }, + "index_writer": { + "memory": { + "bytes": 164083 + } + }, + "memory": { + "bytes": 161586 + }, + "norms": { + "memory": { + "bytes": 3968 + } + }, + "points": { + "memory": { + "bytes": 2093 + } + }, + "stored_fields": { + "memory": { + "bytes": 8464 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 116225 + } + }, + "version_map": { + "memory": { + "bytes": 10008 + } + } + }, + "store": { + "size": { + "bytes": 1329339 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 38, + "ms": 538 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 123427504, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 12.1640625 + } + } + }, + "process": { + "cpu": { + "pct": 8 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDs510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.467Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 39, + "time": { + "ms": 414 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 95 + } + }, + "search": { + "query": { + "count": 204, + "time": { + "ms": 203 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDs510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TUrP1IjEyept", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jGZviZr7EwJH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ABaVKEkm5FXc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I6ctIgYjvPLN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eLVaZHju0U4d", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6JPRYBfGyIng", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TYthaGzpQ4x2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Mrnd8xdHRjmK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FIvfHdedYc1j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XhV7mnDpMuTU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "grkfqMq4GgON", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fzabUivhAM8Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KHEBLeudm4W7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YKd7qT3Z6xZ5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9lDA75tTy2xdIg5MTCW1w:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "u9lDA75tTy2xdIg5MTCW1w" + }, + "stats": { + "state": { + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDs510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.510Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 160, + "query_total": 116 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Ds510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.510Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 15 + }, + "indexing": { + "index_time_in_millis": 264, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1631 + }, + "segments": { + "count": 11 + }, + "store": { + "size_in_bytes": 573219 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 597, + "index_total": 28, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3598 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 22, + "doc_values_memory_in_bytes": 22728, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 719842, + "norms_memory_in_bytes": 76544, + "points_memory_in_bytes": 1480, + "stored_fields_memory_in_bytes": 6864, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 612226, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1149707 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDs510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.510Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 43, + "query_total": 88 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDs510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.582Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417292288 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 18 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 347 + }, + "index_total": { + "count": 33 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 68 + }, + "query_total": { + "count": 88 + } + }, + "segments": { + "count": 17, + "doc_values": { + "memory": { + "bytes": 8908 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 270644 + }, + "norms": { + "memory": { + "bytes": 27264 + } + }, + "points": { + "memory": { + "bytes": 537 + } + }, + "stored_fields": { + "memory": { + "bytes": 5304 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 228631 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 532379 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 12, + "ms": 311 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 88790264, + "pct": 14 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 12.1640625 + } + } + }, + "process": { + "cpu": { + "pct": 6 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Ds510BY87G63mlgnne", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:43.194Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417292288 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 21 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 417 + }, + "index_total": { + "count": 34 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 82 + }, + "query_total": { + "count": 83 + } + }, + "segments": { + "count": 17, + "doc_values": { + "memory": { + "bytes": 8372 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 272446 + }, + "norms": { + "memory": { + "bytes": 27648 + } + }, + "points": { + "memory": { + "bytes": 533 + } + }, + "stored_fields": { + "memory": { + "bytes": 5304 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 230589 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 483653 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 10, + "ms": 281 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 139901096, + "pct": 22 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 12.1640625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDs510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 43, + "time": { + "ms": 443 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 103 + } + }, + "search": { + "query": { + "count": 218, + "time": { + "ms": 207 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDs510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cCZxyy0Rsm4C", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CEqYjzMezpJS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RwXtekA4g1wv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UcK8C0UPpjlZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MyBiHb6KKrMd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XdJ8AMy07miy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J8UXoFHbCqAv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lKgSqeM4dVnb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j6OsEZRN7KoL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lItnAtmjrLqz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c5oRAgp8Fl9O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QpVOKzBAbvPe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eRXHkCBjl8A6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UKTYDdbvIgX1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NyRIclRfR3uerEpxXOCzyw:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.480Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NyRIclRfR3uerEpxXOCzyw" + }, + "stats": { + "state": { + "state_uuid": "NyRIclRfR3uerEpxXOCzyw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDs510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.486Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 161, + "query_total": 120 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Ds510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.486Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 19 + }, + "indexing": { + "index_time_in_millis": 293, + "index_total": 19, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1894 + }, + "segments": { + "count": 15 + }, + "store": { + "size_in_bytes": 705290 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 648, + "index_total": 36, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 4044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 30, + "doc_values_memory_in_bytes": 24904, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 890872, + "norms_memory_in_bytes": 94208, + "points_memory_in_bytes": 1752, + "stored_fields_memory_in_bytes": 9360, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 760648, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1410580 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDs510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.486Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 46, + "query_total": 98 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDs510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.523Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416837632 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 21 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 365 + }, + "index_total": { + "count": 36 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 71 + }, + "query_total": { + "count": 96 + } + }, + "segments": { + "count": 20, + "doc_values": { + "memory": { + "bytes": 9928 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 338361 + }, + "norms": { + "memory": { + "bytes": 34304 + } + }, + "points": { + "memory": { + "bytes": 653 + } + }, + "stored_fields": { + "memory": { + "bytes": 6240 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 287236 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 660503 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 13, + "ms": 319 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 96132872, + "pct": 15 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.68115234375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDs510BY87G63mlnHqu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:49.799Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417038336 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 20 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 189 + }, + "index_total": { + "count": 31 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 54 + }, + "query_total": { + "count": 37 + } + }, + "segments": { + "count": 17, + "doc_values": { + "memory": { + "bytes": 8644 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 288651 + }, + "norms": { + "memory": { + "bytes": 29376 + } + }, + "points": { + "memory": { + "bytes": 552 + } + }, + "stored_fields": { + "memory": { + "bytes": 5304 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 244775 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 503346 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 10, + "ms": 274 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 261178176, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 11.35009765625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDs510BY87G63mlnHrU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:49.821Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 78, + "query_total": 100 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Ds510BY87G63mlnHrU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:49.821Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 100, + "time": { + "ms": 78 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDs510BY87G63mlnHrU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:49.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDs510BY87G63mlnHrU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:49.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417038336 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 78 + }, + "query_total": { + "count": 100 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 152086568, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 11.35009765625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDs510BY87G63mldXmh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:39.795Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417869824 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 16 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 155 + }, + "index_total": { + "count": 27 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 53 + }, + "query_total": { + "count": 35 + } + }, + "segments": { + "count": 13, + "doc_values": { + "memory": { + "bytes": 6196 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 184805 + }, + "norms": { + "memory": { + "bytes": 18560 + } + }, + "points": { + "memory": { + "bytes": 364 + } + }, + "stored_fields": { + "memory": { + "bytes": 4056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 155629 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 244885 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 249 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 175311848, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.13623046875 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDs510BY87G63mldXnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:39.819Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 78, + "query_total": 96 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Ds510BY87G63mldXnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:39.819Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 96, + "time": { + "ms": 78 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDs510BY87G63mldXnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:39.819Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDs510BY87G63mldXnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:39.819Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417865728 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 78 + }, + "query_total": { + "count": 96 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 150516856, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.13623046875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.463Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1144, + "time": { + "ms": 1555 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1144 + } + }, + "search": { + "query": { + "count": 272, + "time": { + "ms": 430 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ad6zOv1cMT8I", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVZKHAhp6bmN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IHN30FAKpVCr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kpEDUtAAWhDK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PAfBRDXAvxJk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O4Si5QbuhapG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1vnpGmtBvzRx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.464Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 83, + "query_total": 120 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Ds510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 160882, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 8673 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 11 + }, + "indexing": { + "index_time_in_millis": 24, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 762 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 122238 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 1344 + }, + "indexing": { + "index_time_in_millis": 24, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 762 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 144, + "query_total": 53 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 37008, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 351, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33237, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 122238 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 644 + }, + "indexing": { + "index_time_in_millis": 1088, + "index_total": 999, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6068052 + }, + "refresh": { + "total_time_in_millis": 6898 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 763301 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1088, + "index_total": 999, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6068052 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6898 + }, + "request_cache": { + "memory_size_in_bytes": 6849 + }, + "search": { + "query_time_in_millis": 89, + "query_total": 35 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 21420, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35849, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 768, + "stored_fields_memory_in_bytes": 968, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 763301 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 4, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 319 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 15, + "query_total": 39 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Ds510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 27 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 466 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 114063 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 466 + }, + "request_cache": { + "memory_size_in_bytes": 15247 + }, + "search": { + "query_time_in_millis": 85, + "query_total": 24 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 768, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 33585, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 356, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 30949, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 114063 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 162, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2436 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 39964 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 162, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2436 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 39964 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 43 + }, + "indexing": { + "index_time_in_millis": 111, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1307 + }, + "segments": { + "count": 10 + }, + "store": { + "size_in_bytes": 308764 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 111, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1307 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 10, + "doc_values_memory_in_bytes": 4600, + "fixed_bit_set_memory_in_bytes": 480, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 144318, + "norms_memory_in_bytes": 12544, + "points_memory_in_bytes": 142, + "stored_fields_memory_in_bytes": 3120, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 123912, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 308764 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Ds510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200417865728 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 744 + }, + "fielddata": { + "memory": { + "bytes": 2144 + } + }, + "indexing": { + "index_time": { + "ms": 1555 + }, + "index_total": { + "count": 1144 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 41645 + } + }, + "search": { + "query_time": { + "ms": 430 + }, + "query_total": { + "count": 276 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 28372 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1248 + } + }, + "index_writer": { + "memory": { + "bytes": 160882 + } + }, + "memory": { + "bytes": 275406 + }, + "norms": { + "memory": { + "bytes": 13696 + } + }, + "points": { + "memory": { + "bytes": 1643 + } + }, + "stored_fields": { + "memory": { + "bytes": 12200 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 219495 + } + }, + "version_map": { + "memory": { + "bytes": 8673 + } + } + }, + "store": { + "size": { + "bytes": 1505801 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 36, + "ms": 521 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 95943016, + "pct": 15 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.1484375 + } + } + }, + "process": { + "cpu": { + "pct": 6 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Ds510BY87G63mlqXry", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:53.197Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416837632 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 22 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 424 + }, + "index_total": { + "count": 35 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 84 + }, + "query_total": { + "count": 88 + } + }, + "segments": { + "count": 18, + "doc_values": { + "memory": { + "bytes": 8440 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 290244 + }, + "norms": { + "memory": { + "bytes": 29440 + } + }, + "points": { + "memory": { + "bytes": 553 + } + }, + "stored_fields": { + "memory": { + "bytes": 5616 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 246195 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 576166 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 10, + "ms": 281 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 263104536, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.68115234375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Ds510BY87G63mlW3nL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:33.191Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418152448 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 18 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 369 + }, + "index_total": { + "count": 31 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 81 + }, + "query_total": { + "count": 78 + } + }, + "segments": { + "count": 14, + "doc_values": { + "memory": { + "bytes": 5176 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 171786 + }, + "norms": { + "memory": { + "bytes": 16896 + } + }, + "points": { + "memory": { + "bytes": 313 + } + }, + "stored_fields": { + "memory": { + "bytes": 4368 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 145033 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 348775 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 275 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131317312, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.1484375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDs510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.469Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 34, + "time": { + "ms": 359 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 85 + } + }, + "search": { + "query": { + "count": 192, + "time": { + "ms": 201 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDs510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HaGsWpXhN2X2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B9q9emzIDzeZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lFfDMDquUQz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yGkUa0nfSIga", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T4vSFjAQo7OJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVYAQbe62CiC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "smgyvKsOAWaQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z5aeYX3qVuWr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rGPdvlnezR7Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXao2mbZqUBJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cOB7pdEJrLxl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WtsYcFjvzrOi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4XHdQ2TtQowb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dKIZBzLAHyzR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.472Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDs510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 160, + "query_total": 112 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Ds510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 209, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1223 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 344575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 454, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2705 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 12, + "doc_values_memory_in_bytes": 11168, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 381492, + "norms_memory_in_bytes": 40576, + "points_memory_in_bytes": 756, + "stored_fields_memory_in_bytes": 3744, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 325248, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 722759 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDs510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 41, + "query_total": 80 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDs510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200418152448 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 14 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 286 + }, + "index_total": { + "count": 29 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 67 + }, + "query_total": { + "count": 83 + } + }, + "segments": { + "count": 13, + "doc_values": { + "memory": { + "bytes": 4284 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 135851 + }, + "norms": { + "memory": { + "bytes": 12928 + } + }, + "points": { + "memory": { + "bytes": 249 + } + }, + "stored_fields": { + "memory": { + "bytes": 4056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 114334 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 271506 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 9, + "ms": 252 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 258408328, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 13.1484375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1396, + "time": { + "ms": 1729 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1396 + } + }, + "search": { + "query": { + "count": 424, + "time": { + "ms": 646 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yPnpFsWZzCpZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pxnFTydpzEdZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5IFjdxN23ADJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Sp7c5gCsXwPw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qYFEXRVToI08", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lfYpSeRxHb2D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zHkqweqvVpqx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 85, + "query_total": 136 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Ds510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 164083, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 10008 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 15 + }, + "indexing": { + "index_time_in_millis": 33, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 888 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 50961 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 752 + }, + "indexing": { + "index_time_in_millis": 33, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 888 + }, + "request_cache": { + "memory_size_in_bytes": 48744 + }, + "search": { + "query_time_in_millis": 176, + "query_total": 88 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 1712, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17890, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 158, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14772, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 50961 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 778 + }, + "indexing": { + "index_time_in_millis": 1217, + "index_total": 1227, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6937906 + }, + "refresh": { + "total_time_in_millis": 7516 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 649625 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1217, + "index_total": 1227, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6937906 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7516 + }, + "request_cache": { + "memory_size_in_bytes": 55992 + }, + "search": { + "query_time_in_millis": 231, + "query_total": 90 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 34092, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 79286, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2222, + "stored_fields_memory_in_bytes": 2840, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40132, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 649625 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "request_cache": { + "memory_size_in_bytes": 1932 + }, + "search": { + "query_time_in_millis": 20, + "query_total": 55 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Ds510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 47 + }, + "indexing": { + "index_time_in_millis": 30, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 626 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 215059 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 30, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 626 + }, + "request_cache": { + "memory_size_in_bytes": 30494 + }, + "search": { + "query_time_in_millis": 120, + "query_total": 54 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1620, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8184, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 75, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6177, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 215059 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 32830 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 32830 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 50 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 141424 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2136, + "fixed_bit_set_memory_in_bytes": 96, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35538, + "norms_memory_in_bytes": 2816, + "points_memory_in_bytes": 33, + "stored_fields_memory_in_bytes": 632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 141424 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Ds510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415236096 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 909 + }, + "fielddata": { + "memory": { + "bytes": 752 + } + }, + "indexing": { + "index_time": { + "ms": 1729 + }, + "index_total": { + "count": 1396 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 139497 + } + }, + "search": { + "query_time": { + "ms": 647 + }, + "query_total": { + "count": 428 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 40892 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 240 + } + }, + "index_writer": { + "memory": { + "bytes": 164083 + } + }, + "memory": { + "bytes": 165544 + }, + "norms": { + "memory": { + "bytes": 3968 + } + }, + "points": { + "memory": { + "bytes": 2514 + } + }, + "stored_fields": { + "memory": { + "bytes": 8464 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 109706 + } + }, + "version_map": { + "memory": { + "bytes": 10008 + } + } + }, + "store": { + "size": { + "bytes": 1352882 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 42, + "ms": 571 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 184137880, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.06591796875 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDs510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.496Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 53, + "time": { + "ms": 515 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 123 + } + }, + "search": { + "query": { + "count": 242, + "time": { + "ms": 213 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDs510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7CtAemewtniu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1W1v9RhBy3mc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8b96LKIz7cPX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "laDzgTPk7hXT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V9yt33Sr56EO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YvwtBy8u4RZO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlSEupyrGwWB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TMzc7vaW71Rk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4RoljVnoSwVH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eSaXAsWhVGwL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V0DdDs5jx3WZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PAeeHV5diKOi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4sIOUamIj5Hr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QrvQNHyNAdtd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.499Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDs510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 163, + "query_total": 128 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Ds510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 29 + }, + "indexing": { + "index_time_in_millis": 365, + "index_total": 29, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2957 + }, + "segments": { + "count": 24 + }, + "store": { + "size_in_bytes": 1358555 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 818, + "index_total": 56, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6152 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 48, + "doc_values_memory_in_bytes": 44176, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1471154, + "norms_memory_in_bytes": 155520, + "points_memory_in_bytes": 2956, + "stored_fields_memory_in_bytes": 14976, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1253526, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2719119 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDs510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 50, + "query_total": 114 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDs510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.525Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415375360 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 27 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 412 + }, + "index_total": { + "count": 42 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 105 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 16864 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 538537 + }, + "norms": { + "memory": { + "bytes": 55488 + } + }, + "points": { + "memory": { + "bytes": 1085 + } + }, + "stored_fields": { + "memory": { + "bytes": 8112 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 456988 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1045717 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 16, + "ms": 365 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 115905160, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.06591796875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDs510BY87G63ml6nrW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:09.805Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415326208 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 30 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 279 + }, + "index_total": { + "count": 41 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 54 + }, + "query_total": { + "count": 39 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 17192 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 563752 + }, + "norms": { + "memory": { + "bytes": 58368 + } + }, + "points": { + "memory": { + "bytes": 1102 + } + }, + "stored_fields": { + "memory": { + "bytes": 8112 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 478978 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1031807 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 14, + "ms": 324 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 266208472, + "pct": 42 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.59423828125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDs510BY87G63ml6nru", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:09.827Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 80, + "query_total": 108 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Ds510BY87G63ml6nru", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:09.827Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 108, + "time": { + "ms": 80 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDs510BY87G63ml6nru", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:09.827Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDs510BY87G63ml6nru", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:09.827Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415326208 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 80 + }, + "query_total": { + "count": 108 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 154077992, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.59423828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDs510BY87G63mlw3rE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:59.802Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416317440 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 27 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 245 + }, + "index_total": { + "count": 39 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 54 + }, + "query_total": { + "count": 38 + } + }, + "segments": { + "count": 23, + "doc_values": { + "memory": { + "bytes": 13724 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 5927016 + } + }, + "memory": { + "bytes": 462668 + }, + "norms": { + "memory": { + "bytes": 47680 + } + }, + "points": { + "memory": { + "bytes": 886 + } + }, + "stored_fields": { + "memory": { + "bytes": 7176 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 393202 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 636959 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 13, + "ms": 304 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188946672, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.06591796875 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDs510BY87G63mlw3rZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:59.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 79, + "query_total": 104 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Ds510BY87G63mlw3rZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:59.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 104, + "time": { + "ms": 79 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDs510BY87G63mlw3rZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:59.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDs510BY87G63mlw3rZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:59.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416317440 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 79 + }, + "query_total": { + "count": 104 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 153102064, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.06591796875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.472Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1337, + "time": { + "ms": 1697 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1337 + } + }, + "search": { + "query": { + "count": 409, + "time": { + "ms": 621 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dYqTGLAuC8dk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m82pE5JbEdIs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jcYvH3JXPHRP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mr0qtKrjkyxa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q31GpR4IySjB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B6J31Ycp4jad", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "napZWj410tmO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.473Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 85, + "query_total": 132 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Ds510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 164083, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 10008 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 14 + }, + "indexing": { + "index_time_in_millis": 31, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 873 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 50961 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 752 + }, + "indexing": { + "index_time_in_millis": 31, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 873 + }, + "request_cache": { + "memory_size_in_bytes": 40620 + }, + "search": { + "query_time_in_millis": 171, + "query_total": 85 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1644, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13778, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 119, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11079, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 50961 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 752 + }, + "indexing": { + "index_time_in_millis": 1189, + "index_total": 1170, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6937906 + }, + "refresh": { + "total_time_in_millis": 7453 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 649625 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1189, + "index_total": 1170, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6937906 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7453 + }, + "request_cache": { + "memory_size_in_bytes": 44640 + }, + "search": { + "query_time_in_millis": 214, + "query_total": 86 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 29708, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 55136, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1301, + "stored_fields_memory_in_bytes": 1592, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22535, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 649625 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "request_cache": { + "memory_size_in_bytes": 1932 + }, + "search": { + "query_time_in_millis": 19, + "query_total": 54 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Ds510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 42 + }, + "indexing": { + "index_time_in_millis": 28, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 596 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 189810 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 896 + }, + "indexing": { + "index_time_in_millis": 28, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 596 + }, + "request_cache": { + "memory_size_in_bytes": 30494 + }, + "search": { + "query_time_in_millis": 118, + "query_total": 51 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 1200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 51441, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 566, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 47455, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 189810 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 32830 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 32830 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.481Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 50 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 141424 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2136, + "fixed_bit_set_memory_in_bytes": 96, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35538, + "norms_memory_in_bytes": 2816, + "points_memory_in_bytes": 33, + "stored_fields_memory_in_bytes": 632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 141424 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Ds510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.498Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415449088 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 877 + }, + "fielddata": { + "memory": { + "bytes": 1648 + } + }, + "indexing": { + "index_time": { + "ms": 1697 + }, + "index_total": { + "count": 1337 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 120021 + } + }, + "search": { + "query_time": { + "ms": 621 + }, + "query_total": { + "count": 413 + } + }, + "segments": { + "count": 30, + "doc_values": { + "memory": { + "bytes": 35432 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1296 + } + }, + "index_writer": { + "memory": { + "bytes": 164083 + } + }, + "memory": { + "bytes": 180539 + }, + "norms": { + "memory": { + "bytes": 3968 + } + }, + "points": { + "memory": { + "bytes": 2045 + } + }, + "stored_fields": { + "memory": { + "bytes": 9400 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 129694 + } + }, + "version_map": { + "memory": { + "bytes": 10008 + } + } + }, + "store": { + "size": { + "bytes": 1130308 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 41, + "ms": 563 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 99513480, + "pct": 15 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.8203125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.477Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1278, + "time": { + "ms": 1663 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1278 + } + }, + "search": { + "query": { + "count": 365, + "time": { + "ms": 575 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GM5xfv0O2MAz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sXI2vhpYbEzQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vWmCuZ0D6Bw4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zc8TpRQNZhLx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVb1SWxBKNR1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "axM8IhT2Gm3A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l9d8CvhlDGyn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.478Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 84, + "query_total": 128 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Ds510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 164083, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 10008 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 13 + }, + "indexing": { + "index_time_in_millis": 29, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 853 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 35806 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 29, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 853 + }, + "request_cache": { + "memory_size_in_bytes": 32496 + }, + "search": { + "query_time_in_millis": 163, + "query_total": 72 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 1576, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 9666, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 80, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7386, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 35806 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 711 + }, + "indexing": { + "index_time_in_millis": 1159, + "index_total": 1113, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6937906 + }, + "refresh": { + "total_time_in_millis": 7184 + }, + "segments": { + "count": 10 + }, + "store": { + "size_in_bytes": 1312267 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1159, + "index_total": 1113, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6937906 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7184 + }, + "request_cache": { + "memory_size_in_bytes": 38171 + }, + "search": { + "query_time_in_millis": 191, + "query_total": 77 + }, + "segments": { + "count": 10, + "doc_values_memory_in_bytes": 29544, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 80237, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2488, + "stored_fields_memory_in_bytes": 3152, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 45053, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1312267 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "request_cache": { + "memory_size_in_bytes": 1932 + }, + "search": { + "query_time_in_millis": 18, + "query_total": 49 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Ds510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 37 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 582 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 189810 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 582 + }, + "request_cache": { + "memory_size_in_bytes": 23437 + }, + "search": { + "query_time_in_millis": 105, + "query_total": 38 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 544, + "fixed_bit_set_memory_in_bytes": 1056, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 45489, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 496, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 41953, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 189810 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 32830 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 32830 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 50 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 141424 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2136, + "fixed_bit_set_memory_in_bytes": 96, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35538, + "norms_memory_in_bytes": 2816, + "points_memory_in_bytes": 33, + "stored_fields_memory_in_bytes": 632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 141424 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Ds510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.492Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416215040 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 830 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1663 + }, + "index_total": { + "count": 1278 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 98371 + } + }, + "search": { + "query_time": { + "ms": 576 + }, + "query_total": { + "count": 369 + } + }, + "segments": { + "count": 33, + "doc_values": { + "memory": { + "bytes": 35132 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1152 + } + }, + "index_writer": { + "memory": { + "bytes": 164083 + } + }, + "memory": { + "bytes": 195576 + }, + "norms": { + "memory": { + "bytes": 3968 + } + }, + "points": { + "memory": { + "bytes": 3123 + } + }, + "stored_fields": { + "memory": { + "bytes": 10336 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 143017 + } + }, + "version_map": { + "memory": { + "bytes": 10008 + } + } + }, + "store": { + "size": { + "bytes": 1752546 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 39, + "ms": 547 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 221631328, + "pct": 35 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 10.68115234375 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Ds510BY87G63ml0XoK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:03.200Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416055296 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 25 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 460 + }, + "index_total": { + "count": 40 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 86 + }, + "query_total": { + "count": 95 + } + }, + "segments": { + "count": 20, + "doc_values": { + "memory": { + "bytes": 9984 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 11987744 + } + }, + "memory": { + "bytes": 345829 + }, + "norms": { + "memory": { + "bytes": 35264 + } + }, + "points": { + "memory": { + "bytes": 651 + } + }, + "stored_fields": { + "memory": { + "bytes": 6240 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 293690 + } + }, + "version_map": { + "memory": { + "bytes": 260 + } + } + }, + "store": { + "size": { + "bytes": 684283 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 11, + "ms": 303 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 233948576, + "pct": 37 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.8203125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Ds510BY87G63ml-HoX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:13.203Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415375360 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 27 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 460 + }, + "index_total": { + "count": 40 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 87 + }, + "query_total": { + "count": 100 + } + }, + "segments": { + "count": 22, + "doc_values": { + "memory": { + "bytes": 12296 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 413561 + }, + "norms": { + "memory": { + "bytes": 42432 + } + }, + "points": { + "memory": { + "bytes": 795 + } + }, + "stored_fields": { + "memory": { + "bytes": 6864 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 351174 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 750393 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 12, + "ms": 325 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 241392048, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.06591796875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDs510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 50, + "time": { + "ms": 497 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 117 + } + }, + "search": { + "query": { + "count": 230, + "time": { + "ms": 211 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDs510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tYs9mSvREG5a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NAKi9HNRlscY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6gpPPpsNlKyI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlbW84F5Os0J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I3rfit9ct8zl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tkeNrIwkSIlF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zvfmEQRziydt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jWdKxd7TK3rY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0QhH3HjMCLdM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0gtB4eR48V2r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P9XZwZAUd2WL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "59KIOtbTqskl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ckuvl6PAS9So", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZAc4IlasaZXj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.477Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDs510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 163, + "query_total": 124 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Ds510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 347, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2526 + }, + "segments": { + "count": 21 + }, + "store": { + "size_in_bytes": 899606 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 758, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5177 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 42, + "doc_values_memory_in_bytes": 37240, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1268986, + "norms_memory_in_bytes": 134144, + "points_memory_in_bytes": 2524, + "stored_fields_memory_in_bytes": 13104, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1081974, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1764830 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDs510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 48, + "query_total": 106 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDs510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200416055296 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 25 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 400 + }, + "index_total": { + "count": 40 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 71 + }, + "query_total": { + "count": 100 + } + }, + "segments": { + "count": 24, + "doc_values": { + "memory": { + "bytes": 14552 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 471833 + }, + "norms": { + "memory": { + "bytes": 48448 + } + }, + "points": { + "memory": { + "bytes": 941 + } + }, + "stored_fields": { + "memory": { + "bytes": 7488 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 400404 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 660503 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 15, + "ms": 349 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 111339672, + "pct": 17 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.8203125 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.485Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1528, + "time": { + "ms": 1826 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1528 + } + }, + "search": { + "query": { + "count": 453, + "time": { + "ms": 678 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h726CZyRTPyN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xC6S8RSuUgRU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zBZkwXgmpn47", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wYI1ZDEiy1py", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6DSzYIqe2t4z", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71an7uuY8SdC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVUmRl1qCCGQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 87, + "query_total": 144 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 166610, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 11023 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 17 + }, + "indexing": { + "index_time_in_millis": 37, + "index_total": 17, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 913 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 81265 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 37, + "index_total": 17, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 913 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 178, + "query_total": 94 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 1848, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 26114, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 236, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 81265 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 843 + }, + "indexing": { + "index_time_in_millis": 1291, + "index_total": 1339, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7859963 + }, + "refresh": { + "total_time_in_millis": 7760 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 629652 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1291, + "index_total": 1339, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7859963 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7760 + }, + "request_cache": { + "memory_size_in_bytes": 12152 + }, + "search": { + "query_time_in_millis": 258, + "query_total": 99 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 34324, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 70767, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1836, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 32383, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 629652 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 425 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 13, + "index_total": 6, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 425 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 20, + "query_total": 60 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 57 + }, + "indexing": { + "index_time_in_millis": 35, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 672 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 85743 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 752 + }, + "indexing": { + "index_time_in_millis": 35, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 672 + }, + "request_cache": { + "memory_size_in_bytes": 1133 + }, + "search": { + "query_time_in_millis": 121, + "query_total": 55 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 1756, + "fixed_bit_set_memory_in_bytes": 432, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20088, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 215, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17181, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 85743 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 174, + "index_total": 55, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2493 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 32832 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 174, + "index_total": 55, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2493 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 32832 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 57 + }, + "indexing": { + "index_time_in_millis": 131, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1383 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 141424 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 131, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1383 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 3004, + "fixed_bit_set_memory_in_bytes": 144, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 53100, + "norms_memory_in_bytes": 4224, + "points_memory_in_bytes": 49, + "stored_fields_memory_in_bytes": 944, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 44879, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 141424 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.494Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415096832 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 994 + }, + "fielddata": { + "memory": { + "bytes": 1552 + } + }, + "indexing": { + "index_time": { + "ms": 1826 + }, + "index_total": { + "count": 1528 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 16586 + } + }, + "search": { + "query_time": { + "ms": 678 + }, + "query_total": { + "count": 457 + } + }, + "segments": { + "count": 31, + "doc_values": { + "memory": { + "bytes": 42332 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 576 + } + }, + "index_writer": { + "memory": { + "bytes": 166610 + } + }, + "memory": { + "bytes": 197093 + }, + "norms": { + "memory": { + "bytes": 5504 + } + }, + "points": { + "memory": { + "bytes": 2368 + } + }, + "stored_fields": { + "memory": { + "bytes": 9720 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 137169 + } + }, + "version_map": { + "memory": { + "bytes": 11023 + } + } + }, + "store": { + "size": { + "bytes": 1258110 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 45, + "ms": 594 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 212879152, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.6826171875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.478Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 53, + "time": { + "ms": 515 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 123 + } + }, + "search": { + "query": { + "count": 254, + "time": { + "ms": 216 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FMqh7WUm28pH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 77 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834337469, + "stop_time_in_millis": 1502834337814, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 344, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 143 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tZCoUn6uFrRY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0k6VLnZjt4UL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3kLZLbDqrFpC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4GpZrnGqOtie", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eIpaEXrJ3JaG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 82 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574784, + "stop_time_in_millis": 1502834576080, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 1296, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 216 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlNWLloUSoIi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574708, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 32, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7rx1aN5Vm4z4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 114 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574797, + "stop_time_in_millis": 1502834574983, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 185, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 59 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wHrJaiefQQxK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 111 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574786, + "stop_time_in_millis": 1502834576288, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 1501, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 0, + "total_time_in_millis": 423 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cbQkVKj463z1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5ayvF682M32J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5drw2FvoAe04", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cRCFkipc4Tma", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rykrLMU2RVuO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834478061, + "stop_time_in_millis": 1502834478636, + "target": { + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + }, + "total_time_in_millis": 574, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 15 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:qE6L9R9lQ3ybLe4Hs7q7xg:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:qE6L9R9lQ3ybLe4Hs7q7xg:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NXZL0s0WQdmFfYE25p5eYg:qE6L9R9lQ3ybLe4Hs7q7xg:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.483Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "NXZL0s0WQdmFfYE25p5eYg" + }, + "stats": { + "state": { + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 314, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2444 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 164, + "query_total": 132 + }, + "segments": { + "count": 24, + "doc_values_memory_in_bytes": 2040, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41556, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 24, + "stored_fields_memory_in_bytes": 7488, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 31236, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 100722 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 29 + }, + "indexing": { + "index_time_in_millis": 365, + "index_total": 29, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2957 + }, + "segments": { + "count": 24 + }, + "store": { + "size_in_bytes": 1424665 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 818, + "index_total": 56, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6152 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 48, + "doc_values_memory_in_bytes": 44176, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1471154, + "norms_memory_in_bytes": 155520, + "points_memory_in_bytes": 2956, + "stored_fields_memory_in_bytes": 14976, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1253526, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2849330 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 323 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 52, + "query_total": 122 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8076 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415514624 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 27 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 412 + }, + "index_total": { + "count": 42 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 73 + }, + "query_total": { + "count": 111 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 16864 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 538537 + }, + "norms": { + "memory": { + "bytes": 55488 + } + }, + "points": { + "memory": { + "bytes": 1085 + } + }, + "stored_fields": { + "memory": { + "bytes": 8112 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 456988 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1045717 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 16, + "ms": 365 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 125169664, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.61328125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.484Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 45, + "time": { + "ms": 376 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 77 + } + }, + "search": { + "query": { + "count": 157, + "time": { + "ms": 129 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8K72KGBzBPVC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GmJO5gVh0u7W", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lf6lxCy9i4Bs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EUJqFmHjsiWD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ez9PoujT3eUm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "15QBD9FIrQXJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qHQ1n2YUAqPZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tpdUoFJisC5p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cbOQhrRwc99K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.487Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:_na:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:_na:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:_na:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ:_na:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "y-hnH1L8Tg2Frn_nUXlMBQ" + }, + "stats": { + "state": { + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1605 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 104, + "query_total": 92 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67148 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 31 + }, + "indexing": { + "index_time_in_millis": 226, + "index_total": 21, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1920 + }, + "segments": { + "count": 21 + }, + "store": { + "size_in_bytes": 1074691 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 379, + "index_total": 32, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2941 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 32, + "doc_values_memory_in_bytes": 30416, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 987114, + "norms_memory_in_bytes": 104320, + "points_memory_in_bytes": 2006, + "stored_fields_memory_in_bytes": 9984, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 840388, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1722474 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 65 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415326208 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 28 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 418 + }, + "index_total": { + "count": 43 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 75 + }, + "query_total": { + "count": 117 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 17612 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 571742 + }, + "norms": { + "memory": { + "bytes": 59072 + } + }, + "points": { + "memory": { + "bytes": 1157 + } + }, + "stored_fields": { + "memory": { + "bytes": 8424 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 485477 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1107365 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 16, + "ms": 365 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 233250600, + "pct": 37 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.6826171875 + } + } + }, + "process": { + "cpu": { + "pct": 11 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.488Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 50, + "time": { + "ms": 409 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 84 + } + }, + "search": { + "query": { + "count": 169, + "time": { + "ms": 131 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qhbWkIlIRBpX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6gw66Lnonssa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pdlio4XNB6Sz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alMfZ2UcBK69", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EIi8a2G6viXq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W0YJbZIT8kyt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "huHd8ekEQWyw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tZGPXeHGHutX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v4mjXszuIls9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.489Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1605 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 105, + "query_total": 96 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67148 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 36 + }, + "indexing": { + "index_time_in_millis": 259, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2132 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 1536450 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 423, + "index_total": 39, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3236 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 39, + "doc_values_memory_in_bytes": 37964, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1219268, + "norms_memory_in_bytes": 129088, + "points_memory_in_bytes": 2514, + "stored_fields_memory_in_bytes": 12168, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1037534, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2184233 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 73 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.507Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414154752 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 30 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 429 + }, + "index_total": { + "count": 45 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 76 + }, + "query_total": { + "count": 127 + } + }, + "segments": { + "count": 29, + "doc_values": { + "memory": { + "bytes": 19652 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 637502 + }, + "norms": { + "memory": { + "bytes": 66112 + } + }, + "points": { + "memory": { + "bytes": 1303 + } + }, + "stored_fields": { + "memory": { + "bytes": 9048 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 541387 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1107365 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 17, + "ms": 374 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239066344, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.888671875 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDt510BY87G63mlYHoO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:39.816Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414425088 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 35 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 309 + }, + "index_total": { + "count": 46 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 55 + }, + "query_total": { + "count": 44 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 18584 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 578138 + }, + "norms": { + "memory": { + "bytes": 59968 + } + }, + "points": { + "memory": { + "bytes": 1156 + } + }, + "stored_fields": { + "memory": { + "bytes": 8112 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 490318 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1020717 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 18, + "ms": 378 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129915264, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.2275390625 + } + } + }, + "process": { + "cpu": { + "pct": 7 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDt510BY87G63mlYHon", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:39.837Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 83, + "query_total": 120 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDt510BY87G63mlYHon", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:39.838Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 120, + "time": { + "ms": 83 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dt510BY87G63mlYHon", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:39.838Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDt510BY87G63mlYHon", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:39.838Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414420992 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 83 + }, + "query_total": { + "count": 120 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 157932472, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.2275390625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDt510BY87G63mlOXoF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:29.813Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415424512 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 21 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 283 + }, + "index_total": { + "count": 42 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 55 + }, + "query_total": { + "count": 42 + } + }, + "segments": { + "count": 21, + "doc_values": { + "memory": { + "bytes": 11492 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 388273 + }, + "norms": { + "memory": { + "bytes": 39552 + } + }, + "points": { + "memory": { + "bytes": 742 + } + }, + "stored_fields": { + "memory": { + "bytes": 6552 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 329935 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 747746 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 15, + "ms": 354 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 157962488, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.00341796875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDt510BY87G63mlOXok", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:29.836Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 82, + "query_total": 116 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dt510BY87G63mlOXok", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:29.836Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 116, + "time": { + "ms": 82 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDt510BY87G63mlOXok", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:29.836Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDt510BY87G63mlOXok", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:29.837Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415420416 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 82 + }, + "query_total": { + "count": 116 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 155889336, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.00341796875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDt510BY87G63mlEXrs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:19.810Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415629312 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 30 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 279 + }, + "index_total": { + "count": 41 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 55 + }, + "query_total": { + "count": 41 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 17192 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 563752 + }, + "norms": { + "memory": { + "bytes": 58368 + } + }, + "points": { + "memory": { + "bytes": 1102 + } + }, + "stored_fields": { + "memory": { + "bytes": 8112 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 478978 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1097917 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 14, + "ms": 324 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 268150432, + "pct": 42 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.580078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDt510BY87G63mlEnoG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:19.832Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 80, + "query_total": 112 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dt510BY87G63mlEnoG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:19.833Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 112, + "time": { + "ms": 80 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDt510BY87G63mlEnoG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:19.833Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDt510BY87G63mlEnoG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:19.833Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415629312 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 80 + }, + "query_total": { + "count": 112 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 154839096, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.580078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1455, + "time": { + "ms": 1774 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1455 + } + }, + "search": { + "query": { + "count": 431, + "time": { + "ms": 662 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yCKkPemJg7ML", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NDzUCTLE8BN5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DxSATkOeUvp1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZQjBTcqDJxHn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2H0WlXkt83OE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4JD9fVBH3aOE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1d3bGuOe9LZf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.480Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 86, + "query_total": 140 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 164083, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 10008 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 16 + }, + "indexing": { + "index_time_in_millis": 35, + "index_total": 16, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 902 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 66109 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 35, + "index_total": 16, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 902 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 176, + "query_total": 88 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 1780, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 22002, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 197, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 18465, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 66109 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 804 + }, + "indexing": { + "index_time_in_millis": 1258, + "index_total": 1284, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7859963 + }, + "refresh": { + "total_time_in_millis": 7589 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 857051 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1258, + "index_total": 1284, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7859963 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7589 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 246, + "query_total": 93 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 30232, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 50178, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1038, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17620, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 857051 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 6638 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 11, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 403 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 20, + "query_total": 55 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2378, + "norms_memory_in_bytes": 128, + "points_memory_in_bytes": 6, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1864, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 6638 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 52 + }, + "indexing": { + "index_time_in_millis": 32, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 640 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 60490 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 32, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 640 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 120, + "query_total": 54 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 1688, + "fixed_bit_set_memory_in_bytes": 288, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 14136, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 145, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11679, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 60490 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 32830 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 169, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2482 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 584, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8416, + "norms_memory_in_bytes": 768, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6428, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 32830 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.482Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 50 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 141424 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1367 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2136, + "fixed_bit_set_memory_in_bytes": 96, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35538, + "norms_memory_in_bytes": 2816, + "points_memory_in_bytes": 33, + "stored_fields_memory_in_bytes": 632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 141424 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.487Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415375360 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 941 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1774 + }, + "index_total": { + "count": 1455 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3301 + } + }, + "search": { + "query_time": { + "ms": 663 + }, + "query_total": { + "count": 435 + } + }, + "segments": { + "count": 24, + "doc_values": { + "memory": { + "bytes": 37168 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 384 + } + }, + "index_writer": { + "memory": { + "bytes": 164083 + } + }, + "memory": { + "bytes": 146500 + }, + "norms": { + "memory": { + "bytes": 3968 + } + }, + "points": { + "memory": { + "bytes": 1439 + } + }, + "stored_fields": { + "memory": { + "bytes": 7536 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 96389 + } + }, + "version_map": { + "memory": { + "bytes": 10008 + } + } + }, + "store": { + "size": { + "bytes": 986070 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 44, + "ms": 587 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 112817656, + "pct": 17 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.61328125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dt510BY87G63mlH3on", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:23.203Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "qE6L9R9lQ3ybLe4Hs7q7xg", + "ip": "127.0.0.1", + "name": "clusterone-03", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200415514624 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 27 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 460 + }, + "index_total": { + "count": 40 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 89 + }, + "query_total": { + "count": 105 + } + }, + "segments": { + "count": 22, + "doc_values": { + "memory": { + "bytes": 12296 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 413561 + }, + "norms": { + "memory": { + "bytes": 42432 + } + }, + "points": { + "memory": { + "bytes": 795 + } + }, + "stored_fields": { + "memory": { + "bytes": 6864 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 351174 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 814494 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 12, + "ms": 325 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 243454584, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.61328125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9302", + "uuid": "qE6L9R9lQ3ybLe4Hs7q7xg" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9302" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1715, + "time": { + "ms": 1944 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1715 + } + }, + "search": { + "query": { + "count": 489, + "time": { + "ms": 718 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eevMcsWOnGdT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fcmHnh1P5UGo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kptZpKlCheFG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "afNfHxjoCzpW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pzCW47ap2tEM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yQd3OpEBULpO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7rL6AunjFKTK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 89, + "query_total": 156 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 169787, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 12358 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 20 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 940 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 126720 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 42, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 940 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 180, + "query_total": 100 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 2052, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38450, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 353, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33237, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 126720 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 946 + }, + "indexing": { + "index_time_in_millis": 1366, + "index_total": 1504, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8852482 + }, + "refresh": { + "total_time_in_millis": 8048 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 900726 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1366, + "index_total": 1504, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8852482 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8048 + }, + "request_cache": { + "memory_size_in_bytes": 47432 + }, + "search": { + "query_time_in_millis": 292, + "query_total": 111 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 40984, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 82066, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1983, + "stored_fields_memory_in_bytes": 2544, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 36555, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 900726 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13071 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 65 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13071 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 72 + }, + "indexing": { + "index_time_in_millis": 47, + "index_total": 16, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 718 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 161502 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 47, + "index_total": 16, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 718 + }, + "request_cache": { + "memory_size_in_bytes": 2266 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 56 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 1960, + "fixed_bit_set_memory_in_bytes": 864, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 37944, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 425, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33687, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 161502 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41106 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41106 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 64 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 251083 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3812, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 82758, + "norms_memory_in_bytes": 6784, + "points_memory_in_bytes": 77, + "stored_fields_memory_in_bytes": 1568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 70517, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 251083 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200412753920 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1122 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1944 + }, + "index_total": { + "count": 1715 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 52999 + } + }, + "search": { + "query_time": { + "ms": 718 + }, + "query_total": { + "count": 493 + } + }, + "segments": { + "count": 41, + "doc_values": { + "memory": { + "bytes": 50236 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1104 + } + }, + "index_writer": { + "memory": { + "bytes": 169787 + } + }, + "memory": { + "bytes": 272184 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 2874 + } + }, + "stored_fields": { + "memory": { + "bytes": 12848 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 197778 + } + }, + "version_map": { + "memory": { + "bytes": 12358 + } + } + }, + "store": { + "size": { + "bytes": 1543131 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 50, + "ms": 631 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 126143320, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.72509765625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.500Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 55, + "time": { + "ms": 447 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 93 + } + }, + "search": { + "query": { + "count": 193, + "time": { + "ms": 136 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZMtA6Reg7jPc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hxMWma6BbbJ8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cC0GIkmm57x9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4hl0IxXidRVC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kYN0bTt3n9iA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SURA8iNdplUl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BJIPdiGXp1tW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Xp9Ds1jDpB1g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AxwObPbpfpp9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.502Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:_na:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:_na:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:_na:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wSPabBpScSZDNsKU_laCw:_na:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.504Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "7wSPabBpScSZDNsKU_laCw" + }, + "stats": { + "state": { + "state_uuid": "7wSPabBpScSZDNsKU_laCw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1605 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 106, + "query_total": 104 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67148 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 41 + }, + "indexing": { + "index_time_in_millis": 297, + "index_total": 31, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2422 + }, + "segments": { + "count": 31 + }, + "store": { + "size_in_bytes": 1897506 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 487, + "index_total": 48, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3696 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 48, + "doc_values_memory_in_bytes": 46192, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1496213, + "norms_memory_in_bytes": 158656, + "points_memory_in_bytes": 3066, + "stored_fields_memory_in_bytes": 14976, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1273323, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2903256 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 30, + "query_total": 89 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200412860416 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 35 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 467 + }, + "index_total": { + "count": 50 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 81 + }, + "query_total": { + "count": 147 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 24344 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 793309 + }, + "norms": { + "memory": { + "bytes": 82752 + } + }, + "points": { + "memory": { + "bytes": 1615 + } + }, + "stored_fields": { + "memory": { + "bytes": 10608 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 673990 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1532215 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 20, + "ms": 409 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 126862168, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.72509765625 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oGSvu8Njskfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dPbSdi1FAbMf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yym0qSTHMcxz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ekDfYtT61obI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PLPOEN2rQ3Sx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "20WAIVkGuVLC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lkZhjfciD7or", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v6RqEvXmYS11", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FGmPlPsa13P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:_na:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:_na:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:_na:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FibviH5UQ92UnI19of8L9g:_na:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "FibviH5UQ92UnI19of8L9g" + }, + "stats": { + "state": { + "state_uuid": "FibviH5UQ92UnI19of8L9g" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.498Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1605 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 106, + "query_total": 100 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67148 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.498Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 36 + }, + "indexing": { + "index_time_in_millis": 259, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2132 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 1599993 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 423, + "index_total": 39, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3236 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 39, + "doc_values_memory_in_bytes": 37964, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1219268, + "norms_memory_in_bytes": 129088, + "points_memory_in_bytes": 2514, + "stored_fields_memory_in_bytes": 12168, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1037534, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2375113 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.498Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 28, + "query_total": 81 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.511Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413945856 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 30 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 429 + }, + "index_total": { + "count": 45 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 78 + }, + "query_total": { + "count": 137 + } + }, + "segments": { + "count": 29, + "doc_values": { + "memory": { + "bytes": 19652 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 637502 + }, + "norms": { + "memory": { + "bytes": 66112 + } + }, + "points": { + "memory": { + "bytes": 1303 + } + }, + "stored_fields": { + "memory": { + "bytes": 9048 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 541387 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1234702 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 17, + "ms": 374 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 247130672, + "pct": 39 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.02392578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDt510BY87G63ml1XpF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:09.825Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413192192 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 40 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 342 + }, + "index_total": { + "count": 51 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 57 + }, + "query_total": { + "count": 50 + } + }, + "segments": { + "count": 31, + "doc_values": { + "memory": { + "bytes": 23276 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 732178 + }, + "norms": { + "memory": { + "bytes": 76416 + } + }, + "points": { + "memory": { + "bytes": 1468 + } + }, + "stored_fields": { + "memory": { + "bytes": 9672 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 621346 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1442227 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 20, + "ms": 397 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 181343424, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.9873046875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDt510BY87G63ml1Xpk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:09.846Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 85, + "query_total": 132 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dt510BY87G63ml1Xpk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:09.846Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 132, + "time": { + "ms": 85 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDt510BY87G63ml1Xpk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:09.846Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDt510BY87G63ml1Xpk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:09.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413188096 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 85 + }, + "query_total": { + "count": 132 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 161661384, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.9873046875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dt510BY87G63mlh3oj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:49.820Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414445568 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 36 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 316 + }, + "index_total": { + "count": 47 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 56 + }, + "query_total": { + "count": 46 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 19740 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 611040 + }, + "norms": { + "memory": { + "bytes": 63488 + } + }, + "points": { + "memory": { + "bytes": 1228 + } + }, + "stored_fields": { + "memory": { + "bytes": 8424 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 518160 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1211597 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 18, + "ms": 378 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 215483728, + "pct": 34 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.4169921875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDt510BY87G63mlh3pK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:49.844Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 83, + "query_total": 124 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDt510BY87G63mlh3pK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:49.845Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 124, + "time": { + "ms": 83 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDt510BY87G63mlh3pK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:49.845Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dt510BY87G63mlh3pK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:49.846Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414441472 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 83 + }, + "query_total": { + "count": 124 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 159110512, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.4169921875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDt510BY87G63mlrnoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:59.821Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413138944 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 39 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 333 + }, + "index_total": { + "count": 50 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 56 + }, + "query_total": { + "count": 48 + } + }, + "segments": { + "count": 30, + "doc_values": { + "memory": { + "bytes": 22120 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 696475 + }, + "norms": { + "memory": { + "bytes": 72576 + } + }, + "points": { + "memory": { + "bytes": 1394 + } + }, + "stored_fields": { + "memory": { + "bytes": 9360 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 591025 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1211597 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 19, + "ms": 389 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 257344920, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.70166015625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dt510BY87G63mlrnpW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:59.846Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 84, + "query_total": 128 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDt510BY87G63mlrnpW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:59.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 128, + "time": { + "ms": 84 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDt510BY87G63mlrnpW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:59.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDt510BY87G63mlrnpW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:59.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413134848 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 84 + }, + "query_total": { + "count": 128 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 160133072, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.70166015625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.489Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1601, + "time": { + "ms": 1873 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1601 + } + }, + "search": { + "query": { + "count": 475, + "time": { + "ms": 694 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "datbeEOhAub4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vuk7ydoRgLK3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kfchmMByJlux", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RL2xcC2A8Qih", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D0L0oS9cMHAO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OZ2yzVBwDH0X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "85KmPug7Se4S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 87, + "query_total": 148 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 169787, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 12358 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 18 + }, + "indexing": { + "index_time_in_millis": 38, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 922 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 96408 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 38, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 922 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 180, + "query_total": 100 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 1916, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 30226, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 275, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25851, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 96408 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 882 + }, + "indexing": { + "index_time_in_millis": 1309, + "index_total": 1394, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8852482 + }, + "refresh": { + "total_time_in_millis": 7825 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 811118 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1309, + "index_total": 1394, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8852482 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7825 + }, + "request_cache": { + "memory_size_in_bytes": 23896 + }, + "search": { + "query_time_in_millis": 270, + "query_total": 105 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 32620, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38309, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 385, + "stored_fields_memory_in_bytes": 360, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 4944, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 811118 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13070 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 65 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13070 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 62 + }, + "indexing": { + "index_time_in_millis": 37, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 691 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 110993 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 37, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 691 + }, + "request_cache": { + "memory_size_in_bytes": 2266 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 56 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 1824, + "fixed_bit_set_memory_in_bytes": 576, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 26040, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 285, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22683, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 110993 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41106 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41106 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.491Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 64 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 185168 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3812, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 82758, + "norms_memory_in_bytes": 6784, + "points_memory_in_bytes": 77, + "stored_fields_memory_in_bytes": 1568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 70517, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 185168 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.496Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414564352 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1046 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1873 + }, + "index_total": { + "count": 1601 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 29463 + } + }, + "search": { + "query_time": { + "ms": 695 + }, + "query_total": { + "count": 479 + } + }, + "segments": { + "count": 30, + "doc_values": { + "memory": { + "bytes": 41600 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 816 + } + }, + "index_writer": { + "memory": { + "bytes": 169787 + } + }, + "memory": { + "bytes": 208299 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 1058 + } + }, + "stored_fields": { + "memory": { + "bytes": 9416 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 147777 + } + }, + "version_map": { + "memory": { + "bytes": 12358 + } + } + }, + "store": { + "size": { + "bytes": 1291634 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 47, + "ms": 608 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 245996264, + "pct": 39 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.888671875 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1658, + "time": { + "ms": 1909 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1658 + } + }, + "search": { + "query": { + "count": 482, + "time": { + "ms": 702 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AOWDHI0V0iK1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j6YSIdIEwiDh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pUMI6vtDOtES", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mKoxx13zmmXW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NZiBDfq22Xws", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NBXPY1RBtg8u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JvFGANW2rwbA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.502Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 88, + "query_total": 152 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 169787, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 12358 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 19 + }, + "indexing": { + "index_time_in_millis": 40, + "index_total": 19, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "refresh": { + "total_time_in_millis": 930 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 126720 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 40, + "index_total": 19, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 152342 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 930 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 180, + "query_total": 100 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 1984, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 34338, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 314, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29544, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 126720 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 907 + }, + "indexing": { + "index_time_in_millis": 1339, + "index_total": 1449, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8852482 + }, + "refresh": { + "total_time_in_millis": 7929 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 719202 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1339, + "index_total": 1449, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8852482 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7929 + }, + "request_cache": { + "memory_size_in_bytes": 35664 + }, + "search": { + "query_time_in_millis": 277, + "query_total": 108 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 36852, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 61437, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1185, + "stored_fields_memory_in_bytes": 1608, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 21792, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 719202 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13071 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 65 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13071 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 67 + }, + "indexing": { + "index_time_in_millis": 41, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 703 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 136246 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 41, + "index_total": 15, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 703 + }, + "request_cache": { + "memory_size_in_bytes": 2266 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 56 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 1892, + "fixed_bit_set_memory_in_bytes": 720, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 31992, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 355, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 28185, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 136246 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41106 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41106 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 64 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 251083 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3812, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 82758, + "norms_memory_in_bytes": 6784, + "points_memory_in_bytes": 77, + "stored_fields_memory_in_bytes": 1568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 70517, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 251083 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.517Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413822976 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1077 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1909 + }, + "index_total": { + "count": 1658 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 41231 + } + }, + "search": { + "query_time": { + "ms": 703 + }, + "query_total": { + "count": 486 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 45968 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 960 + } + }, + "index_writer": { + "memory": { + "bytes": 169787 + } + }, + "memory": { + "bytes": 241491 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 1967 + } + }, + "stored_fields": { + "memory": { + "bytes": 11288 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 173820 + } + }, + "version_map": { + "memory": { + "bytes": 12358 + } + } + }, + "store": { + "size": { + "bytes": 1321199 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 49, + "ms": 623 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 99847200, + "pct": 15 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.02392578125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.491Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 50, + "time": { + "ms": 409 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 84 + } + }, + "search": { + "query": { + "count": 181, + "time": { + "ms": 134 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.505Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1908, + "time": { + "ms": 2036 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1908 + } + }, + "search": { + "query": { + "count": 513, + "time": { + "ms": 749 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Du510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AqaBvYp77f2Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P45ZnZKRiA7s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "egy7OuPHyesP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41UT78wOYtID", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R2HRHu1qSEHN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GXxSXP39Y9Fz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XmiUWhsfpQIN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 90, + "query_total": 168 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 170932, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 12307 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 23 + }, + "indexing": { + "index_time_in_millis": 47, + "index_total": 23, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1011 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 39984 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 47, + "index_total": 23, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1011 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 181, + "query_total": 101 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 2316, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 14450, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 119, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11079, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 39984 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Du510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1081 + }, + "indexing": { + "index_time_in_millis": 1435, + "index_total": 1687, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9874157 + }, + "refresh": { + "total_time_in_millis": 8259 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 823156 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1435, + "index_total": 1687, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9874157 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8259 + }, + "request_cache": { + "memory_size_in_bytes": 12232 + }, + "search": { + "query_time_in_millis": 321, + "query_total": 121 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 45440, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 89637, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2248, + "stored_fields_memory_in_bytes": 2552, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39397, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 823156 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13071 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 66 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 592036, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 153 + }, + "store": { + "size_in_bytes": 13071 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 87 + }, + "indexing": { + "index_time_in_millis": 54, + "index_total": 19, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 212005 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 54, + "index_total": 19, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 56 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 2164, + "fixed_bit_set_memory_in_bytes": 1296, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 55800, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 635, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 50193, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 212005 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 190, + "index_total": 61, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41106 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 190, + "index_total": 61, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 643156, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 153 + }, + "store": { + "size_in_bytes": 41106 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Du510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 64 + }, + "indexing": { + "index_time_in_millis": 145, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 251083 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 145, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3812, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 2982364, + "memory_in_bytes": 82758, + "norms_memory_in_bytes": 6784, + "points_memory_in_bytes": 77, + "stored_fields_memory_in_bytes": 1568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 70517, + "version_map_memory_in_bytes": 229 + }, + "store": { + "size_in_bytes": 251083 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200412815360 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1275 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2036 + }, + "index_total": { + "count": 1912 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 16902 + } + }, + "search": { + "query_time": { + "ms": 750 + }, + "query_total": { + "count": 517 + } + }, + "segments": { + "count": 38, + "doc_values": { + "memory": { + "bytes": 55160 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1536 + } + }, + "index_writer": { + "memory": { + "bytes": 4388908 + } + }, + "memory": { + "bytes": 273611 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 3115 + } + }, + "stored_fields": { + "memory": { + "bytes": 11920 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 194968 + } + }, + "version_map": { + "memory": { + "bytes": 13748 + } + } + }, + "store": { + "size": { + "bytes": 1625381 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 54, + "ms": 659 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 106947352, + "pct": 17 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.08056640625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 4 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.506Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 65, + "time": { + "ms": 481 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 104 + } + }, + "search": { + "query": { + "count": 229, + "time": { + "ms": 147 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Du510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kgDoD2JbWKWS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MwZ3u6m5d749", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UPKsjPAhohYl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N7soPXVPE5oY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VJn85NE3CFS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "te95oK4n9xUh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Kw18US1v0it3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iCqyu9G9xYdA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OfqUOrztv41M", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dcfzu2WH0aKt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gCkXRkBAtlHF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LYwXcQb6uBGj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oPZ43AlRq0lu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qRgWww4VKU6G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eHaxcjMauMs1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lKD5PluutFhM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2e33gbu4njpF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "36U6mJFbD8tr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "M-d3_UVOQ5OoSAyhnRmPqw" + }, + "stats": { + "state": { + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 110, + "query_total": 116 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Du510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 46 + }, + "indexing": { + "index_time_in_millis": 321, + "index_total": 36, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1198589 + }, + "refresh": { + "total_time_in_millis": 2711 + }, + "segments": { + "count": 18 + }, + "store": { + "size_in_bytes": 1273697 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 516, + "index_total": 54, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1779826 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 4331 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 31, + "doc_values_memory_in_bytes": 42268, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1077204, + "norms_memory_in_bytes": 114688, + "points_memory_in_bytes": 2249, + "stored_fields_memory_in_bytes": 9672, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 908327, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1965229 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 37, + "query_total": 113 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Du510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.534Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200412975104 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 58 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 489 + }, + "index_total": { + "count": 56 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 7591 + } + }, + "search": { + "query_time": { + "ms": 89 + }, + "query_total": { + "count": 176 + } + }, + "segments": { + "count": 25, + "doc_values": { + "memory": { + "bytes": 21156 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 498759 + }, + "norms": { + "memory": { + "bytes": 51584 + } + }, + "points": { + "memory": { + "bytes": 1034 + } + }, + "stored_fields": { + "memory": { + "bytes": 7800 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 417185 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 900879 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 24, + "ms": 449 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 210990536, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.08056640625 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.500Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 62, + "time": { + "ms": 472 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 101 + } + }, + "search": { + "query": { + "count": 217, + "time": { + "ms": 142 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sjpnRMVqkqiy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxbh2tcGMJul", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XLPKCiqMSmZf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fv3RRZDvGuh2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XDh4dm1LhNXT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NaKWVFFnD0sA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Gez5dlCfZIzj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ooxXJyErlvOf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9QRT11IJYKWf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JWQocO5mp7OO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Dd8VkTJduRWD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "feRYH9Jqf9W5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:_na:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:_na:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:_na:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "thZolFNRRLC2wXFa_W39rQ:_na:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.505Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "thZolFNRRLC2wXFa_W39rQ" + }, + "stats": { + "state": { + "state_uuid": "thZolFNRRLC2wXFa_W39rQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 108, + "query_total": 112 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67670 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Du510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 45 + }, + "indexing": { + "index_time_in_millis": 316, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1198589 + }, + "refresh": { + "total_time_in_millis": 2688 + }, + "segments": { + "count": 17 + }, + "store": { + "size_in_bytes": 1233764 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 511, + "index_total": 53, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1779826 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 4097 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 26, + "doc_values_memory_in_bytes": 32912, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 883351, + "norms_memory_in_bytes": 94016, + "points_memory_in_bytes": 1853, + "stored_fields_memory_in_bytes": 8112, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 746458, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2239514 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Du510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 34, + "query_total": 105 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413954048 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 40 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 487 + }, + "index_total": { + "count": 55 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6115 + } + }, + "search": { + "query_time": { + "ms": 86 + }, + "query_total": { + "count": 167 + } + }, + "segments": { + "count": 21, + "doc_values": { + "memory": { + "bytes": 15924 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 381705 + }, + "norms": { + "memory": { + "bytes": 39168 + } + }, + "points": { + "memory": { + "bytes": 803 + } + }, + "stored_fields": { + "memory": { + "bytes": 6552 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 319258 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 843037 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 23, + "ms": 442 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 208030992, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.65576171875 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.506Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 58, + "time": { + "ms": 460 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 96 + } + }, + "search": { + "query": { + "count": 205, + "time": { + "ms": 139 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s0saLQrbRG9i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qu4MuPtb9yMB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x6DKNnBQg8G2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VVEG1QwKsEx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XIDfRreCNlQX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rv2uyVaeNLSr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pc6wRmAnhIAs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iHCm04mfeEPE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDJ27ktlMYh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aPFJqgthgSYQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:_na:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:_na:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:_na:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zD_dLFvBTNGxAkbchkwXdw:_na:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "zD_dLFvBTNGxAkbchkwXdw" + }, + "stats": { + "state": { + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 763 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1605 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 108, + "query_total": 108 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 67148 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 43 + }, + "indexing": { + "index_time_in_millis": 308, + "index_total": 33, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 617352 + }, + "refresh": { + "total_time_in_millis": 2504 + }, + "segments": { + "count": 24 + }, + "store": { + "size_in_bytes": 1568790 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 498, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 617352 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3778 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 41, + "doc_values_memory_in_bytes": 42564, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1298677, + "norms_memory_in_bytes": 137728, + "points_memory_in_bytes": 2673, + "stored_fields_memory_in_bytes": 12792, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1102920, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 2574540 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "request_cache": { + "memory_size_in_bytes": 2921 + }, + "search": { + "query_time_in_millis": 31, + "query_total": 97 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4038 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.528Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413605888 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 38 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 480 + }, + "index_total": { + "count": 53 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 82 + }, + "query_total": { + "count": 157 + } + }, + "segments": { + "count": 28, + "doc_values": { + "memory": { + "bytes": 20784 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 597182 + }, + "norms": { + "memory": { + "bytes": 61888 + } + }, + "points": { + "memory": { + "bytes": 1223 + } + }, + "stored_fields": { + "memory": { + "bytes": 8736 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 504551 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1207191 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 22, + "ms": 433 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 128763176, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.548828125 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Du510BY87G63mlSnuF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:39.838Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411865088 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 62 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 430 + }, + "index_total": { + "count": 63 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6125 + } + }, + "search": { + "query_time": { + "ms": 62 + }, + "query_total": { + "count": 60 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 27640 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 11970608 + } + }, + "memory": { + "bytes": 753795 + }, + "norms": { + "memory": { + "bytes": 78464 + } + }, + "points": { + "memory": { + "bytes": 1533 + } + }, + "stored_fields": { + "memory": { + "bytes": 10608 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 635550 + } + }, + "version_map": { + "memory": { + "bytes": 260 + } + } + }, + "store": { + "size": { + "bytes": 1381540 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 25, + "ms": 452 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 206122344, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.67333984375 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDu510BY87G63mlSnuc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:39.857Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 88, + "query_total": 144 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDu510BY87G63mlSnuc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:39.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 144, + "time": { + "ms": 88 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDu510BY87G63mlSnuc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:39.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Du510BY87G63mlSnuc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:39.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411865088 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 88 + }, + "query_total": { + "count": 144 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 167075048, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.67333984375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Du510BY87G63mlI3tv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:29.833Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413347840 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 45 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 359 + }, + "index_total": { + "count": 56 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 3811 + } + }, + "search": { + "query_time": { + "ms": 58 + }, + "query_total": { + "count": 54 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 19028 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 558750 + }, + "norms": { + "memory": { + "bytes": 57920 + } + }, + "points": { + "memory": { + "bytes": 1103 + } + }, + "stored_fields": { + "memory": { + "bytes": 8424 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 472275 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1115107 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 22, + "ms": 413 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 193440400, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.52294921875 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDu510BY87G63mlI3uN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:29.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 87, + "query_total": 140 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDu510BY87G63mlI3uN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:29.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 140, + "time": { + "ms": 87 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDu510BY87G63mlI3uN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:29.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Du510BY87G63mlI3uN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:29.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413343744 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 87 + }, + "query_total": { + "count": 140 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 165493688, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.52294921875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDt510BY87G63ml_HtY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:19.829Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414076928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 43 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 352 + }, + "index_total": { + "count": 54 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 57 + }, + "query_total": { + "count": 52 + } + }, + "segments": { + "count": 25, + "doc_values": { + "memory": { + "bytes": 18620 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 535147 + }, + "norms": { + "memory": { + "bytes": 55552 + } + }, + "points": { + "memory": { + "bytes": 1070 + } + }, + "stored_fields": { + "memory": { + "bytes": 7800 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 452105 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1445919 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 22, + "ms": 413 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 130467200, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.10400390625 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDt510BY87G63ml_Htx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:19.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33575 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 452 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 86, + "query_total": 136 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33575 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dt510BY87G63ml_Htx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:19.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 136, + "time": { + "ms": 86 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDt510BY87G63ml_Htx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:19.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDt510BY87G63ml_Htx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:19.847Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200414076928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 86 + }, + "query_total": { + "count": 136 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 33575 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 163477000, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.10400390625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.509Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1774, + "time": { + "ms": 1969 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1774 + } + }, + "search": { + "query": { + "count": 496, + "time": { + "ms": 727 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y8XyeRNphuG0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w5lMhvLClMfX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "au53YYBXOWdV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FBDrzGnnGTbd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1zYqh0Sw9pZ3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CYESn5eiJH7J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FPuT5ZmBlhBz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.510Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 89, + "query_total": 160 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 169787, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 12358 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 21 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 21, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 960 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 24839 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 43, + "index_total": 21, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 960 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 180, + "query_total": 100 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2180, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 6226, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 41, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 24839 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 987 + }, + "indexing": { + "index_time_in_millis": 1387, + "index_total": 1561, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9874157 + }, + "refresh": { + "total_time_in_millis": 8099 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 639135 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1387, + "index_total": 1561, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9874157 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8099 + }, + "request_cache": { + "memory_size_in_bytes": 59240 + }, + "search": { + "query_time_in_millis": 301, + "query_total": 114 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 36912, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 48115, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 652, + "stored_fields_memory_in_bytes": 680, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9871, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 639135 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13071 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 65 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13071 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 77 + }, + "indexing": { + "index_time_in_millis": 50, + "index_total": 17, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 739 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 186753 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 50, + "index_total": 17, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 739 + }, + "request_cache": { + "memory_size_in_bytes": 2266 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 56 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 2028, + "fixed_bit_set_memory_in_bytes": 1008, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 43896, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 495, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 186753 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41106 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41106 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 64 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 251083 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3812, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 82758, + "norms_memory_in_bytes": 6784, + "points_memory_in_bytes": 77, + "stored_fields_memory_in_bytes": 1568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 70517, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 251083 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.520Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413286400 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1169 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1969 + }, + "index_total": { + "count": 1774 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 64807 + } + }, + "search": { + "query_time": { + "ms": 728 + }, + "query_total": { + "count": 500 + } + }, + "segments": { + "count": 28, + "doc_values": { + "memory": { + "bytes": 46360 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1248 + } + }, + "index_writer": { + "memory": { + "bytes": 169787 + } + }, + "memory": { + "bytes": 211961 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 1301 + } + }, + "stored_fields": { + "memory": { + "bytes": 8800 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 147052 + } + }, + "version_map": { + "memory": { + "bytes": 12358 + } + } + }, + "store": { + "size": { + "bytes": 1189758 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 51, + "ms": 639 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231934808, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.548828125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.499Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 1837, + "time": { + "ms": 2000 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 1837 + } + }, + "search": { + "query": { + "count": 503, + "time": { + "ms": 738 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Du510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f8u9VQ29uy5s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "czDcggaeo6G1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1bq0BMDJWUv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UoGqd3MGwgaD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CwSMxgIVfR3Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nkk3f0QKOz4m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CWRQi9kusmq8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.500Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 33574 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 472 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 90, + "query_total": 164 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33574 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 169787, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 12358 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 22 + }, + "indexing": { + "index_time_in_millis": 45, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 970 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 24839 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 45, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 970 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 180, + "query_total": 100 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2248, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 10338, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 80, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7386, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 24839 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Du510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1032 + }, + "indexing": { + "index_time_in_millis": 1414, + "index_total": 1622, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9874157 + }, + "refresh": { + "total_time_in_millis": 8199 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 639135 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1414, + "index_total": 1622, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9874157 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8199 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 311, + "query_total": 117 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 41212, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 68912, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1450, + "stored_fields_memory_in_bytes": 1616, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 24634, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 639135 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13071 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 7, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 434 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 21, + "query_total": 65 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4756, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13071 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 82 + }, + "indexing": { + "index_time_in_millis": 52, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "refresh": { + "total_time_in_millis": 750 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 186753 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 52, + "index_total": 18, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 240114 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 750 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 56 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 2096, + "fixed_bit_set_memory_in_bytes": 1152, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 49848, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 565, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 44691, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 186753 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41106 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 188, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2519 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41106 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Du510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.501Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 64 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 251083 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 142, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1414 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3812, + "fixed_bit_set_memory_in_bytes": 240, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 82758, + "norms_memory_in_bytes": 6784, + "points_memory_in_bytes": 77, + "stored_fields_memory_in_bytes": 1568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 70517, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 251083 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.506Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200413958144 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1220 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2000 + }, + "index_total": { + "count": 1837 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 738 + }, + "query_total": { + "count": 507 + } + }, + "segments": { + "count": 33, + "doc_values": { + "memory": { + "bytes": 50796 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1392 + } + }, + "index_writer": { + "memory": { + "bytes": 169787 + } + }, + "memory": { + "bytes": 242822 + }, + "norms": { + "memory": { + "bytes": 8448 + } + }, + "points": { + "memory": { + "bytes": 2208 + } + }, + "stored_fields": { + "memory": { + "bytes": 10360 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 171010 + } + }, + "version_map": { + "memory": { + "bytes": 12358 + } + } + }, + "store": { + "size": { + "bytes": 1399031 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 52, + "ms": 646 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 247871832, + "pct": 39 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.65576171875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 82, + "time": { + "ms": 565 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 132 + } + }, + "search": { + "query": { + "count": 265, + "time": { + "ms": 159 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwBwC94flO8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Yh8bJU1yXgnQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ODBEHBmjDF7O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0BQh8JYNF5Qd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3dOmvyHlnCeZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4a97Gzlqhx1J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RUWBl5AUEZpa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uMbC1aJdFgNT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IJtkl3theeAV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ge0ShHi4DPCd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Hhb6bx6h3Qy6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rYCp0mbo8YGX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Kj9CJ17htgx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fiBo2lXAlsF2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HIdlZO4gyiku", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "le86UljqAGnD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7lwqNiF1yJU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCcDTlSpXlNo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WTXILXTJ8ejO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xYa745c1ISCu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t0Lm5WkNO9f0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CfyVB3wyo5Eq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OMCCb7KJLSxN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cT0aM9s00rNu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVwf5ryYSlqU4T8g0XGyJw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "sVwf5ryYSlqU4T8g0XGyJw" + }, + "stats": { + "state": { + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 57 + }, + "indexing": { + "index_time_in_millis": 389, + "index_total": 47, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1198589 + }, + "refresh": { + "total_time_in_millis": 3387 + }, + "segments": { + "count": 29 + }, + "store": { + "size_in_bytes": 1896445 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 687, + "index_total": 76, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1779826 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5789 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 53, + "doc_values_memory_in_bytes": 65796, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1797892, + "norms_memory_in_bytes": 191104, + "points_memory_in_bytes": 3761, + "stored_fields_memory_in_bytes": 16536, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1520695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3581380 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Du510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Du510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 116, + "query_total": 128 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Du510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 43, + "query_total": 137 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Du510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.553Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410419200 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 72 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 563 + }, + "index_total": { + "count": 70 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 93 + }, + "query_total": { + "count": 195 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 33124 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 863330 + }, + "norms": { + "memory": { + "bytes": 89984 + } + }, + "points": { + "memory": { + "bytes": 1793 + } + }, + "stored_fields": { + "memory": { + "bytes": 12168 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 726261 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1821603 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 30, + "ms": 503 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 133477376, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.47509765625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.513Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 78, + "time": { + "ms": 547 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 126 + } + }, + "search": { + "query": { + "count": 253, + "time": { + "ms": 155 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YApr3qjUPVsn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VnGXCNKUgVR6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aprozJLbPzBr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k5TSWuZu07Mj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YjfSKonjGELz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFmBPKRWuWTz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u4nXFdr44Lrd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cANui37bVjNc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W8Zzqe5qLyej", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6rXnwavhkuZW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NSsboDIoCYoH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OhtuzGqW9Iqw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gaDXkHXPoo0J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zuJjGm6qTauH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L6fH9HJCsjDk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r6cBoVDaqXVr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Qq5rLm1v9Xb9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0v3H9pvdw8rY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zfGJWAYL8kfa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jmAcDAyKterW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VfWKiQwOjWwF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KUUYjvTmczKj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lugkBL1Q4-a53TwxKhNXw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.517Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "2lugkBL1Q4-a53TwxKhNXw" + }, + "stats": { + "state": { + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 7005 + }, + "search": { + "query_time_in_millis": 114, + "query_total": 124 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Du510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 55 + }, + "indexing": { + "index_time_in_millis": 376, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1198589 + }, + "refresh": { + "total_time_in_millis": 3308 + }, + "segments": { + "count": 27 + }, + "store": { + "size_in_bytes": 1832103 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 662, + "index_total": 72, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1779826 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5641 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 49, + "doc_values_memory_in_bytes": 61172, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1658754, + "norms_memory_in_bytes": 176256, + "points_memory_in_bytes": 3469, + "stored_fields_memory_in_bytes": 15288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1402569, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3452696 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Du510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5109 + }, + "search": { + "query_time_in_millis": 41, + "query_total": 129 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Du510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Du510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.542Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411377664 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 69 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 549 + }, + "index_total": { + "count": 67 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 92 + }, + "query_total": { + "count": 189 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 30744 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 792352 + }, + "norms": { + "memory": { + "bytes": 82496 + } + }, + "points": { + "memory": { + "bytes": 1646 + } + }, + "stored_fields": { + "memory": { + "bytes": 11232 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 666234 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1683872 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 29, + "ms": 497 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 113649352, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.77099609375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 76, + "time": { + "ms": 540 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 124 + } + }, + "search": { + "query": { + "count": 241, + "time": { + "ms": 152 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Du510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ffWwTAh2IAcV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFr337gcBNK0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pmcTbb7qhfHo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z0kRpqy48TiT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jdQS7ur8zwcG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a4LQ6x1IfbS4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlFpHTTE5q7Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1Xr3RTIEi1PJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vEBVIT18hOFv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "srLgKAALISAw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dY3NDyRhI24o", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TNFOenBSYcM9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LOwxZdFo8PwV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "io120ukJvfn2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e8YK3K3NH0Fu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HUO9pHUZ5Y7x", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LKhqSt7V8hjB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CdBUXOM5GUSe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d9mm2P2d7bHi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xDS5E9cLsHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.518Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dClTPeMpS1SlHER7ECbYmA:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dClTPeMpS1SlHER7ECbYmA" + }, + "stats": { + "state": { + "state_uuid": "dClTPeMpS1SlHER7ECbYmA" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 9340 + }, + "search": { + "query_time_in_millis": 113, + "query_total": 120 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Du510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 55 + }, + "indexing": { + "index_time_in_millis": 376, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1198589 + }, + "refresh": { + "total_time_in_millis": 3308 + }, + "segments": { + "count": 27 + }, + "store": { + "size_in_bytes": 1768676 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 662, + "index_total": 72, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1779826 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5641 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 49, + "doc_values_memory_in_bytes": 61172, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1658754, + "norms_memory_in_bytes": 176256, + "points_memory_in_bytes": 3469, + "stored_fields_memory_in_bytes": 15288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1402569, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3061315 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 4376 + }, + "search": { + "query_time_in_millis": 39, + "query_total": 121 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Du510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Du510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411815936 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 68 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 547 + }, + "index_total": { + "count": 66 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 7591 + } + }, + "search": { + "query_time": { + "ms": 90 + }, + "query_total": { + "count": 183 + } + }, + "segments": { + "count": 35, + "doc_values": { + "memory": { + "bytes": 30676 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 790943 + }, + "norms": { + "memory": { + "bytes": 82432 + } + }, + "points": { + "memory": { + "bytes": 1645 + } + }, + "stored_fields": { + "memory": { + "bytes": 10920 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 665270 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1680180 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 28, + "ms": 491 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 272494072, + "pct": 43 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.099609375 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.518Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2161, + "time": { + "ms": 2187 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2161 + } + }, + "search": { + "query": { + "count": 565, + "time": { + "ms": 791 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Du510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i7vDwFK6GIj4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hRNzgVwgFA1y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w4v6AWA8NY3p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ioQoPRj8oAC7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h0nOyBQtlaDU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ast9KAWbbVJs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yjflnTsk6jAL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.519Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 92, + "query_total": 180 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 175711, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 14708 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 26 + }, + "indexing": { + "index_time_in_millis": 52, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1063 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 85437 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 52, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1063 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 188, + "query_total": 113 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 2520, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 26786, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 236, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 85437 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Du510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1252 + }, + "indexing": { + "index_time_in_millis": 1543, + "index_total": 1906, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 11003893 + }, + "refresh": { + "total_time_in_millis": 8468 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1083564 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1543, + "index_total": 1906, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 11003893 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8468 + }, + "request_cache": { + "memory_size_in_bytes": 50909 + }, + "search": { + "query_time_in_millis": 349, + "query_total": 137 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 49784, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 94071, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2271, + "stored_fields_memory_in_bytes": 2560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39456, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1083564 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 23, + "query_total": 75 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 68, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 809 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 91947 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 68, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 809 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 125, + "query_total": 59 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 2772, + "fixed_bit_set_memory_in_bytes": 456, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 21104, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 215, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17181, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 91947 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40633 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40633 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Du510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 78 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 117898, + "norms_memory_in_bytes": 9600, + "points_memory_in_bytes": 109, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 100433, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409849856 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1478 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2187 + }, + "index_total": { + "count": 2161 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 55579 + } + }, + "search": { + "query_time": { + "ms": 792 + }, + "query_total": { + "count": 569 + } + }, + "segments": { + "count": 37, + "doc_values": { + "memory": { + "bytes": 62068 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 792 + } + }, + "index_writer": { + "memory": { + "bytes": 175711 + } + }, + "memory": { + "bytes": 290827 + }, + "norms": { + "memory": { + "bytes": 11264 + } + }, + "points": { + "memory": { + "bytes": 2869 + } + }, + "stored_fields": { + "memory": { + "bytes": 11616 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 203010 + } + }, + "version_map": { + "memory": { + "bytes": 14708 + } + } + }, + "store": { + "size": { + "bytes": 1688171 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 59, + "ms": 718 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 96896232, + "pct": 15 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.91748046875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Du510BY87G63mlv3vA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:09.848Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410800128 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 75 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 486 + }, + "index_total": { + "count": 74 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 7591 + } + }, + "search": { + "query_time": { + "ms": 67 + }, + "query_total": { + "count": 78 + } + }, + "segments": { + "count": 38, + "doc_values": { + "memory": { + "bytes": 29200 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 789059 + }, + "norms": { + "memory": { + "bytes": 81792 + } + }, + "points": { + "memory": { + "bytes": 1579 + } + }, + "stored_fields": { + "memory": { + "bytes": 11856 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 664632 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1950163 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 30, + "ms": 510 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239298272, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.603515625 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDu510BY87G63mlv3vP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:09.859Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 90, + "query_total": 156 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDu510BY87G63mlv3vP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:09.859Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 156, + "time": { + "ms": 90 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDu510BY87G63mlv3vP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:09.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Du510BY87G63mlv3vP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:09.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410796032 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 90 + }, + "query_total": { + "count": 156 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 169877976, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.603515625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDu510BY87G63mlcXuc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:49.843Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411529216 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 68 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 456 + }, + "index_total": { + "count": 67 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6858 + } + }, + "search": { + "query_time": { + "ms": 64 + }, + "query_total": { + "count": 66 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 32536 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 909927 + }, + "norms": { + "memory": { + "bytes": 94848 + } + }, + "points": { + "memory": { + "bytes": 1850 + } + }, + "stored_fields": { + "memory": { + "bytes": 12480 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 768213 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1878437 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 27, + "ms": 472 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231911120, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.77099609375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDu510BY87G63mlcXu1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:49.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 89, + "query_total": 148 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Du510BY87G63mlcXu1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:49.859Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 148, + "time": { + "ms": 89 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDu510BY87G63mlcXu1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:49.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDu510BY87G63mlcXu1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:49.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411525120 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 89 + }, + "query_total": { + "count": 148 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 168101320, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.77099609375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDu510BY87G63mlmHuz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:59.847Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410742784 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 70 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 467 + }, + "index_total": { + "count": 69 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 7591 + } + }, + "search": { + "query_time": { + "ms": 66 + }, + "query_total": { + "count": 72 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 33760 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 944688 + }, + "norms": { + "memory": { + "bytes": 98432 + } + }, + "points": { + "memory": { + "bytes": 1923 + } + }, + "stored_fields": { + "memory": { + "bytes": 13104 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 797469 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1946471 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 28, + "ms": 480 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 154486848, + "pct": 24 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.47509765625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDu510BY87G63mlmHvA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:59.858Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 90, + "query_total": 152 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Du510BY87G63mlmHvA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:59.859Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 152, + "time": { + "ms": 90 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDu510BY87G63mlmHvA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:59.859Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDu510BY87G63mlmHvA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:59.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410742784 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 90 + }, + "query_total": { + "count": 152 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 168862432, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.47509765625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2082, + "time": { + "ms": 2135 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2082 + } + }, + "search": { + "query": { + "count": 554, + "time": { + "ms": 776 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FrTsftslHBRp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P94aohV3lbIg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xsNx3fi4MrV0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wtmmgfhm8Y1v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qRA9TXd5tNHX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g8eBvlNecC4i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OIbKXkmhNao1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.512Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 92, + "query_total": 176 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Du510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 175711, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 14708 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 25 + }, + "indexing": { + "index_time_in_millis": 50, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1053 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 70288 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 50, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1053 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 184, + "query_total": 112 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2452, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 22674, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 197, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 18465, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 70288 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1191 + }, + "indexing": { + "index_time_in_millis": 1495, + "index_total": 1829, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 11003893 + }, + "refresh": { + "total_time_in_millis": 8392 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 704906 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1495, + "index_total": 1829, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 11003893 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8392 + }, + "request_cache": { + "memory_size_in_bytes": 37312 + }, + "search": { + "query_time_in_millis": 338, + "query_total": 132 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 45260, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 72998, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1473, + "stored_fields_memory_in_bytes": 1624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 24641, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 704906 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 23, + "query_total": 75 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Du510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 97 + }, + "indexing": { + "index_time_in_millis": 66, + "index_total": 21, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 797 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 41439 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 66, + "index_total": 21, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 797 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 125, + "query_total": 58 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2704, + "fixed_bit_set_memory_in_bytes": 312, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 15152, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 145, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11679, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41439 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40633 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40633 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.513Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 78 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 117898, + "norms_memory_in_bytes": 9600, + "points_memory_in_bytes": 109, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 100433, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Du510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.517Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411238400 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1411 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2135 + }, + "index_total": { + "count": 2082 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 41982 + } + }, + "search": { + "query_time": { + "ms": 776 + }, + "query_total": { + "count": 558 + } + }, + "segments": { + "count": 32, + "doc_values": { + "memory": { + "bytes": 57408 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 648 + } + }, + "index_writer": { + "memory": { + "bytes": 175711 + } + }, + "memory": { + "bytes": 259690 + }, + "norms": { + "memory": { + "bytes": 11264 + } + }, + "points": { + "memory": { + "bytes": 1962 + } + }, + "stored_fields": { + "memory": { + "bytes": 10056 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 179000 + } + }, + "version_map": { + "memory": { + "bytes": 14708 + } + } + }, + "store": { + "size": { + "bytes": 1457653 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 57, + "ms": 682 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239268240, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.4296875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.520Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2007, + "time": { + "ms": 2103 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2007 + } + }, + "search": { + "query": { + "count": 547, + "time": { + "ms": 767 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M8J94927T0sN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nfh3bRHvfpGt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yEJYgSqyC12Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fJvB7ilwJ13w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ACTSUKqtwOle", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f53upPIU3ea6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlbWNAH9qlPa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.521Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 91, + "query_total": 172 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Du510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 175711, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 14708 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 24 + }, + "indexing": { + "index_time_in_millis": 49, + "index_total": 24, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1044 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 70288 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 49, + "index_total": 24, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 184, + "query_total": 112 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2384, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18562, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 158, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14772, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 70288 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1134 + }, + "indexing": { + "index_time_in_millis": 1466, + "index_total": 1756, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 11003893 + }, + "refresh": { + "total_time_in_millis": 8345 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 704906 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1466, + "index_total": 1756, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 11003893 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8345 + }, + "request_cache": { + "memory_size_in_bytes": 24640 + }, + "search": { + "query_time_in_millis": 330, + "query_total": 129 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 40896, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 52137, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 675, + "stored_fields_memory_in_bytes": 688, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9878, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 704906 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 23, + "query_total": 75 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Du510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 92 + }, + "indexing": { + "index_time_in_millis": 64, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 786 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 41439 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 64, + "index_total": 20, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 786 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 125, + "query_total": 58 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2636, + "fixed_bit_set_memory_in_bytes": 168, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 9200, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 75, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6177, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41439 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40633 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40633 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.523Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 78 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 117898, + "norms_memory_in_bytes": 9600, + "points_memory_in_bytes": 109, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 100433, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Du510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.530Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411684864 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1348 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2103 + }, + "index_total": { + "count": 2007 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 29310 + } + }, + "search": { + "query_time": { + "ms": 768 + }, + "query_total": { + "count": 551 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 52908 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 504 + } + }, + "index_writer": { + "memory": { + "bytes": 175711 + } + }, + "memory": { + "bytes": 228765 + }, + "norms": { + "memory": { + "bytes": 11264 + } + }, + "points": { + "memory": { + "bytes": 1055 + } + }, + "stored_fields": { + "memory": { + "bytes": 8496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 155042 + } + }, + "version_map": { + "memory": { + "bytes": 14708 + } + } + }, + "store": { + "size": { + "bytes": 1243856 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 56, + "ms": 676 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 220753936, + "pct": 35 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.099609375 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDv510BY87G63mlGHyh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 91, + "time": { + "ms": 596 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 144 + } + }, + "search": { + "query": { + "count": 301, + "time": { + "ms": 166 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDv510BY87G63mlGHyh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bH4ea4Z6Pted", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlXvILsWGue3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UCL0tO5mEfnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wu6b074ePWp2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XwgiQxLw4NbX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1Q0pf2DTHCAR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kTgAcMwb6E5W", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uoOmQIma1mAg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EWFnA2WZzVmN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Rv8qTFB8I7ms", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nyLcZJS8x7G6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ieir4pUTHzUw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k84zr6GnQBoD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WwGJqLIRipfr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3Z5U5BRkmCOY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1tfktPTCNojy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WIrWRwhtmkUo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Oq95C02DmVTR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xRdoY5Ytr69C", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "44ovkL9TcoDs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eKN295gcMH50", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FBnPVtYIHHDM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0jhKDVASyHQO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVOexUthFCIM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ug75FV43MCUn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mQlPj1Q4nSBI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sGicZ5etbxia", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xRMu7LuPvpN2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C0qt8vWRrgat", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0ipFQc779qbd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "mLFKlhtFQ6-Bsx6JEZEHpg" + }, + "stats": { + "state": { + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 60 + }, + "indexing": { + "index_time_in_millis": 404, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1814670 + }, + "refresh": { + "total_time_in_millis": 3685 + }, + "segments": { + "count": 23 + }, + "store": { + "size_in_bytes": 1635859 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 717, + "index_total": 82, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3011988 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6335 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 41, + "doc_values_memory_in_bytes": 54228, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1411382, + "norms_memory_in_bytes": 149888, + "points_memory_in_bytes": 2923, + "stored_fields_memory_in_bytes": 12792, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1191551, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3060208 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 119, + "query_total": 140 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 47, + "query_total": 161 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 208112, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.585Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410431488 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 77 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 588 + }, + "index_total": { + "count": 76 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 97 + }, + "query_total": { + "count": 213 + } + }, + "segments": { + "count": 35, + "doc_values": { + "memory": { + "bytes": 27476 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 208112 + } + }, + "memory": { + "bytes": 672893 + }, + "norms": { + "memory": { + "bytes": 69504 + } + }, + "points": { + "memory": { + "bytes": 1376 + } + }, + "stored_fields": { + "memory": { + "bytes": 10920 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 563617 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 1498901 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 32, + "ms": 523 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 182470504, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.82958984375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.525Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 89, + "time": { + "ms": 588 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 142 + } + }, + "search": { + "query": { + "count": 289, + "time": { + "ms": 162 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Du510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XfwjK07rLVRP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xKgratXW4URR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3EbUvQKOTHZa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yjiwuzoiIxkC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9l63UHUjqsaE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QQogXPZFvhyA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QuwTHL3yFnxl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mWBMAYZV1UY5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p8pWuLbqIqxC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xbuGwbLKXk4t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FHUNaBPshVlb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aBJztiD88yM6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9j7BuvohaHhQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Val3LV4WTiOz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LbIiCwg9FuYa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WOnW2OF8PngA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AqzHjFOkhP5i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PoPKho3l1ypE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T3MALx00nH4Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pnnDQsg1ckvF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YnHhOYHVjIQe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BdBC08aSj9vr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r7WxtAOJ3mig", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TqfZnsw4cCDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7iJPho5sBZeS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CDYB7g3VzMgJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "me2dh9HI6SH4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T8CJMZtZqMyv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.529Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "n7BMG_ofQTq0_2jLj3Ed8Q" + }, + "stats": { + "state": { + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 60 + }, + "indexing": { + "index_time_in_millis": 404, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1814670 + }, + "refresh": { + "total_time_in_millis": 3685 + }, + "segments": { + "count": 23 + }, + "store": { + "size_in_bytes": 1635859 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 717, + "index_total": 82, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3011988 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6335 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 41, + "doc_values_memory_in_bytes": 54228, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1411382, + "norms_memory_in_bytes": 149888, + "points_memory_in_bytes": 2923, + "stored_fields_memory_in_bytes": 12792, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1191551, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3060208 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Du510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 116, + "query_total": 136 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Du510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Du510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 46, + "query_total": 153 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Du510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDu510BY87G63ml8Xtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDu510BY87G63ml8Xts", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Du510BY87G63ml8Xts", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410710016 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 77 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 585 + }, + "index_total": { + "count": 75 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 96 + }, + "query_total": { + "count": 206 + } + }, + "segments": { + "count": 35, + "doc_values": { + "memory": { + "bytes": 27476 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 672893 + }, + "norms": { + "memory": { + "bytes": 69504 + } + }, + "points": { + "memory": { + "bytes": 1376 + } + }, + "stored_fields": { + "memory": { + "bytes": 10920 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 563617 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1498704 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 32, + "ms": 523 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 164521608, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.83740234375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.530Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 87, + "time": { + "ms": 584 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 140 + } + }, + "search": { + "query": { + "count": 277, + "time": { + "ms": 161 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Du510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DITttD1xas7S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xcIkSiYTFFvp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1hllINqrsOHn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5KB2OVTfRBj5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WWFGMYY7OfOj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o2WAE5JqzJep", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bfCL9IjCFdEi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X6JdqpoNzSrB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0iViA1tFrmHY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cCnAlS1N32ID", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FnZnQflUKaih", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZxHH1fMCzt3N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2tTLTlLvcXz0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2CdUgz5QLHP1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "itCRkNRgQIyB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tjzVdrg5mibf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xUVL6PXQdKja", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u7cwef15NV6Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sr4vVqSXX6Ot", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l3O8G8D9JCKy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kvbvszwUaTEb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "unm4kV90nAtl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aPSu6aC1coSn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5sIk3DBZbVqT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k5xOHUeZcmOE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ebRBl0SaqcFk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qEliBHhCT2uorI5OWJrVnw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "qEliBHhCT2uorI5OWJrVnw" + }, + "stats": { + "state": { + "state_uuid": "qEliBHhCT2uorI5OWJrVnw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 60 + }, + "indexing": { + "index_time_in_millis": 404, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1814670 + }, + "refresh": { + "total_time_in_millis": 3685 + }, + "segments": { + "count": 23 + }, + "store": { + "size_in_bytes": 2075378 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 717, + "index_total": 82, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3011988 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6335 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 41, + "doc_values_memory_in_bytes": 54228, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1411382, + "norms_memory_in_bytes": 149888, + "points_memory_in_bytes": 2923, + "stored_fields_memory_in_bytes": 12792, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1191551, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3499727 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Du510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 116, + "query_total": 132 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Du510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Du510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 45, + "query_total": 145 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Du510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411217920 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 76 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 583 + }, + "index_total": { + "count": 74 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 94 + }, + "query_total": { + "count": 201 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 27408 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 671484 + }, + "norms": { + "memory": { + "bytes": 69440 + } + }, + "points": { + "memory": { + "bytes": 1375 + } + }, + "stored_fields": { + "memory": { + "bytes": 10608 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 562653 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1495012 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 32, + "ms": 523 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 147586544, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.603515625 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2425, + "time": { + "ms": 2309 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2425 + } + }, + "search": { + "query": { + "count": 589, + "time": { + "ms": 824 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f12D5UX3mwpv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GD4bwr8Px41b", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FET0g4H2HUnZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dmbd2jijvMap", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pbe6R5IH5nXk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "frdiXqaKzHdl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gRz1NB21Lw8j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 95, + "query_total": 192 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 61, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 61, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 176824, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 14657 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 29 + }, + "indexing": { + "index_time_in_millis": 58, + "index_total": 29, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1098 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 146035 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 58, + "index_total": 29, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1098 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 189, + "query_total": 114 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 2724, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 39122, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 353, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33237, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 146035 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1459 + }, + "indexing": { + "index_time_in_millis": 1646, + "index_total": 2161, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12208449 + }, + "refresh": { + "total_time_in_millis": 8635 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1180202 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1646, + "index_total": 2161, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12208449 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8635 + }, + "request_cache": { + "memory_size_in_bytes": 14552 + }, + "search": { + "query_time_in_millis": 378, + "query_total": 147 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 53832, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 98292, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2273, + "stored_fields_memory_in_bytes": 2576, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39611, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1180202 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 23, + "query_total": 76 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 117 + }, + "indexing": { + "index_time_in_millis": 76, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 858 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 167705 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 76, + "index_total": 25, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 858 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 125, + "query_total": 59 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 2976, + "fixed_bit_set_memory_in_bytes": 888, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38960, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 425, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33687, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 167705 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 204, + "index_total": 71, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40633 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 204, + "index_total": 71, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 643156, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 153 + }, + "store": { + "size_in_bytes": 40633 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 78 + }, + "indexing": { + "index_time_in_millis": 158, + "index_total": 61, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 158, + "index_total": 61, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 2138372, + "memory_in_bytes": 117898, + "norms_memory_in_bytes": 9600, + "points_memory_in_bytes": 109, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 100433, + "version_map_memory_in_bytes": 229 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.552Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410222592 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1703 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2309 + }, + "index_total": { + "count": 2425 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 16887 + } + }, + "search": { + "query_time": { + "ms": 824 + }, + "query_total": { + "count": 593 + } + }, + "segments": { + "count": 43, + "doc_values": { + "memory": { + "bytes": 66524 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1224 + } + }, + "index_writer": { + "memory": { + "bytes": 2958352 + } + }, + "memory": { + "bytes": 325240 + }, + "norms": { + "memory": { + "bytes": 11264 + } + }, + "points": { + "memory": { + "bytes": 3198 + } + }, + "stored_fields": { + "memory": { + "bytes": 13504 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 230750 + } + }, + "version_map": { + "memory": { + "bytes": 15039 + } + } + }, + "store": { + "size": { + "bytes": 1921165 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 62, + "ms": 742 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 244338192, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.5224609375 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDv510BY87G63mlNXwC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:39.860Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409620480 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 83 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 527 + }, + "index_total": { + "count": 83 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 70 + }, + "query_total": { + "count": 95 + } + }, + "segments": { + "count": 46, + "doc_values": { + "memory": { + "bytes": 34640 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 6186080 + } + }, + "memory": { + "bytes": 962363 + }, + "norms": { + "memory": { + "bytes": 99968 + } + }, + "points": { + "memory": { + "bytes": 1940 + } + }, + "stored_fields": { + "memory": { + "bytes": 14352 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 811463 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 1700653 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 33, + "ms": 536 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 174337136, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7 + } + } + }, + "process": { + "cpu": { + "pct": 8 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDv510BY87G63mlNXwZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:39.875Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 92, + "query_total": 168 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dv510BY87G63mlNXwZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:39.875Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 168, + "time": { + "ms": 92 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDv510BY87G63mlNXwZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:39.875Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDv510BY87G63mlNXwZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:39.876Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409620480 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 92 + }, + "query_total": { + "count": 168 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 173253880, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDv510BY87G63mlDXvr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:29.856Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410566656 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 77 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 493 + }, + "index_total": { + "count": 76 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 69 + }, + "query_total": { + "count": 90 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 29336 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 791877 + }, + "norms": { + "memory": { + "bytes": 81920 + } + }, + "points": { + "memory": { + "bytes": 1581 + } + }, + "stored_fields": { + "memory": { + "bytes": 12480 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 666560 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1696961 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 30, + "ms": 510 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253840256, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.82958984375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDv510BY87G63mlDXv6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:29.871Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 91, + "query_total": 164 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dv510BY87G63mlDXv6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:29.872Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 164, + "time": { + "ms": 91 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDv510BY87G63mlDXz6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:29.872Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDv510BY87G63mlDXz6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:29.872Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410562560 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 91 + }, + "query_total": { + "count": 164 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 172231640, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.82958984375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Du510BY87G63ml5nvR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:19.851Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410861568 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 76 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 488 + }, + "index_total": { + "count": 75 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 68 + }, + "query_total": { + "count": 84 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 29268 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 790468 + }, + "norms": { + "memory": { + "bytes": 81856 + } + }, + "points": { + "memory": { + "bytes": 1580 + } + }, + "stored_fields": { + "memory": { + "bytes": 12168 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 665596 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1689774 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 30, + "ms": 510 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 244319744, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.83740234375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDu510BY87G63ml5nvk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:19.864Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 91, + "query_total": 160 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDu510BY87G63ml5nvk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:19.864Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 160, + "time": { + "ms": 91 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDu510BY87G63ml5nvk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:19.865Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Du510BY87G63ml5nvk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:19.865Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410861568 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 91 + }, + "query_total": { + "count": 160 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 171092440, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.83740234375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2244, + "time": { + "ms": 2226 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2244 + } + }, + "search": { + "query": { + "count": 572, + "time": { + "ms": 802 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Du510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t8RwZGihiVYb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YZuT6xZFfQXg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6o3UtyvygMtf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "35Nq6PpjWv25", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IBTgiakdPDb1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1O1wIAL5dTTL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vAhyy9pxnA62", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.524Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 93, + "query_total": 184 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 175711, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 14708 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 27 + }, + "indexing": { + "index_time_in_millis": 54, + "index_total": 27, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1072 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 115740 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 54, + "index_total": 27, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1072 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 188, + "query_total": 113 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 2588, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 30898, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 275, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25851, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 115740 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Du510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1317 + }, + "indexing": { + "index_time_in_millis": 1577, + "index_total": 1987, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12208449 + }, + "refresh": { + "total_time_in_millis": 8524 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1083564 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1577, + "index_total": 1987, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12208449 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8524 + }, + "request_cache": { + "memory_size_in_bytes": 64773 + }, + "search": { + "query_time_in_millis": 359, + "query_total": 140 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 44784, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 56146, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 677, + "stored_fields_memory_in_bytes": 704, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9981, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1083564 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 23, + "query_total": 75 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 107 + }, + "indexing": { + "index_time_in_millis": 71, + "index_total": 23, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 823 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 91947 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 71, + "index_total": 23, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 823 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 125, + "query_total": 59 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2840, + "fixed_bit_set_memory_in_bytes": 600, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27056, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 285, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22683, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 91947 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40633 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40633 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Du510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 78 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 117898, + "norms_memory_in_bytes": 9600, + "points_memory_in_bytes": 109, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 100433, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.529Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200411021312 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1549 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2226 + }, + "index_total": { + "count": 2244 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 69443 + } + }, + "search": { + "query_time": { + "ms": 802 + }, + "query_total": { + "count": 576 + } + }, + "segments": { + "count": 33, + "doc_values": { + "memory": { + "bytes": 57204 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 936 + } + }, + "index_writer": { + "memory": { + "bytes": 175711 + } + }, + "memory": { + "bytes": 262966 + }, + "norms": { + "memory": { + "bytes": 11264 + } + }, + "points": { + "memory": { + "bytes": 1384 + } + }, + "stored_fields": { + "memory": { + "bytes": 10384 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 182730 + } + }, + "version_map": { + "memory": { + "bytes": 14708 + } + } + }, + "store": { + "size": { + "bytes": 1718474 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 60, + "ms": 727 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 185517704, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.47509765625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2331, + "time": { + "ms": 2263 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2331 + } + }, + "search": { + "query": { + "count": 579, + "time": { + "ms": 812 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Sv5wH64CjUbK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nJH5Y1VWPvwU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wm1QjgAXLEiH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WgjgcqRki1jh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U4Ee7KHhxnnF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pmLraSCSJ3Ph", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6yRWnFFRoDDg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.535Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 93, + "query_total": 188 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Du510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 175711, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 14708 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 28 + }, + "indexing": { + "index_time_in_millis": 56, + "index_total": 28, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "refresh": { + "total_time_in_millis": 1080 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 130887 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 56, + "index_total": 28, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 309167 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1080 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 188, + "query_total": 113 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 2656, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35010, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 314, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29544, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 130887 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1386 + }, + "indexing": { + "index_time_in_millis": 1609, + "index_total": 2072, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12208449 + }, + "refresh": { + "total_time_in_millis": 8590 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 985169 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1609, + "index_total": 2072, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12208449 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8590 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 369, + "query_total": 143 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 49284, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 77195, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1475, + "stored_fields_memory_in_bytes": 1640, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 24796, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 985169 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 23, + "query_total": 75 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Du510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 112 + }, + "indexing": { + "index_time_in_millis": 74, + "index_total": 24, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 845 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 142452 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 74, + "index_total": 24, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 845 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 125, + "query_total": 59 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2908, + "fixed_bit_set_memory_in_bytes": 744, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 33008, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 355, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 28185, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 142452 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40633 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 202, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2647 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40633 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 78 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 156, + "index_total": 60, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 342414 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1472 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 117898, + "norms_memory_in_bytes": 9600, + "points_memory_in_bytes": 109, + "stored_fields_memory_in_bytes": 2192, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 100433, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Du510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.543Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410542080 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1624 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2263 + }, + "index_total": { + "count": 2331 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 814 + }, + "query_total": { + "count": 583 + } + }, + "segments": { + "count": 38, + "doc_values": { + "memory": { + "bytes": 61840 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1080 + } + }, + "index_writer": { + "memory": { + "bytes": 175711 + } + }, + "memory": { + "bytes": 294079 + }, + "norms": { + "memory": { + "bytes": 11264 + } + }, + "points": { + "memory": { + "bytes": 2291 + } + }, + "stored_fields": { + "memory": { + "bytes": 11944 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 206740 + } + }, + "version_map": { + "memory": { + "bytes": 14708 + } + } + }, + "store": { + "size": { + "bytes": 1685731 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 61, + "ms": 735 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 216506368, + "pct": 34 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.25048828125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 110, + "time": { + "ms": 686 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 177 + } + }, + "search": { + "query": { + "count": 337, + "time": { + "ms": 175 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G8b0VoZ0S1Fl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1nC5Ltjpv9qP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kb6AFB6P6FQj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AdrGlWrT9i8y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fBRsNF7jvP3v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "po21mllf9h10", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VaOMLvKoZjom", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o82YNW0S386i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "isAiZeribxB7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tNcRojwAPZPP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fZQ8WEuWPJAl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7zb6WcIeX6Kk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kC4VckIhY5kR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZPdUdWdhlQo0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lWlwhiRC8Xt2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Bd498D3ndLgd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zaCA17XrgLVD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5S42JuRqKkHG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Sy6etWOhxUbb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MzZhQL5kbZ8B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qOZoRBXLjtWu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "53YM8fxdJGBe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J6o8B88NNmQX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7fguq2dnc35n", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3y1NpTt5TSjv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r4UBn7CDsu0c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4mADwlv03aCN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2yB3Or9w9rR2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IH8iblP2bzab", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C81YU8tjSPes", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vjmDdzl032kA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SNHsz4tva6GF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CYWTZWORygxL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fBbFdj4HGisq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p36E9YVGIV8n", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.544Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ra4xy4J2TcGoasEJux7sfQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Ra4xy4J2TcGoasEJux7sfQ" + }, + "stats": { + "state": { + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 53, + "query_total": 185 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 73 + }, + "indexing": { + "index_time_in_millis": 459, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 4183 + }, + "segments": { + "count": 25 + }, + "store": { + "size_in_bytes": 1994977 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 830, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3714383 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7543 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 55, + "doc_values_memory_in_bytes": 72212, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 6203072, + "memory_in_bytes": 1905294, + "norms_memory_in_bytes": 202368, + "points_memory_in_bytes": 3982, + "stored_fields_memory_in_bytes": 17160, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1609572, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 4216871 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 152 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.558Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408268800 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 94 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 652 + }, + "index_total": { + "count": 92 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 103 + }, + "query_total": { + "count": 231 + } + }, + "segments": { + "count": 50, + "doc_values": { + "memory": { + "bytes": 41368 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1087139 + }, + "norms": { + "memory": { + "bytes": 113344 + } + }, + "points": { + "memory": { + "bytes": 2247 + } + }, + "stored_fields": { + "memory": { + "bytes": 15600 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 914580 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2307325 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 38, + "ms": 582 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 235405992, + "pct": 37 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.97705078125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.531Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 101, + "time": { + "ms": 639 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 161 + } + }, + "search": { + "query": { + "count": 325, + "time": { + "ms": 173 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ItK4WvWV4oCf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ILODQwkTwVZt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VjDoopHCLxgp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "utiHQ7Nsq7Ws", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ap4xxA1tUC2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QiZOtnLWHqM2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0gZrWdQc8Ee3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVFGGS2MQYV7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ivTIy4Iru7WA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "50E1YRqtVb6e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gtAFn5OllYKM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FIkKbJWuHt5A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SQT071QGNfWG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NuNLmmixQ6eu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3uRuu300Ea9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FMhEzA2MiUOU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4EVTgc2BtjP5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DZBXaUQStJQx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kAc2nDz2LGyt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "samUGWB6MZ7c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sUJ4YSc9Ld3b", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n7vXLaxLW2U8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KezyVTAEJvWU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wabsr5wjnb6K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlrmR5hI0z6y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NtvfFiZyj100", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VWQdmdxJTpv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HbBZYx42VJ4Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SCEzCuAUs05R", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zd32egBeOCjj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "He80EJkHGkzj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MsMGPJET4rT8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oIAAlklaOT3c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.533Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_EwSdlYoT3mCvIL7LDKaqw:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.535Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "_EwSdlYoT3mCvIL7LDKaqw" + }, + "stats": { + "state": { + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 67 + }, + "indexing": { + "index_time_in_millis": 433, + "index_total": 57, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 3997 + }, + "segments": { + "count": 21 + }, + "store": { + "size_in_bytes": 1722990 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 776, + "index_total": 96, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3714383 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7046 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 46, + "doc_values_memory_in_bytes": 61088, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1596771, + "norms_memory_in_bytes": 169600, + "points_memory_in_bytes": 3326, + "stored_fields_memory_in_bytes": 14352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1348405, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3605668 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 122, + "query_total": 148 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 51, + "query_total": 177 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.557Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409702400 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 86 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 620 + }, + "index_total": { + "count": 84 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 101 + }, + "query_total": { + "count": 225 + } + }, + "segments": { + "count": 44, + "doc_values": { + "memory": { + "bytes": 35160 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 913843 + }, + "norms": { + "memory": { + "bytes": 94976 + } + }, + "points": { + "memory": { + "bytes": 1882 + } + }, + "stored_fields": { + "memory": { + "bytes": 13728 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 768097 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1964417 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 36, + "ms": 563 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 124604416, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.6923828125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.539Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 99, + "time": { + "ms": 634 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 158 + } + }, + "search": { + "query": { + "count": 313, + "time": { + "ms": 168 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "muDT7b9fXBNP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wqfycb704Eob", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g4mUeApPSqUP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cfAfIdGYC5JX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nN5i2jWXsjtf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2zBshQ3FSrvd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5ScHfRxonnjx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "inLq8sVsCPlE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mNIzFwYjbrUM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0o4lDt2zMwyE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a7icpsyddMa0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Pw2zgmT9Rldo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gorax8AbYhHx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vcrT2aqO01ML", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9izCrPKS0hTB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "86xqRBca99aV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1g2EaxlNeQa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1WuxzCRJ9wn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RUi3sJSE60RG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tc8ogdOjzAOY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lAbyA6YrHAX7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFmxpArNgAKU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFTnQKsbzeQO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GZdr9aSpCqlM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5bEZuqgWaMXd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WyjjHr9xZJyD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oh393o9KJfJs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vH3DErFqJMTD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0XPuOkyEC7on", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Edn3YbARIoko", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5GYvbBG8Oadk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pMdB4102nwEI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dxlfq4xQSwat7cNLiZaaKA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "dxlfq4xQSwat7cNLiZaaKA" + }, + "stats": { + "state": { + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 66 + }, + "indexing": { + "index_time_in_millis": 429, + "index_total": 56, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 3948 + }, + "segments": { + "count": 20 + }, + "store": { + "size_in_bytes": 1657632 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 766, + "index_total": 94, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3714383 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 6956 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 44, + "doc_values_memory_in_bytes": 58776, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1529039, + "norms_memory_in_bytes": 162432, + "points_memory_in_bytes": 3182, + "stored_fields_memory_in_bytes": 13728, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1290921, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3213062 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 208112, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 119, + "query_total": 144 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 49, + "query_total": 169 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.554Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410320896 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 84 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 616 + }, + "index_total": { + "count": 83 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 100 + }, + "query_total": { + "count": 219 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 33936 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 208112 + } + }, + "memory": { + "bytes": 878568 + }, + "norms": { + "memory": { + "bytes": 91328 + } + }, + "points": { + "memory": { + "bytes": 1809 + } + }, + "stored_fields": { + "memory": { + "bytes": 13104 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 738391 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 1633674 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 35, + "ms": 553 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 197377056, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2746, + "time": { + "ms": 2466 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2746 + } + }, + "search": { + "query": { + "count": 637, + "time": { + "ms": 861 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SaOjFqVVIlot", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "554hhE1nb4V8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VDBJBuC7EZoY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2JG4JHzTyL3v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CegrymLGkS0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F06JYvz3ZQcJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JxTafnhbKfaI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 96, + "query_total": 204 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 182003, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 17058 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 32 + }, + "indexing": { + "index_time_in_millis": 62, + "index_total": 32, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1174 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 44152 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 62, + "index_total": 32, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1174 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 193, + "query_total": 125 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 3196, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 15330, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 119, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11079, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 44152 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1698 + }, + "indexing": { + "index_time_in_millis": 1754, + "index_total": 2448, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13509748 + }, + "refresh": { + "total_time_in_millis": 8855 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1082557 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1754, + "index_total": 2448, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13509748 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8855 + }, + "request_cache": { + "memory_size_in_bytes": 59416 + }, + "search": { + "query_time_in_millis": 406, + "query_total": 161 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 57192, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 101832, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2277, + "stored_fields_memory_in_bytes": 2592, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39771, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1082557 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13341 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 85 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13341 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 132 + }, + "indexing": { + "index_time_in_millis": 95, + "index_total": 28, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 972 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 243453 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 95, + "index_total": 28, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 972 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 61 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 3180, + "fixed_bit_set_memory_in_bytes": 1320, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 56816, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 635, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 50193, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 243453 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40066 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40066 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 90 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 163644 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1764, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18600, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15059, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 163644 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.552Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407961600 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1972 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2466 + }, + "index_total": { + "count": 2746 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 61751 + } + }, + "search": { + "query_time": { + "ms": 861 + }, + "query_total": { + "count": 641 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 66760 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1376 + } + }, + "index_writer": { + "memory": { + "bytes": 182003 + } + }, + "memory": { + "bytes": 223546 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 3086 + } + }, + "stored_fields": { + "memory": { + "bytes": 10744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 139884 + } + }, + "version_map": { + "memory": { + "bytes": 17058 + } + } + }, + "store": { + "size": { + "bytes": 1835329 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 68, + "ms": 812 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 132929448, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.73828125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dv510BY87G63mlqnw7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:09.873Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407801856 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 95 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 580 + }, + "index_total": { + "count": 94 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 73 + }, + "query_total": { + "count": 114 + } + }, + "segments": { + "count": 47, + "doc_values": { + "memory": { + "bytes": 35060 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 916657 + }, + "norms": { + "memory": { + "bytes": 94848 + } + }, + "points": { + "memory": { + "bytes": 1848 + } + }, + "stored_fields": { + "memory": { + "bytes": 14664 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 770237 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2138076 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 37, + "ms": 588 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 288726200, + "pct": 45 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.9189453125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDv510BY87G63mlqnxH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:09.886Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 95, + "query_total": 180 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDv510BY87G63mlqnxH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:09.886Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 180, + "time": { + "ms": 95 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDv510BY87G63mlqnxH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:09.886Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dv510BY87G63mlqnxH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:09.887Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407801856 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 95 + }, + "query_total": { + "count": 180 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 176793848, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.9189453125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDv510BY87G63mlg3wl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:59.868Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408469504 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 93 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 573 + }, + "index_total": { + "count": 92 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 73 + }, + "query_total": { + "count": 108 + } + }, + "segments": { + "count": 45, + "doc_values": { + "memory": { + "bytes": 33836 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 879997 + }, + "norms": { + "memory": { + "bytes": 90944 + } + }, + "points": { + "memory": { + "bytes": 1775 + } + }, + "stored_fields": { + "memory": { + "bytes": 14040 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 739402 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1923671 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 37, + "ms": 588 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 191409704, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.97705078125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dv510BY87G63mlg3w0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:59.881Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 94, + "query_total": 176 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDv510BY87G63mlg3w0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:59.882Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 176, + "time": { + "ms": 94 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDv510BY87G63mlg3w0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:59.882Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDv510BY87G63mlg3w0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:59.882Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408469504 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 94 + }, + "query_total": { + "count": 176 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 175551752, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.97705078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dv510BY87G63mlXHwP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:49.864Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409812992 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 86 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 534 + }, + "index_total": { + "count": 85 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 72 + }, + "query_total": { + "count": 102 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 28784 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 741952 + }, + "norms": { + "memory": { + "bytes": 76416 + } + }, + "points": { + "memory": { + "bytes": 1482 + } + }, + "stored_fields": { + "memory": { + "bytes": 12480 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 622790 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1726118 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 35, + "ms": 553 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 171595504, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.6923828125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDv510BY87G63mlXHwf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:49.877Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 94, + "query_total": 172 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDv510BY87G63mlXHwf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:49.877Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 172, + "time": { + "ms": 94 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDv510BY87G63mlXHwf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:49.877Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dv510BY87G63mlXHwf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:49.877Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409808896 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 94 + }, + "query_total": { + "count": 172 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 174615576, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.6923828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.537Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2548, + "time": { + "ms": 2384 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2548 + } + }, + "search": { + "query": { + "count": 623, + "time": { + "ms": 845 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "utIqtNlKaYM4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8fY4fPRkOMMv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UUHoXsQyXPge", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4fJrjCv41d8B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6iACKFVfcdBx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OSCFXiD2rP8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0m7kOQtvDuBy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 95, + "query_total": 196 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 182003, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 17058 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 30 + }, + "indexing": { + "index_time_in_millis": 59, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1153 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 146035 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 59, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1153 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 193, + "query_total": 125 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 3060, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 7106, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 41, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 146035 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1536 + }, + "indexing": { + "index_time_in_millis": 1678, + "index_total": 2254, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13509748 + }, + "refresh": { + "total_time_in_millis": 8743 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 885840 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1678, + "index_total": 2254, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13509748 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8743 + }, + "request_cache": { + "memory_size_in_bytes": 29232 + }, + "search": { + "query_time_in_millis": 391, + "query_total": 155 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 48120, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 59662, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 681, + "stored_fields_memory_in_bytes": 720, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10141, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 885840 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 85 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 122 + }, + "indexing": { + "index_time_in_millis": 92, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 946 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 192949 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 92, + "index_total": 26, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 946 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 61 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 3044, + "fixed_bit_set_memory_in_bytes": 1032, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 44912, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 495, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 192949 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40066 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40066 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 90 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 338960 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1764, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18600, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15059, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 338960 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200410124288 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1798 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2384 + }, + "index_total": { + "count": 2548 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 31567 + } + }, + "search": { + "query_time": { + "ms": 846 + }, + "query_total": { + "count": 627 + } + }, + "segments": { + "count": 24, + "doc_values": { + "memory": { + "bytes": 57416 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1088 + } + }, + "index_writer": { + "memory": { + "bytes": 182003 + } + }, + "memory": { + "bytes": 161248 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 1272 + } + }, + "stored_fields": { + "memory": { + "bytes": 7624 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 91864 + } + }, + "version_map": { + "memory": { + "bytes": 17058 + } + } + }, + "store": { + "size": { + "bytes": 1359136 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 65, + "ms": 773 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 247137584, + "pct": 39 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.83984375 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2645, + "time": { + "ms": 2420 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2645 + } + }, + "search": { + "query": { + "count": 630, + "time": { + "ms": 852 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MUDpEkJTc8fQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1WDjLV2C0U3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "whdlAjGgyrRD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bGyIgHpM7Ve6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVdSakKZxSts", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlgPTgVOw1zc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UpZZk1Yf3L2w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 96, + "query_total": 200 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 182003, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 17058 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 31 + }, + "indexing": { + "index_time_in_millis": 60, + "index_total": 31, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1163 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 29005 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 60, + "index_total": 31, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1163 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 193, + "query_total": 125 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 3128, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 11218, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 80, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7386, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 29005 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1615 + }, + "indexing": { + "index_time_in_millis": 1712, + "index_total": 2349, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13509748 + }, + "refresh": { + "total_time_in_millis": 8799 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1082557 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1712, + "index_total": 2349, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13509748 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8799 + }, + "request_cache": { + "memory_size_in_bytes": 44320 + }, + "search": { + "query_time_in_millis": 397, + "query_total": 158 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 52628, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 80719, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1479, + "stored_fields_memory_in_bytes": 1656, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 24956, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1082557 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13341 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 85 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13341 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 127 + }, + "indexing": { + "index_time_in_millis": 93, + "index_total": 27, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "refresh": { + "total_time_in_millis": 961 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 218200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 93, + "index_total": 27, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 502424 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 961 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 61 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 3112, + "fixed_bit_set_memory_in_bytes": 1176, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 50864, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 565, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 44691, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 218200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40066 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40066 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 90 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 163644 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1764, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18600, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15059, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 163644 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408858624 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 1883 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2420 + }, + "index_total": { + "count": 2645 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 46655 + } + }, + "search": { + "query_time": { + "ms": 852 + }, + "query_total": { + "count": 634 + } + }, + "segments": { + "count": 29, + "doc_values": { + "memory": { + "bytes": 62060 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1232 + } + }, + "index_writer": { + "memory": { + "bytes": 182003 + } + }, + "memory": { + "bytes": 192369 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 2179 + } + }, + "stored_fields": { + "memory": { + "bytes": 9184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 115874 + } + }, + "version_map": { + "memory": { + "bytes": 17058 + } + } + }, + "store": { + "size": { + "bytes": 1596251 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 67, + "ms": 804 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 102735704, + "pct": 16 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.236328125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 116, + "time": { + "ms": 708 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 183 + } + }, + "search": { + "query": { + "count": 373, + "time": { + "ms": 182 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AO8ttSd41U5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MmcgLPjSzI6R", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UQI8SvTpCB2u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tKCE5lKgtLFy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BSZyCfT2Pllc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U3AHqrt99xnu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G0aWSTioRbMs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bmbsqXgpcJuw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aA336tFI3WHI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YcMSgpO5PYX6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CjCFJaWsSTkV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "chVSOSkaD2X5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "736tiUChCqeJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QMISktiBu0RM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I36XZlUAEXwv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4LYQJeUMIu8w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hU0nWTKoHawM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AL5C2TylSzCE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bEtiDZKasI2G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VkZsL5fnhPjS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bbSrKTzOs7S9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DOVeGisQXYQa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SUmhoEEROi9G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V4I4nifNRn6t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p7Za4XM7WWDx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "khm93743QGMC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlHFXliD632E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "arexgMiJy2sT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xJIhluW03kqO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BKeFLksPxZPC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sQRWmyLlW182", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MLz5hB5rStRD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VZlbHyPSWIR8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "87MO40xQQm9d", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1APHoVxVpon", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uGZMSykSd8XP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nr0MrvxZ8J4Y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W3OOIzjiFwKC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KDnbvg17qiKw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cGx6ViF6cXXL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tcYt8TlDyIst", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.549Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vvpjBDGsQnmqbFGGpEJTfA:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "vvpjBDGsQnmqbFGGpEJTfA" + }, + "stats": { + "state": { + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 8763 + }, + "search": { + "query_time_in_millis": 58, + "query_total": 209 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 74 + }, + "indexing": { + "index_time_in_millis": 459, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 4222 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 2062206 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 830, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3714383 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7582 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 56, + "doc_values_memory_in_bytes": 73368, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1940545, + "norms_memory_in_bytes": 206208, + "points_memory_in_bytes": 4054, + "stored_fields_memory_in_bytes": 17472, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1639443, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4284100 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 124, + "query_total": 164 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407666688 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 97 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 663 + }, + "index_total": { + "count": 95 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6722 + } + }, + "search": { + "query_time": { + "ms": 105 + }, + "query_total": { + "count": 249 + } + }, + "segments": { + "count": 53, + "doc_values": { + "memory": { + "bytes": 41572 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1091366 + }, + "norms": { + "memory": { + "bytes": 113536 + } + }, + "points": { + "memory": { + "bytes": 2250 + } + }, + "stored_fields": { + "memory": { + "bytes": 16536 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 917472 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2318494 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 39, + "ms": 593 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 132465088, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.2451171875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.552Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 114, + "time": { + "ms": 696 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 181 + } + }, + "search": { + "query": { + "count": 361, + "time": { + "ms": 179 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "axFroJrMo8L5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jdkgq48RrF6G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W0CQwef38hNe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ix7BeRMJW5ge", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZgNdPwjCJMX6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eBHLQDqBu561", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LUGKADxbnYsx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gwT4hr8dULsW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0xBJ8FmsZsDL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVEAO4G0JQDm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFv5BsBn1YV7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jgZSpdvOionC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uMXwqxOnQcwG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DK9SIAJcWgsa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f6E70mOPMKwB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6RYMjQrd48x9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Gv0PJN4vNchN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Cel5RA61nTel", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PyhS3aj1N88s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UOBTrBOUerPz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E2CgXazCJe3c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XueVmTfQhi5q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jt89FdOMo6fo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KxxICoXgi6Yl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MNbadrldVfVc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vpCcXhPPhS8k", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qdMemUK5pSc6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jdnCf21dd4gf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gwUlhcmXRQKz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I8yIvZ2DY96e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ot23ubPjkOAY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dyWQeovrCq4S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QYXFhygYHGgw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LCYd55pcgUhK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVzEA4XzDley", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4s92OZQAgSjp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SZqwTjabFAhb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g8PYB8kfKFeE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yHQJ3o9RLjhR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8MXBeC3jQdGOKm5MVo9xMA:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "8MXBeC3jQdGOKm5MVo9xMA" + }, + "stats": { + "state": { + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 55, + "query_total": 201 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dv510BY87G63ml23z6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 74 + }, + "indexing": { + "index_time_in_millis": 459, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 4222 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 2062206 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 830, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3714383 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7582 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 56, + "doc_values_memory_in_bytes": 73368, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1940545, + "norms_memory_in_bytes": 206208, + "points_memory_in_bytes": 4054, + "stored_fields_memory_in_bytes": 17472, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1639443, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4284100 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 124, + "query_total": 160 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408014848 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 96 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 657 + }, + "index_total": { + "count": 94 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 104 + }, + "query_total": { + "count": 243 + } + }, + "segments": { + "count": 52, + "doc_values": { + "memory": { + "bytes": 41504 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1089957 + }, + "norms": { + "memory": { + "bytes": 113472 + } + }, + "points": { + "memory": { + "bytes": 2249 + } + }, + "stored_fields": { + "memory": { + "bytes": 16224 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 916508 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2314802 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 39, + "ms": 593 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 111456424, + "pct": 17 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.91455078125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.538Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 112, + "time": { + "ms": 691 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 179 + } + }, + "search": { + "query": { + "count": 349, + "time": { + "ms": 176 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WBQ6bw4HJUg4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "azaI4ytVSwiM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "py9jSGg47vjl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFMlUl804z0X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BdZ4e7Csn2kA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CUHc0UftBCHO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4LFROkD6wLHH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qKpErJINP0Pp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sUmJJukLi9sh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WqKTGPRruKJc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vGwdzdlDmC1c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CxrUqbXMhpii", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "99ENZW9gEKvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oTh5R6NhJvD9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1p8Pnp2PMjUH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uY6BFPJ5CTvI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1X9HYTE8ZC4i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lZhlg6NgmBL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1CuvHELnoOZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rLDm5AyrLoDw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9EcoUcefA9aQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uPqUCA4IBkJy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4Fy8lpRz30vY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "upFIwhzhizrF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dldiq1WDiWME", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z40o1HohYWQC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jX9Cb84Uulp0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "do8qlXIHZcy6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hKuGPv5ltciO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5CGI6NIV49VR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zzyxHCYqUI9k", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9I7EjmpH9K8X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h4OSCxoFfA9l", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j4PfwpJ0j9p2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Lf5BgR9g054l", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2LJhhdb5o09s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b79Y4CcgSHRr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.541Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5m78Gt-WRyCx5n7mlwzX2A:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "5m78Gt-WRyCx5n7mlwzX2A" + }, + "stats": { + "state": { + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 142 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4038 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 245 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 53, + "query_total": 193 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 74 + }, + "indexing": { + "index_time_in_millis": 459, + "index_total": 64, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 4222 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 2062206 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 830, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3714383 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7582 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 56, + "doc_values_memory_in_bytes": 73368, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1940545, + "norms_memory_in_bytes": 206208, + "points_memory_in_bytes": 4054, + "stored_fields_memory_in_bytes": 17472, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1639443, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4284100 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 123, + "query_total": 156 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408559616 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 95 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 654 + }, + "index_total": { + "count": 93 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 103 + }, + "query_total": { + "count": 237 + } + }, + "segments": { + "count": 51, + "doc_values": { + "memory": { + "bytes": 41436 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1088548 + }, + "norms": { + "memory": { + "bytes": 113408 + } + }, + "points": { + "memory": { + "bytes": 2248 + } + }, + "stored_fields": { + "memory": { + "bytes": 15912 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 915544 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2311017 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 38, + "ms": 582 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 261517784, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.9189453125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3073, + "time": { + "ms": 2594 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3073 + } + }, + "search": { + "query": { + "count": 658, + "time": { + "ms": 885 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AdZSfFelrs6P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZwIkjpm1BTPY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jofoSs8o0XT6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CcBmew2Er8k9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u9dHCzmhJ9eA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5oEjK7blwaXA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MU0q0CRuzP8h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.541Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 98, + "query_total": 216 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 182003, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 17058 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 35 + }, + "indexing": { + "index_time_in_millis": 67, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1205 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 89596 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 67, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1205 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 193, + "query_total": 125 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 3400, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27666, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 236, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 89596 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1971 + }, + "indexing": { + "index_time_in_millis": 1870, + "index_total": 2769, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 14911862 + }, + "refresh": { + "total_time_in_millis": 9020 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1195139 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1870, + "index_total": 2769, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 14911862 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9020 + }, + "request_cache": { + "memory_size_in_bytes": 16008 + }, + "search": { + "query_time_in_millis": 428, + "query_total": 170 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 60880, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 105747, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2283, + "stored_fields_memory_in_bytes": 2592, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39992, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1195139 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13341 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 85 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13341 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 147 + }, + "indexing": { + "index_time_in_millis": 102, + "index_total": 31, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1026 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 71992 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 102, + "index_total": 31, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1026 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 61 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 2164, + "fixed_bit_set_memory_in_bytes": 480, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20496, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 215, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17181, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 71992 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40066 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40066 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 90 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 163644 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1764, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18600, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15059, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 163644 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407449600 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2263 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2594 + }, + "index_total": { + "count": 3073 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 18343 + } + }, + "search": { + "query_time": { + "ms": 885 + }, + "query_total": { + "count": 662 + } + }, + "segments": { + "count": 31, + "doc_values": { + "memory": { + "bytes": 69636 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 536 + } + }, + "index_writer": { + "memory": { + "bytes": 182003 + } + }, + "memory": { + "bytes": 203477 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 2789 + } + }, + "stored_fields": { + "memory": { + "bytes": 9808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 118172 + } + }, + "version_map": { + "memory": { + "bytes": 17058 + } + } + }, + "store": { + "size": { + "bytes": 1810502 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 72, + "ms": 839 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 147449656, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.98486328125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDw510BY87G63mlH317", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:39.878Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406716416 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 100 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 605 + }, + "index_total": { + "count": 100 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 7444 + } + }, + "search": { + "query_time": { + "ms": 78 + }, + "query_total": { + "count": 132 + } + }, + "segments": { + "count": 52, + "doc_values": { + "memory": { + "bytes": 38800 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 6135976 + } + }, + "memory": { + "bytes": 1038120 + }, + "norms": { + "memory": { + "bytes": 107520 + } + }, + "points": { + "memory": { + "bytes": 2092 + } + }, + "stored_fields": { + "memory": { + "bytes": 16224 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 873484 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2394015 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 40, + "ms": 610 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 170483392, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.58544921875 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dw510BY87G63mlH32H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:39.895Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 97, + "query_total": 192 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDw510BY87G63mlH32H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:39.899Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 192, + "time": { + "ms": 97 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDw510BY87G63mlH32H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:39.899Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDw510BY87G63mlH32H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:39.899Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406687744 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 97 + }, + "query_total": { + "count": 192 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 180950656, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.58544921875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dv510BY87G63ml-H1X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:29.875Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407793664 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 96 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 588 + }, + "index_total": { + "count": 96 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 6711 + } + }, + "search": { + "query_time": { + "ms": 77 + }, + "query_total": { + "count": 126 + } + }, + "segments": { + "count": 48, + "doc_values": { + "memory": { + "bytes": 35128 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 208112 + } + }, + "memory": { + "bytes": 918066 + }, + "norms": { + "memory": { + "bytes": 94912 + } + }, + "points": { + "memory": { + "bytes": 1849 + } + }, + "stored_fields": { + "memory": { + "bytes": 14976 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 771201 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2138563 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 38, + "ms": 594 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 117411592, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.2451171875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDv510BY87G63ml-H1u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:29.894Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 96, + "query_total": 188 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDv510BY87G63ml-H1u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:29.894Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 188, + "time": { + "ms": 96 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDv510BY87G63ml-H1u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:29.894Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dv510BY87G63ml-H1u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:29.895Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407789568 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 96 + }, + "query_total": { + "count": 188 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 179032368, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.2451171875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDv510BY87G63ml0XxK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:19.874Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408145920 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 95 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 582 + }, + "index_total": { + "count": 95 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 75 + }, + "query_total": { + "count": 120 + } + }, + "segments": { + "count": 47, + "doc_values": { + "memory": { + "bytes": 35060 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 208112 + } + }, + "memory": { + "bytes": 916657 + }, + "norms": { + "memory": { + "bytes": 94848 + } + }, + "points": { + "memory": { + "bytes": 1848 + } + }, + "stored_fields": { + "memory": { + "bytes": 14664 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 770237 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2138273 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 37, + "ms": 588 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 294522456, + "pct": 46 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.91455078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dv510BY87G63ml0Xxc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:19.890Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 96, + "query_total": 184 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDv510BY87G63ml0Xxc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:19.890Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 184, + "time": { + "ms": 96 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDv510BY87G63ml0Xxc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:19.891Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDv510BY87G63ml0Xxc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:19.891Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408145920 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 96 + }, + "query_total": { + "count": 184 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 177980944, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.91455078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.538Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2851, + "time": { + "ms": 2505 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2851 + } + }, + "search": { + "query": { + "count": 644, + "time": { + "ms": 867 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "StQyfK56OPOA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iStyM7IwCeR9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cYhHohdFlGkY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Jjp7E0GbA5IH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZisdXJIYQnUB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9EusJKoC6ou5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t6hDahwBHqRO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 96, + "query_total": 208 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 182003, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 17058 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 33 + }, + "indexing": { + "index_time_in_millis": 65, + "index_total": 33, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1184 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 59299 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 65, + "index_total": 33, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1184 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 193, + "query_total": 125 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 3264, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19442, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 158, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14772, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 59299 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1785 + }, + "indexing": { + "index_time_in_millis": 1788, + "index_total": 2551, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 14911862 + }, + "refresh": { + "total_time_in_millis": 8908 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1281235 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1788, + "index_total": 2551, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 14911862 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8908 + }, + "request_cache": { + "memory_size_in_bytes": 74904 + }, + "search": { + "query_time_in_millis": 412, + "query_total": 164 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 51776, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 63471, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 685, + "stored_fields_memory_in_bytes": 720, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10290, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1281235 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13341 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 85 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13341 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 137 + }, + "indexing": { + "index_time_in_millis": 97, + "index_total": 29, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1001 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 243453 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 97, + "index_total": 29, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1001 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 61 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2028, + "fixed_bit_set_memory_in_bytes": 192, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8592, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 75, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6177, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 243453 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40066 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40066 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.540Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 90 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 163644 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1764, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18600, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15059, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 163644 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408330240 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2065 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2505 + }, + "index_total": { + "count": 2851 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 77239 + } + }, + "search": { + "query_time": { + "ms": 868 + }, + "query_total": { + "count": 648 + } + }, + "segments": { + "count": 21, + "doc_values": { + "memory": { + "bytes": 60260 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 248 + } + }, + "index_writer": { + "memory": { + "bytes": 182003 + } + }, + "memory": { + "bytes": 141073 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 973 + } + }, + "stored_fields": { + "memory": { + "bytes": 6688 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 70080 + } + }, + "version_map": { + "memory": { + "bytes": 17058 + } + } + }, + "store": { + "size": { + "bytes": 1638616 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 69, + "ms": 819 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 260441392, + "pct": 41 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.64599609375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 2960, + "time": { + "ms": 2550 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 2960 + } + }, + "search": { + "query": { + "count": 651, + "time": { + "ms": 876 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YCnEzvlYBvn4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFbPXf8v589K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7iCOKjVf8Q5n", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fqzDhxhVcps3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YKGbCeB4mwti", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RLC7UJICpZcV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QT28kTc9PBQD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 97, + "query_total": 212 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 17, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 182003, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 17058 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 34 + }, + "indexing": { + "index_time_in_millis": 66, + "index_total": 34, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1197 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 89596 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 66, + "index_total": 34, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1197 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 193, + "query_total": 125 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3332, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 23554, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 197, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 18465, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 89596 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 1876 + }, + "indexing": { + "index_time_in_millis": 1830, + "index_total": 2658, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 14911862 + }, + "refresh": { + "total_time_in_millis": 8972 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1195139 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1830, + "index_total": 2658, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 14911862 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8972 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 420, + "query_total": 167 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 56388, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 84669, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1484, + "stored_fields_memory_in_bytes": 1656, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25141, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1195139 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13341 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 10, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 478 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 25, + "query_total": 85 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13341 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 142 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1011 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 71992 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 30, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1011 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 61 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2096, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 14544, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 145, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11679, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 71992 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40066 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 215, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2768 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40066 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.555Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 90 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 163644 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 171, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1577 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 1764, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 18600, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15059, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 163644 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407777280 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2162 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2550 + }, + "index_total": { + "count": 2960 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 877 + }, + "query_total": { + "count": 655 + } + }, + "segments": { + "count": 26, + "doc_values": { + "memory": { + "bytes": 65008 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 392 + } + }, + "index_writer": { + "memory": { + "bytes": 182003 + } + }, + "memory": { + "bytes": 172335 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 1881 + } + }, + "stored_fields": { + "memory": { + "bytes": 8248 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 94126 + } + }, + "version_map": { + "memory": { + "bytes": 17058 + } + } + }, + "store": { + "size": { + "bytes": 1608069 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 71, + "ms": 832 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 116763936, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.44091796875 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.560Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 135, + "time": { + "ms": 795 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 215 + } + }, + "search": { + "query": { + "count": 409, + "time": { + "ms": 189 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u5aqTroIqmWw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Tmt11HAwDt70", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFilkZFAgDn1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aYIyYiycvTuq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TtpADKpxN9Zg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sxWmV9IhQdrM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dcurbH7y4n2E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7pFfFd8V4URa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VSMNxKAzzTk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FL1QUSMOZQKu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gJRFcAXfOCZf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XQa8qmoTpffN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NwArQY4ruJqH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y4YaKV6rF6T1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFI69yX0qGwy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MWsGNaHgxlOK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VhlEwCBtDHCz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFh60SoGBfIc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1DUmpVY0v6N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qhwg7K9tlh9k", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NsCHXOsJq1yr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CbmcloX9VGK2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L8NdHRY71iVw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2Cwkn1CkUIz2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZfFx4ZU0PNIK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QoU3Ekg1EdJn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "igTNu7vm3Irz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y5mgzJzNqOMA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OjwdrZXVH0Z2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AoMyzXE7YTju", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QLp9bOzFcsUq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o7d0QK9dcpZg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nIXxLdW5jU1i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Us0kNJpTWNYP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFbCqPaos72m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MrEcDM9oCnAP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xbSFQlfe1kpm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UMoKkSVVGEnN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RsBXlWTXMr9L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9jZxx7yMCcsp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1NWdxgLuc2Ev", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QM2hwv01Vdd5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "URJchor9Osrm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ES3QckaYaQ2g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVpcjSHMVATj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uAX9QIOEATqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3EUnZHRDoH9c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cuvI0s9WRbyRt10RF1k2xQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "cuvI0s9WRbyRt10RF1k2xQ" + }, + "stats": { + "state": { + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 8763 + }, + "search": { + "query_time_in_millis": 63, + "query_total": 233 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 87 + }, + "indexing": { + "index_time_in_millis": 518, + "index_total": 77, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 4628 + }, + "segments": { + "count": 21 + }, + "store": { + "size_in_bytes": 2360838 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 983, + "index_total": 136, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 46, + "doc_values_memory_in_bytes": 71872, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1743950, + "norms_memory_in_bytes": 185728, + "points_memory_in_bytes": 3721, + "stored_fields_memory_in_bytes": 14352, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1468277, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4448033 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 126, + "query_total": 176 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.592Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405577728 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 113 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 776 + }, + "index_total": { + "count": 111 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 108 + }, + "query_total": { + "count": 266 + } + }, + "segments": { + "count": 51, + "doc_values": { + "memory": { + "bytes": 39500 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 971500 + }, + "norms": { + "memory": { + "bytes": 100608 + } + }, + "points": { + "memory": { + "bytes": 2004 + } + }, + "stored_fields": { + "memory": { + "bytes": 15912 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 813476 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2673803 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 49, + "ms": 693 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 212713872, + "pct": 33 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 130, + "time": { + "ms": 764 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 207 + } + }, + "search": { + "query": { + "count": 397, + "time": { + "ms": 188 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2enoF01KFhIu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8vyHJcuMKpjg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Em51omwazDtM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PcDpSJPznGkL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6phb5Ksln2U2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EGTDgb8qYOrh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NIxNMUxGok01", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JfE66rwKhWLJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VXGZUxf50w5G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6DwFxYg5Bdjj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SwgYufeHleFK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LnFbOu20hvMe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1YB26xyBWnpT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVtxgPSbQCua", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aw8Kj6i1IXNF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1TU0D5hPOtF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RL4wJV3i1m6m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "moNPBTCHcjt7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HzZ1Z3q8VpTJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6roew1NhGLAU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S3ixICv00NMe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lIXFecA1DYxO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kNtNO7B0aJP3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9z1KM1dUIibp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VMmo6y6KToZQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tYv64fMrpwaX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1OHOPPcU7ZSl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "owyq7l11Qne5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlaWzflWNiZQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I5W7y2MS2YCu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wzjwCrhNdnIs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "endPdPtAA7S9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xUxMfaKy31oE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YXgoxwdY7mZr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6LNLHMhP5rgN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DoNLC5hVcT7W", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1ONQbGxMO5rM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8qvAPPHoGFQ4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BR5BAggBPtS2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xqTfjdwrpSwH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PI9vg3UhtU77", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UDlDptubeA6c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KR5q49INeNx1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7rxEAbLWpUBV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nd9Dn5jnjrE0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "soywSdk5TACvyO4DF39b9A:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "soywSdk5TACvyO4DF39b9A" + }, + "stats": { + "state": { + "state_uuid": "soywSdk5TACvyO4DF39b9A" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 8763 + }, + "search": { + "query_time_in_millis": 62, + "query_total": 225 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 84 + }, + "indexing": { + "index_time_in_millis": 504, + "index_total": 74, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 3021596 + }, + "refresh": { + "total_time_in_millis": 4515 + }, + "segments": { + "count": 27 + }, + "store": { + "size_in_bytes": 2168231 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 951, + "index_total": 130, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4962080 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8210 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 58, + "doc_values_memory_in_bytes": 84576, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2147261, + "norms_memory_in_bytes": 228608, + "points_memory_in_bytes": 4592, + "stored_fields_memory_in_bytes": 18096, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1811389, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4667022 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 126, + "query_total": 172 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.598Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406024192 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 109 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 746 + }, + "index_total": { + "count": 107 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 108 + }, + "query_total": { + "count": 261 + } + }, + "segments": { + "count": 56, + "doc_values": { + "memory": { + "bytes": 45784 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1171747 + }, + "norms": { + "memory": { + "bytes": 121984 + } + }, + "points": { + "memory": { + "bytes": 2439 + } + }, + "stored_fields": { + "memory": { + "bytes": 17472 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 984068 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2666616 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 46, + "ms": 667 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 122697608, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.1484375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 124, + "time": { + "ms": 743 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 197 + } + }, + "search": { + "query": { + "count": 385, + "time": { + "ms": 184 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WrROjCP9xjab", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IqA6YfSnDflB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T2jsQI5yNj8w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hJKdjUaFhCu3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NZYIEe8Doy90", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Oz8JyQuNWCjS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "buQ6sj3l5O9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "36RxyXVppYQO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OaIx4WjjZB4H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FbH8zy2ZrnH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Chgv3OnJea85", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ths1unvC6rOr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kJsh4yLCeI6v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XCheWcXrwKTw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t47oZOQY5RqU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0UwMiEympG8j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NZvmDngBTNAW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YStg1B6Lu9BC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SOOy5N3hvTjV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AdeqdndvK3NF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jzzxcYN90JGS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AOmKf9C78W4e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xg0YnaH7N5H0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aOUWbwZEj13d", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p6nEVNFTu5er", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fRD1r9Vqju2o", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4WdxjiLOxkHL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5u1iY3btnqA9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PL61kWqrxoQA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JEqNDZWhnRGB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xXWSnK0YLf1u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nNTGXG3A3YEH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FNLh5Xan3CJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gjpSE73vDfcC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AwhOLy52jIu9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1FLwEawJjDz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D64IF3O9o1XM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7ZJXIAUP5wHY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TG9bUMPZa829", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5ncRhhwLq9ug", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8hb3LC0lzPYo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qH1lvnZrjpLm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFb4o6ohSEtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.546Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EJgKtWa8Q0G59Y7ipePcZw:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.547Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "EJgKtWa8Q0G59Y7ipePcZw" + }, + "stats": { + "state": { + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 10222 + }, + "search": { + "query_time_in_millis": 60, + "query_total": 217 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 80 + }, + "indexing": { + "index_time_in_millis": 488, + "index_total": 70, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 2517065 + }, + "refresh": { + "total_time_in_millis": 4400 + }, + "segments": { + "count": 32 + }, + "store": { + "size_in_bytes": 2224103 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 919, + "index_total": 122, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4457549 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7990 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 59, + "doc_values_memory_in_bytes": 79892, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2104784, + "norms_memory_in_bytes": 223808, + "points_memory_in_bytes": 4413, + "stored_fields_memory_in_bytes": 18408, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1778263, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4532562 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 124, + "query_total": 168 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.555Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.579Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406798336 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 104 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 728 + }, + "index_total": { + "count": 102 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 7448 + } + }, + "search": { + "query_time": { + "ms": 107 + }, + "query_total": { + "count": 255 + } + }, + "segments": { + "count": 51, + "doc_values": { + "memory": { + "bytes": 41092 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1035095 + }, + "norms": { + "memory": { + "bytes": 107584 + } + }, + "points": { + "memory": { + "bytes": 2150 + } + }, + "stored_fields": { + "memory": { + "bytes": 15912 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 868357 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2406476 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 43, + "ms": 645 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 282656952, + "pct": 44 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.58544921875 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDw510BY87G63mlf33X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3467, + "time": { + "ms": 2751 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3467 + } + }, + "search": { + "query": { + "count": 709, + "time": { + "ms": 935 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dw510BY87G63mlf33X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ikGTOMSllgR9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V9gAWzJP0tze", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1n3KbJY6i0eW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xNplZ9Bo3smT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SzD7xtwHbn6j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "obwkjo0yI8rK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aBWJ1ghigHik", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDw510BY87G63mlf33X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 99, + "query_total": 228 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDw510BY87G63mlf33X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 187803, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 19408 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDw510BY87G63mlf33X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 38 + }, + "indexing": { + "index_time_in_millis": 72, + "index_total": 38, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1235 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 135061 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 72, + "index_total": 38, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1235 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 196, + "query_total": 137 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 3604, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 40002, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 353, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33237, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 135061 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dw510BY87G63mlf33X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2280 + }, + "indexing": { + "index_time_in_millis": 1978, + "index_total": 3126, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 16430381 + }, + "refresh": { + "total_time_in_millis": 9219 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1528155 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1978, + "index_total": 3126, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 16430381 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9219 + }, + "request_cache": { + "memory_size_in_bytes": 67672 + }, + "search": { + "query_time_in_millis": 471, + "query_total": 185 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 63736, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 108854, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2286, + "stored_fields_memory_in_bytes": 2616, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40216, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1528155 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDw510BY87G63mlf37X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 95 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDw510BY87G63mlf37X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 162 + }, + "indexing": { + "index_time_in_millis": 108, + "index_total": 34, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1086 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 172995 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 108, + "index_total": 34, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1086 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 63 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 2368, + "fixed_bit_set_memory_in_bytes": 912, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38352, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 425, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33687, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 172995 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDw510BY87G63mlf37X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40252 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40252 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dw510BY87G63mlf37X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 264958 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2992, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 60836, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51377, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 264958 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDw510BY87G63mlf37X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406913024 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2602 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2751 + }, + "index_total": { + "count": 3467 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 70007 + } + }, + "search": { + "query_time": { + "ms": 935 + }, + "query_total": { + "count": 713 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 74128 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1112 + } + }, + "index_writer": { + "memory": { + "bytes": 187803 + } + }, + "memory": { + "bytes": 279012 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 3161 + } + }, + "stored_fields": { + "memory": { + "bytes": 12640 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 182299 + } + }, + "version_map": { + "memory": { + "bytes": 19408 + } + } + }, + "store": { + "size": { + "bytes": 2204202 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 77, + "ms": 876 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129940080, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.27490234375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dw510BY87G63mllH6h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:09.885Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406974464 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 114 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 661 + }, + "index_total": { + "count": 113 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 82 + }, + "query_total": { + "count": 149 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 27628 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 574774 + }, + "norms": { + "memory": { + "bytes": 58368 + } + }, + "points": { + "memory": { + "bytes": 1179 + } + }, + "stored_fields": { + "memory": { + "bytes": 12168 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 475431 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2302629 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 47, + "ms": 695 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 281117608, + "pct": 44 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.49267578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDw510BY87G63mllH64", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:09.900Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 99, + "query_total": 204 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDw510BY87G63mllH64", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:09.901Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 204, + "time": { + "ms": 99 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDw510BY87G63mllH64", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:09.901Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dw510BY87G63mllH64", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:09.901Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406970368 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 99 + }, + "query_total": { + "count": 204 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 184499184, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.49267578125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dw510BY87G63mlRn2A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:49.882Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406261760 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 107 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 635 + }, + "index_total": { + "count": 107 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 8177 + } + }, + "search": { + "query_time": { + "ms": 80 + }, + "query_total": { + "count": 138 + } + }, + "segments": { + "count": 50, + "doc_values": { + "memory": { + "bytes": 41240 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 5927032 + } + }, + "memory": { + "bytes": 1016685 + }, + "norms": { + "memory": { + "bytes": 105600 + } + }, + "points": { + "memory": { + "bytes": 2130 + } + }, + "stored_fields": { + "memory": { + "bytes": 15600 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 852115 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2207652 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 43, + "ms": 640 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 217548824, + "pct": 34 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.1484375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDw510BY87G63mlRn2X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:49.895Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 97, + "query_total": 196 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDw510BY87G63mlRn2X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:49.895Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 196, + "time": { + "ms": 97 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDw510BY87G63mlRn2X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:49.896Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dw510BY87G63mlRn2X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:49.896Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406261760 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 97 + }, + "query_total": { + "count": 196 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 181921208, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.1484375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDw510BY87G63mlbX2U", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:59.885Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406343680 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 111 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 650 + }, + "index_total": { + "count": 110 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 8177 + } + }, + "search": { + "query_time": { + "ms": 80 + }, + "query_total": { + "count": 143 + } + }, + "segments": { + "count": 45, + "doc_values": { + "memory": { + "bytes": 34956 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 814088 + }, + "norms": { + "memory": { + "bytes": 83904 + } + }, + "points": { + "memory": { + "bytes": 1694 + } + }, + "stored_fields": { + "memory": { + "bytes": 14040 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 679494 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2451569 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 45, + "ms": 655 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 283452800, + "pct": 45 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dw510BY87G63mlbX2j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:59.898Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 98, + "query_total": 200 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDw510BY87G63mlbX2j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:59.898Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 200, + "time": { + "ms": 98 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDw510BY87G63mlbX2j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:59.898Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDw510BY87G63mlbX2j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:59.898Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406339584 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 98 + }, + "query_total": { + "count": 200 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 182943576, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.547Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3221, + "time": { + "ms": 2663 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3221 + } + }, + "search": { + "query": { + "count": 695, + "time": { + "ms": 903 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRR58gOrhN4t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iww5TTj9U3v7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y0dAkVlWYf3E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yjvm1RuvhqQW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CKUriZt2470P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n05pd2yrOdhz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ov5NwaDrbnYu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.548Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 98, + "query_total": 220 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 187803, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 19408 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 36 + }, + "indexing": { + "index_time_in_millis": 69, + "index_total": 36, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1215 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 119903 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 69, + "index_total": 36, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1215 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 196, + "query_total": 137 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 3468, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 31778, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 275, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25851, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 119903 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2070 + }, + "indexing": { + "index_time_in_millis": 1897, + "index_total": 2884, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 16430381 + }, + "refresh": { + "total_time_in_millis": 9118 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1115408 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1897, + "index_total": 2884, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 16430381 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9118 + }, + "request_cache": { + "memory_size_in_bytes": 33024 + }, + "search": { + "query_time_in_millis": 440, + "query_total": 179 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 54624, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 66570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 688, + "stored_fields_memory_in_bytes": 744, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10514, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1115408 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13341 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 95 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13341 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 152 + }, + "indexing": { + "index_time_in_millis": 104, + "index_total": 32, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1037 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 122496 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 104, + "index_total": 32, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1037 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 63 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2232, + "fixed_bit_set_memory_in_bytes": 624, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 26448, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 285, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22683, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 122496 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40252 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40252 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 163644 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2992, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 60836, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51377, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 163644 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.552Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406278144 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2380 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2663 + }, + "index_total": { + "count": 3221 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 35359 + } + }, + "search": { + "query_time": { + "ms": 903 + }, + "query_total": { + "count": 699 + } + }, + "segments": { + "count": 30, + "doc_values": { + "memory": { + "bytes": 64744 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 824 + } + }, + "index_writer": { + "memory": { + "bytes": 187803 + } + }, + "memory": { + "bytes": 216600 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 1345 + } + }, + "stored_fields": { + "memory": { + "bytes": 9520 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 134207 + } + }, + "version_map": { + "memory": { + "bytes": 19408 + } + } + }, + "store": { + "size": { + "bytes": 1710648 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 74, + "ms": 853 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 232665256, + "pct": 37 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.3779296875 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.543Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3342, + "time": { + "ms": 2712 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3342 + } + }, + "search": { + "query": { + "count": 702, + "time": { + "ms": 911 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qiJhKuEyFyHx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tBVOUqmhUQEY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jQVeDOPHoRkN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NUd3dKVLGVcI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wj9gQk0dxq0W", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jpMHMX6djoAi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sB13cU3vtjd7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 98, + "query_total": 224 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 187803, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 19408 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 37 + }, + "indexing": { + "index_time_in_millis": 70, + "index_total": 37, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "refresh": { + "total_time_in_millis": 1227 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 119903 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 70, + "index_total": 37, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 470154 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1227 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 196, + "query_total": 137 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 3536, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 35890, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 314, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29544, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 119903 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2173 + }, + "indexing": { + "index_time_in_millis": 1943, + "index_total": 3003, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 16430381 + }, + "refresh": { + "total_time_in_millis": 9175 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1115408 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1943, + "index_total": 3003, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 16430381 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9175 + }, + "request_cache": { + "memory_size_in_bytes": 50024 + }, + "search": { + "query_time_in_millis": 448, + "query_total": 182 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 59212, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 87744, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1487, + "stored_fields_memory_in_bytes": 1680, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25365, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1115408 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 95 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 157 + }, + "indexing": { + "index_time_in_millis": 106, + "index_total": 33, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1054 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 122496 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 106, + "index_total": 33, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1054 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 63 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2300, + "fixed_bit_set_memory_in_bytes": 768, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 32400, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 355, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 28185, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 122496 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40252 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40252 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 264958 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2992, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 60836, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51377, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 264958 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.552Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405471232 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2489 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2712 + }, + "index_total": { + "count": 3342 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 52359 + } + }, + "search": { + "query_time": { + "ms": 912 + }, + "query_total": { + "count": 706 + } + }, + "segments": { + "count": 35, + "doc_values": { + "memory": { + "bytes": 69468 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 968 + } + }, + "index_writer": { + "memory": { + "bytes": 187803 + } + }, + "memory": { + "bytes": 247838 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 2253 + } + }, + "stored_fields": { + "memory": { + "bytes": 11080 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 158253 + } + }, + "version_map": { + "memory": { + "bytes": 19408 + } + } + }, + "store": { + "size": { + "bytes": 1956804 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 75, + "ms": 862 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 265320488, + "pct": 42 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.13623046875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 140, + "time": { + "ms": 810 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 221 + } + }, + "search": { + "query": { + "count": 432, + "time": { + "ms": 194 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qcmIU3mupBrL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2cx9Q5cAMivu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9izcYtnoOGrm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rguYMxZxgGrR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "32XxAglqc7SH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kWb9t5TLGN23", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XLP6HhMoCL39", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PhDDP1F0Gc1L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CedTvf13Wah7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gnuQLGVM0ERk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3gUQpqbCO1hR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ihNkahlrsMIG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TWUdm5tyAsMN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W6TEv6zbQYYh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s4zGTIYNTjTR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EY0XKYSOo1MA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FHO7EoMV0B9U", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4hODkmuFYZT7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EN2dSa3xvVIS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h9LOXV8appQS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N4UejcINmxzq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p97Mq7960wxT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IUhPRflGxCfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0037_ptwdorrghhtq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834896939, + "stop_time_in_millis": 1502834896954, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xbvPclE0OGVH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RoRFerrZa6hh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kLnIA1O4HF5Z", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FhxF8h3LckB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v0QNNjEYJYJW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JfmXLLaNFhEs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EykMgBPTeRVT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ABTrflL1c4By", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N9iHC8FAunR7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LxzIkSKdTyTv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qLiUKkOLbB2A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b6pV47ywGOWh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XuO8iZKh2Cu5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KwZ0CvDfIAvj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6ZqRvzwb0mFy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O3EfsQKwumEx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1QGJQXczDBVq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j0OQIH7VcqA3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iXBU3CM3e5ck", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Zmb4U36udx0O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fDA72fRRIRAO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vutv4zPalY9M", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HryDuGhcIVUR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0UJCONl0gN3H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xiaT5Oj4SAWl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2JrqPMllxIFX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UNSAe9DSzR1l", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0038_ikltnxjkiedj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834902181, + "stop_time_in_millis": 1502834902195, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g6osLt6Doq5K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0037_ptwdorrghhtq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0037_ptwdorrghhtq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0038_ikltnxjkiedj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0038_ikltnxjkiedj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xZG8n0tSTkK8DsHzl9NDVA:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xZG8n0tSTkK8DsHzl9NDVA" + }, + "stats": { + "state": { + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 66, + "query_total": 248 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0037_ptwdorrghhtq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 88 + }, + "indexing": { + "index_time_in_millis": 522, + "index_total": 78, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 4690 + }, + "segments": { + "count": 13 + }, + "store": { + "size_in_bytes": 1519628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 992, + "index_total": 138, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8584 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 30, + "doc_values_memory_in_bytes": 54768, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1191098, + "norms_memory_in_bytes": 126848, + "points_memory_in_bytes": 2541, + "stored_fields_memory_in_bytes": 9360, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 997581, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3251119 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 128, + "query_total": 184 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0038_ikltnxjkiedj", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 208112, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.605Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406851584 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 116 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 788 + }, + "index_total": { + "count": 114 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 111 + }, + "query_total": { + "count": 278 + } + }, + "segments": { + "count": 45, + "doc_values": { + "memory": { + "bytes": 31084 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 697892 + }, + "norms": { + "memory": { + "bytes": 71296 + } + }, + "points": { + "memory": { + "bytes": 1416 + } + }, + "stored_fields": { + "memory": { + "bytes": 14040 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 580056 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1839977 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 50, + "ms": 701 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 184405016, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.568Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 142, + "time": { + "ms": 816 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 224 + } + }, + "search": { + "query": { + "count": 444, + "time": { + "ms": 195 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9XsSGFFg3wQd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nuxH0RVeTBVF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vu9iWxlNmg0p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9To4sBxsA9aV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tL8zgkmWcvMH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0039_jlheihbiuebl", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834907415, + "stop_time_in_millis": 1502834907426, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4EB7624MvSOv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O2P7hvs0WYyt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7wwCKhrJ2W1f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CrORPsjgA392", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w6y62lp15vCQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ew6g8VfCq75i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WDtkm5z5b6ml", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pZxPQcpvTuqg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ydi0yYsIFSIp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vDyFB8PNGjUf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zw5xWRRaDMxW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OOsK9dAqy3J6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XIekuwgo2OPX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j5h0LPTWQbws", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z9sHLieu7nGJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mYPmRBBFSXuH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Nm989SjcwInv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RPTSIXmLm91c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "INHrG8T5cSgp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0037_ptwdorrghhtq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834896939, + "stop_time_in_millis": 1502834896954, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4N2gulmIt7KS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9Ddvyr6wpmrI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "885FCSV2hjOe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m979uV41mzr8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RvgS1FzPDfYv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HBdoKtI4QaMa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LosVPSBhH0wG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gdoHvWRpKBIZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C4FYT1QezHkh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MUti2D8fQx1L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1VlRPAtzTRp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vzhf3bIC29kC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rufAzhkEEUZD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7JpODeFPiVxO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wv0DjizZOtSB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bSc1F4TIder3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xrFhbdLHtEI5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KbkmYl7KV2Bk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8QCthNODD308", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Z5powpPPkn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Unsx4kRvSNY8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YaRaeXb6uwLu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BLPj8LvgzE0S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "29Q8G5dzbp4a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2QdrjpOf3LsA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OvO3lK8zzjrG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "guXDxmnJMeh4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0038_ikltnxjkiedj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834902181, + "stop_time_in_millis": 1502834902195, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61ZyC562xFaW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.571Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0039_jlheihbiuebl:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0039_jlheihbiuebl" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0038_ikltnxjkiedj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0038_ikltnxjkiedj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0037_ptwdorrghhtq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0037_ptwdorrghhtq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jrWAaVM2RxqXu98xlQa0Rw:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "jrWAaVM2RxqXu98xlQa0Rw" + }, + "stats": { + "state": { + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0039_jlheihbiuebl", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 67, + "query_total": 256 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0037_ptwdorrghhtq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 89 + }, + "indexing": { + "index_time_in_millis": 525, + "index_total": 79, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 4706 + }, + "segments": { + "count": 14 + }, + "store": { + "size_in_bytes": 1519628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 997, + "index_total": 140, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8616 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 32, + "doc_values_memory_in_bytes": 55176, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1231536, + "norms_memory_in_bytes": 130944, + "points_memory_in_bytes": 2589, + "stored_fields_memory_in_bytes": 9984, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1032843, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3286862 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 128, + "query_total": 188 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0038_ikltnxjkiedj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406396928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 118 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 793 + }, + "index_total": { + "count": 116 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 111 + }, + "query_total": { + "count": 284 + } + }, + "segments": { + "count": 47, + "doc_values": { + "memory": { + "bytes": 31356 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 719520 + }, + "norms": { + "memory": { + "bytes": 73408 + } + }, + "points": { + "memory": { + "bytes": 1441 + } + }, + "stored_fields": { + "memory": { + "bytes": 14664 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 598651 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1879412 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 50, + "ms": 701 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253029640, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.314453125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.576Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 138, + "time": { + "ms": 802 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 219 + } + }, + "search": { + "query": { + "count": 420, + "time": { + "ms": 191 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f6cS4D8i796S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BobD1dpj7uls", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b9gIkKa6CSLZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MjAs3hn2ZwwR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0tQ9kBzcjop8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aQNHd8qUSHlL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZUJe9kz8rRlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ea0enscg7EUw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yJBjFi4RUFt1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rz74GbdfxSAF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "biVWdH38k2HF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Stj2l1utXtD6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nS7RGSrT26aC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "793wqKZAXOvH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVbT1o36wHPR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mUz67LXFAjmT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Lx1w5g1ibQCo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I5gko8VDKncO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LsV6wfxGXFPU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WDZ90fSXOFZ9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KCZdpj5wHxoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oy4M8voNBBQT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xbRlfkF06YtM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pMhVWKceLWUw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IhXghdb8Sw9j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rnGxh0u1FAsY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sNUO6VbuT7ap", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hz4rwBs7TmUU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IsaIb9hXtwHj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "708M9vSiXgSm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RIKl7l15XZew", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w4hHwLkdeGCe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UA1XoR0COzfX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V5U4sl6DavjE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B41o5tbyMP6u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wg57ttSIIB73", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlRjnTSHSp2A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JbsTivCS4im0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J3zDiy2E0Y2w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KgbGdxmmWJl6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4DFX7RD7Tojf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bgbSQxmBW4RH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1xCyuZ761fy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4ewek0knugrd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Ia9KxrjpIEBG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dG7NzZ8jPJWs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NdnR0f1rvlQy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K3pQfkGkgcAX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I7im6afGSSOa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oxNBiMuLRjS1trLe_AGp2w:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "oxNBiMuLRjS1trLe_AGp2w" + }, + "stats": { + "state": { + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 208112, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 64, + "query_total": 240 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 88 + }, + "indexing": { + "index_time_in_millis": 522, + "index_total": 78, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 4690 + }, + "segments": { + "count": 13 + }, + "store": { + "size_in_bytes": 1519628 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 992, + "index_total": 138, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8584 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 30, + "doc_values_memory_in_bytes": 54768, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1191098, + "norms_memory_in_bytes": 126848, + "points_memory_in_bytes": 2541, + "stored_fields_memory_in_bytes": 9360, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 997581, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3251119 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 127, + "query_total": 180 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.589Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.601Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407416832 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 115 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 782 + }, + "index_total": { + "count": 113 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 110 + }, + "query_total": { + "count": 272 + } + }, + "segments": { + "count": 44, + "doc_values": { + "memory": { + "bytes": 31016 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 696483 + }, + "norms": { + "memory": { + "bytes": 71232 + } + }, + "points": { + "memory": { + "bytes": 1415 + } + }, + "stored_fields": { + "memory": { + "bytes": 13728 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 579092 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1836285 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 50, + "ms": 701 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 158182952, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.49267578125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3864, + "time": { + "ms": 2897 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3864 + } + }, + "search": { + "query": { + "count": 730, + "time": { + "ms": 961 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UMbjUoxkSzI9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YSFeaE9IA72r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kM3gCp33fVKl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fThLlG6Bxiid", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BTEIZP0U67py", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9WYvVs2KAOQo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pXyJo1NP4NkX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 100, + "query_total": 240 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 187803, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 19408 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 41 + }, + "indexing": { + "index_time_in_millis": 76, + "index_total": 41, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1272 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 48495 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 76, + "index_total": 41, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1272 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 196, + "query_total": 137 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 4324, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16458, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 119, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11079, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 48495 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2623 + }, + "indexing": { + "index_time_in_millis": 2115, + "index_total": 3517, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 18079526 + }, + "refresh": { + "total_time_in_millis": 9359 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1665972 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2115, + "index_total": 3517, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 18079526 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9359 + }, + "request_cache": { + "memory_size_in_bytes": 18360 + }, + "search": { + "query_time_in_millis": 496, + "query_total": 194 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 67616, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 113216, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2297, + "stored_fields_memory_in_bytes": 2656, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40647, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1665972 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 95 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 177 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 37, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1131 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 248766 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 113, + "index_total": 37, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1131 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 63 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 2572, + "fixed_bit_set_memory_in_bytes": 1344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 56208, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 635, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 50193, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 248766 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40252 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40252 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 264958 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2992, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 60836, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51377, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 264958 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.567Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406097920 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2963 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2897 + }, + "index_total": { + "count": 3864 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 20695 + } + }, + "search": { + "query_time": { + "ms": 962 + }, + "query_total": { + "count": 734 + } + }, + "segments": { + "count": 37, + "doc_values": { + "memory": { + "bytes": 78932 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1544 + } + }, + "index_writer": { + "memory": { + "bytes": 187803 + } + }, + "memory": { + "bytes": 277686 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 3148 + } + }, + "stored_fields": { + "memory": { + "bytes": 11744 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 177078 + } + }, + "version_map": { + "memory": { + "bytes": 19408 + } + } + }, + "store": { + "size": { + "bytes": 2331228 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 81, + "ms": 906 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 133530320, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.609375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDx510BY87G63mlCX7a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:39.892Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405360640 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 120 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 676 + }, + "index_total": { + "count": 119 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 85 + }, + "query_total": { + "count": 167 + } + }, + "segments": { + "count": 45, + "doc_values": { + "memory": { + "bytes": 30348 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 670112 + }, + "norms": { + "memory": { + "bytes": 68224 + } + }, + "points": { + "memory": { + "bytes": 1354 + } + }, + "stored_fields": { + "memory": { + "bytes": 14040 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 556146 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1667444 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 49, + "ms": 724 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188864248, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.80078125 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDx510BY87G63mlCX70", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:39.912Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 100, + "query_total": 216 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dx510BY87G63mlCX70", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:39.913Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 216, + "time": { + "ms": 100 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDx510BY87G63mlCX70", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:39.913Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDx510BY87G63mlCX70", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:39.913Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405356544 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 100 + }, + "query_total": { + "count": 216 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188130672, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.80078125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDw510BY87G63mlu361", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:19.889Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406990848 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 115 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 662 + }, + "index_total": { + "count": 114 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 83 + }, + "query_total": { + "count": 156 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 27696 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 576183 + }, + "norms": { + "memory": { + "bytes": 58432 + } + }, + "points": { + "memory": { + "bytes": 1180 + } + }, + "stored_fields": { + "memory": { + "bytes": 12480 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 476395 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1620822 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 48, + "ms": 716 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 118552992, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dw510BY87G63mlu37L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:19.905Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 99, + "query_total": 208 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDw510BY87G63mlu37L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:19.905Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 208, + "time": { + "ms": 99 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDw510BY87G63mlu37L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:19.905Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDw510BY87G63mlu37L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:19.905Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406986752 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 99 + }, + "query_total": { + "count": 208 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 185448976, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dw510BY87G63ml4n7H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:29.891Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406327296 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 117 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 667 + }, + "index_total": { + "count": 116 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 83 + }, + "query_total": { + "count": 161 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 27968 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 597811 + }, + "norms": { + "memory": { + "bytes": 60544 + } + }, + "points": { + "memory": { + "bytes": 1205 + } + }, + "stored_fields": { + "memory": { + "bytes": 13104 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 494990 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 1624514 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 48, + "ms": 716 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 170758520, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.314453125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDw510BY87G63ml4n7e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:29.909Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 100, + "query_total": 212 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDw510BY87G63ml4n7e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:29.909Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 212, + "time": { + "ms": 100 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDw510BY87G63ml4n7e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:29.909Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dw510BY87G63ml4n7e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:29.909Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406327296 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 100 + }, + "query_total": { + "count": 212 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 187195152, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.314453125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.557Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3596, + "time": { + "ms": 2799 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3596 + } + }, + "search": { + "query": { + "count": 716, + "time": { + "ms": 945 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WqOZPOWMjS7E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FTYacRhmMde1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4iCNWXaB936I", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VcmY1zIjJUI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F3qut6UrILwF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QPeJPoFboAmt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5ef3CEZzSTDA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 99, + "query_total": 232 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 187803, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 19408 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 39 + }, + "indexing": { + "index_time_in_millis": 73, + "index_total": 39, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1249 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 33335 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 73, + "index_total": 39, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1249 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 196, + "query_total": 137 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 4188, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 8234, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 41, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33335 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2391 + }, + "indexing": { + "index_time_in_millis": 2024, + "index_total": 3253, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 18079526 + }, + "refresh": { + "total_time_in_millis": 9267 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1246871 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2024, + "index_total": 3253, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 18079526 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9267 + }, + "request_cache": { + "memory_size_in_bytes": 85352 + }, + "search": { + "query_time_in_millis": 481, + "query_total": 188 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 58392, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 70632, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 699, + "stored_fields_memory_in_bytes": 784, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10757, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1246871 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 95 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 167 + }, + "indexing": { + "index_time_in_millis": 109, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1107 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 198255 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 109, + "index_total": 35, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1107 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 63 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 2436, + "fixed_bit_set_memory_in_bytes": 1056, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 44304, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 495, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 198255 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40252 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40252 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.559Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 264958 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2992, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 60836, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51377, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 264958 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.563Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407146496 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2719 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2799 + }, + "index_total": { + "count": 3596 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 87687 + } + }, + "search": { + "query_time": { + "ms": 946 + }, + "query_total": { + "count": 720 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 69436 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1256 + } + }, + "index_writer": { + "memory": { + "bytes": 187803 + } + }, + "memory": { + "bytes": 214974 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 1332 + } + }, + "stored_fields": { + "memory": { + "bytes": 8624 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 128798 + } + }, + "version_map": { + "memory": { + "bytes": 19408 + } + } + }, + "store": { + "size": { + "bytes": 1831302 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 78, + "ms": 885 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 241511032, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.7734375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.553Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 3729, + "time": { + "ms": 2838 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 3729 + } + }, + "search": { + "query": { + "count": 723, + "time": { + "ms": 953 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mjT2F8uuf3gD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LzL8xwSsZa4m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wUrZUZkQSkzz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w74aAn7DPK4K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XSZbE7Wpasyb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fuTmhZiqrTBk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qzhEw7jcR4uG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.554Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 100, + "query_total": 236 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 187803, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 19408 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 40 + }, + "indexing": { + "index_time_in_millis": 75, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1258 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 33335 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 75, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1258 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 196, + "query_total": 137 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 4256, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12346, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 80, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7386, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 33335 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2506 + }, + "indexing": { + "index_time_in_millis": 2059, + "index_total": 3384, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 18079526 + }, + "refresh": { + "total_time_in_millis": 9312 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1246871 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2059, + "index_total": 3384, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 18079526 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9312 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 488, + "query_total": 191 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 63132, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 92052, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1498, + "stored_fields_memory_in_bytes": 1720, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25702, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1246871 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 23, + "index_total": 11, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 489 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 26, + "query_total": 95 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 172 + }, + "indexing": { + "index_time_in_millis": 111, + "index_total": 36, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "refresh": { + "total_time_in_millis": 1120 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 223509 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 111, + "index_total": 36, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 770932 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1120 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 63 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 2504, + "fixed_bit_set_memory_in_bytes": 1200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 50256, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 565, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 44691, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 223509 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40252 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 235, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2818 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40252 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.556Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 102 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 264958 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 187, + "index_total": 80, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1636 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2992, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 60836, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1288, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51377, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 264958 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406577152 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 2840 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 2838 + }, + "index_total": { + "count": 3729 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 953 + }, + "query_total": { + "count": 727 + } + }, + "segments": { + "count": 32, + "doc_values": { + "memory": { + "bytes": 74312 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1400 + } + }, + "index_writer": { + "memory": { + "bytes": 187803 + } + }, + "memory": { + "bytes": 246458 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 2240 + } + }, + "stored_fields": { + "memory": { + "bytes": 10184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 152938 + } + }, + "version_map": { + "memory": { + "bytes": 19408 + } + } + }, + "store": { + "size": { + "bytes": 2081372 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 79, + "ms": 892 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 274823976, + "pct": 43 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.42919921875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.572Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 163, + "time": { + "ms": 934 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 260 + } + }, + "search": { + "query": { + "count": 480, + "time": { + "ms": 202 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0042_zubtcntnyacq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834923212, + "stop_time_in_millis": 1502834923231, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cPCYDEtIfi7i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EQO2vyucgYfb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s60abkPDcwUr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KCbOzR2IYpMI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RIExnk7gWxWZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sE7q2Uuc6NWU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0039_jlheihbiuebl", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834907415, + "stop_time_in_millis": 1502834907426, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zCk7E495HE1b", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ykLp0u7bTXh6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4YZpHCBXwDLr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0040_ovojxfotxjob", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834912689, + "stop_time_in_millis": 1502834912712, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1UnPAHHEubJ3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GHTyj0gF6mL1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NPRL3cifjRao", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "du6kRoTKv9VZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9YLOa58kdIdZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PKARlckWz9d2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mnjCDavqB2D7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hedPwfQLLWXB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yhEmgBfIVXrd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IMWLA5zNHlpe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vgUgvQPKmNYR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7pumKIlyWHT4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lkbBBdY4hhmQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0041_zhtugebimydq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834917941, + "stop_time_in_millis": 1502834917952, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MKmElVcPz45r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j9uMDMMDrOsK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MDQVkiWdRX5o", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B9KhjPAWVRx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1E8UGYL7a5s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0044_luffcxcbvfzt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834933699, + "stop_time_in_millis": 1502834933734, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 35, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "07Cf6vHa2fJe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0043_bwlpsflfsqtm", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834928449, + "stop_time_in_millis": 1502834928464, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wXnGW567dEQJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0037_ptwdorrghhtq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834896939, + "stop_time_in_millis": 1502834896954, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1egJva5KLue", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qRiOQuCa0g9G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3XiJQ5nbZ48q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P7Qj9egnLIoM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5XILcfYkBZNF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XaMmlDGvSoOc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TyvmE2eDImUR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n9xITCznjEza", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SRXgCyv1qZte", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xjpQy3w6QAqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yRA6MyjG8RgM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xuhI3EPAsoBr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bXuIYcFdzCFO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0045_ltmpcfdsuwjw", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834939003, + "stop_time_in_millis": 1502834939024, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3sotgo6KG9kS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7xHzoQkQXnlI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oU4eqz0iWrIs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fLc0LfSocgpM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c2m1eTRZXqcS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h7XQIqTk9Uoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SZk1LGvOE0a3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bSkqnc8NefKO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T0RVImNplBvX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QIkcZBnynEwE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ptmpU669tPwQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YnGMdjmgyzmP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sgSauKndpYYX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K8Rj8OwMHN6N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qXtCJEiSkO8j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0038_ikltnxjkiedj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834902181, + "stop_time_in_millis": 1502834902195, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M5hHcMK6UFov", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0040_ovojxfotxjob:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0040_ovojxfotxjob" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0044_luffcxcbvfzt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0044_luffcxcbvfzt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0039_jlheihbiuebl:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0039_jlheihbiuebl" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0045_ltmpcfdsuwjw:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0045_ltmpcfdsuwjw" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0041_zhtugebimydq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0041_zhtugebimydq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0042_zubtcntnyacq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0042_zubtcntnyacq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0043_bwlpsflfsqtm:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0043_bwlpsflfsqtm" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0037_ptwdorrghhtq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0037_ptwdorrghhtq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0038_ikltnxjkiedj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0038_ikltnxjkiedj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6vmMkceuT1-lIxmhoEeAyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.577Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "6vmMkceuT1-lIxmhoEeAyQ" + }, + "stats": { + "state": { + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0042_zubtcntnyacq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0039_jlheihbiuebl", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0040_ovojxfotxjob", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 72, + "query_total": 280 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0041_zhtugebimydq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0044_luffcxcbvfzt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 13 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 13 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0043_bwlpsflfsqtm", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0037_ptwdorrghhtq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 103 + }, + "indexing": { + "index_time_in_millis": 588, + "index_total": 94, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 5369 + }, + "segments": { + "count": 28 + }, + "store": { + "size_in_bytes": 2092858 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1116, + "index_total": 170, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9715 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 60, + "doc_values_memory_in_bytes": 84136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 6254264, + "memory_in_bytes": 2140418, + "norms_memory_in_bytes": 227520, + "points_memory_in_bytes": 4439, + "stored_fields_memory_in_bytes": 18720, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1805603, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 4534559 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0045_ltmpcfdsuwjw", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 37 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 37 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 130, + "query_total": 200 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0038_ikltnxjkiedj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.606Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407924736 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 135 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 877 + }, + "index_total": { + "count": 134 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 115 + }, + "query_total": { + "count": 302 + } + }, + "segments": { + "count": 63, + "doc_values": { + "memory": { + "bytes": 44884 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 6254264 + } + }, + "memory": { + "bytes": 1143661 + }, + "norms": { + "memory": { + "bytes": 118208 + } + }, + "points": { + "memory": { + "bytes": 2296 + } + }, + "stored_fields": { + "memory": { + "bytes": 19656 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 958617 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2698790 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 57, + "ms": 762 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 180581304, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.63916015625 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.563Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 154, + "time": { + "ms": 853 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 244 + } + }, + "search": { + "query": { + "count": 468, + "time": { + "ms": 200 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0042_zubtcntnyacq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834923212, + "stop_time_in_millis": 1502834923231, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dX3owEdHf8Mx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U47MVh9G2qHy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gq1JeklgGlUe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1c1yBpDIcv8q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KrOYlfqJwIi2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GIkqo5122myY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0039_jlheihbiuebl", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834907415, + "stop_time_in_millis": 1502834907426, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0o4tGw4LOwMX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lNoQICjv2hVj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HzX2IcpxRWF3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0040_ovojxfotxjob", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834912689, + "stop_time_in_millis": 1502834912712, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Pk9fPVT5jOxO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dYjBal57Ps5N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kbs35oCwzxTe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FPBmMFZ2K1cN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KLne2U6SdAqz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F2jIiKhZcCcK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l0po2zTnqX4w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0ox5V31tLXZh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FLLtvrk5YEnF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vuwO8MZuDeAH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZCI2yBy9RDtp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vnvwqicE2D7q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wvP5RKrJUSjJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0041_zhtugebimydq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834917941, + "stop_time_in_millis": 1502834917952, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CGql84jIZQcI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7JuptKR5280G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "REgQH4dw00td", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lqJydPrPHlSK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QBdChtDZ3Qlv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0043_bwlpsflfsqtm", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834928449, + "stop_time_in_millis": 1502834928464, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lHEDmyKab6yP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0037_ptwdorrghhtq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834896939, + "stop_time_in_millis": 1502834896954, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1NG3zKhyyXtN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vJZYjY3lAt84", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8oybiXP8IlBo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tnPWLYT2GoCd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1hqAVXYc7YJ0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hbsHiMFQY9a3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9of6jElVki2q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WpaMphBw76TY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GfNEiUbjxT2i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KHiWbHaNIFJd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H8LBIo8G8rIa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVoRfEOTpiuG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Nswpoe8JDWPk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3d0EZGe4DqbC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lW26dQDoNnwA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K26oAceDr9wn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8ri0bvHSSMpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yMT9CKvNLIsi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1vgLuDKk3M5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRXfTRDdXTgW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mJfb8YSK8QeJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l8aaJpzsQ7bN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L70k46YtX3Wc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1swyN38BuU3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xa6GVQogKd99", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HE5brDu18RmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tBZ32rmFXbI7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0038_ikltnxjkiedj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834902181, + "stop_time_in_millis": 1502834902195, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ktaZiWB5YYEt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0039_jlheihbiuebl:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0039_jlheihbiuebl" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0038_ikltnxjkiedj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0038_ikltnxjkiedj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0042_zubtcntnyacq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0042_zubtcntnyacq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0041_zhtugebimydq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0041_zhtugebimydq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0037_ptwdorrghhtq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0037_ptwdorrghhtq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0043_bwlpsflfsqtm:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0043_bwlpsflfsqtm" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0040_ovojxfotxjob:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0040_ovojxfotxjob" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A85X_vR0TFmgdN7W4-KuyQ:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.566Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "A85X_vR0TFmgdN7W4-KuyQ" + }, + "stats": { + "state": { + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0042_zubtcntnyacq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0039_jlheihbiuebl", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0040_ovojxfotxjob", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 71, + "query_total": 272 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0041_zhtugebimydq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0043_bwlpsflfsqtm", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0037_ptwdorrghhtq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 97 + }, + "indexing": { + "index_time_in_millis": 555, + "index_total": 87, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 4929 + }, + "segments": { + "count": 22 + }, + "store": { + "size_in_bytes": 1892034 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1056, + "index_total": 156, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9047 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 48, + "doc_values_memory_in_bytes": 70264, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1725804, + "norms_memory_in_bytes": 183296, + "points_memory_in_bytes": 3565, + "stored_fields_memory_in_bytes": 14976, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1453703, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3959967 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 196 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0038_ikltnxjkiedj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.588Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409878528 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 128 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 826 + }, + "index_total": { + "count": 126 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 115 + }, + "query_total": { + "count": 296 + } + }, + "segments": { + "count": 57, + "doc_values": { + "memory": { + "bytes": 39036 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 969472 + }, + "norms": { + "memory": { + "bytes": 99712 + } + }, + "points": { + "memory": { + "bytes": 1931 + } + }, + "stored_fields": { + "memory": { + "bytes": 17784 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 811009 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2359166 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 54, + "ms": 734 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231591536, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.30859375 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.561Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 147, + "time": { + "ms": 832 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 232 + } + }, + "search": { + "query": { + "count": 456, + "time": { + "ms": 198 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u29JcmKprwnu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFBTh6xOIHSY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VV5vHG2rz7XS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Gm58h43Qd4B5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y0l3evalZk8M", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0039_jlheihbiuebl", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834907415, + "stop_time_in_millis": 1502834907426, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S6eNTN3ARtJD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fCi2yEfo2aL1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zJ7wxubuQLBg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0040_ovojxfotxjob", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834912689, + "stop_time_in_millis": 1502834912712, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sBQOBaimswzg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dwIb0CSW0YAq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QI7OQyoaO2cc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mK3RXDy8LGPB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cOtMMH15JAVc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tOQh7pFsLsyt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZPWiGF7ZhSGz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XKBZAdQLR2J2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FeHiuSWQN5ES", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Tc4TkNN3CIep", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KOlVpf1PPy4j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tQv0JXIo8yI8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uGO9a0NwZnBt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0041_zhtugebimydq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834917941, + "stop_time_in_millis": 1502834917952, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wWKtEoBhNnRA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kKM8vjj2uSbE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lbb1thN3OowE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pespyJHHOKm5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H16MsxYwH3M7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0037_ptwdorrghhtq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834896939, + "stop_time_in_millis": 1502834896954, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ue6NZ5F0ZMzz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QSRMv9QD3sid", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "or1jTiA5MTck", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X8rVs6OaIZxI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c0BmJcwNEWZ8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U7U9bZHTzvbl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DEmfItzdHUkO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DGlalHTfjCwJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CKOO5ELalIiD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tD0FhioEbPUn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Sz1BgtwpgOUq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nS3pziuLxkPX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AQXUmiBPtg19", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jTLzaWHPs6PN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eQ9FrHZ5S5wc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3xVw4Mkvn3K7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QzGkNx8Im0sb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YSpvJMlmOCQ6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aI06rcm9syzV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mpxpIDjaPrV1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uLPkT9nFKrnz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Bzi2w00dPQQg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G6vyU2949nZN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UZXfoR8YytrT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1jZUPep4z9l", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51INTHzbqZiu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FKMAqAKD8e5y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0038_ikltnxjkiedj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834902181, + "stop_time_in_millis": 1502834902195, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EHUl4fl1ASDg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0037_ptwdorrghhtq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0037_ptwdorrghhtq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0039_jlheihbiuebl:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0039_jlheihbiuebl" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0038_ikltnxjkiedj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0038_ikltnxjkiedj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0040_ovojxfotxjob:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0040_ovojxfotxjob" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:fYjS7QwxT42788axNXnZ1Q:many-0041_zhtugebimydq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0041_zhtugebimydq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vccl7mZdTvOSTBRpLfncJg:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "Vccl7mZdTvOSTBRpLfncJg" + }, + "stats": { + "state": { + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0039_jlheihbiuebl", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0040_ovojxfotxjob", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 69, + "query_total": 264 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0041_zhtugebimydq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0037_ptwdorrghhtq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 92 + }, + "indexing": { + "index_time_in_millis": 537, + "index_total": 82, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 4788 + }, + "segments": { + "count": 17 + }, + "store": { + "size_in_bytes": 1555371 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1020, + "index_total": 146, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7948559 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8779 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 38, + "doc_values_memory_in_bytes": 62112, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1439124, + "norms_memory_in_bytes": 153216, + "points_memory_in_bytes": 3029, + "stored_fields_memory_in_bytes": 11856, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1208911, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3322605 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 129, + "query_total": 192 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDx510BY87G63mlFH54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0038_ikltnxjkiedj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDx510BY87G63mlFH55", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.573Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dx510BY87G63mlFH55", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.585Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405954560 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 122 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 806 + }, + "index_total": { + "count": 120 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 112 + }, + "query_total": { + "count": 290 + } + }, + "segments": { + "count": 51, + "doc_values": { + "memory": { + "bytes": 34892 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 824723 + }, + "norms": { + "memory": { + "bytes": 84608 + } + }, + "points": { + "memory": { + "bytes": 1662 + } + }, + "stored_fields": { + "memory": { + "bytes": 15912 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 687649 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2083577 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 52, + "ms": 716 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 195202560, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.80078125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.567Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4324, + "time": { + "ms": 3081 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4324 + } + }, + "search": { + "query": { + "count": 781, + "time": { + "ms": 1002 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LgesjYUgqvRJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JEvxr0f77lKT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cKALlqcl0hq8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVoKlrwgHFRz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PyhJ7LKrcXz0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ENsocIueoaeA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ByIollnKteHN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 102, + "query_total": 252 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 193631, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 21758 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 44 + }, + "indexing": { + "index_time_in_millis": 81, + "index_total": 44, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1300 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 93954 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 81, + "index_total": 44, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1300 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 199, + "query_total": 149 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 4528, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 28794, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 236, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 93954 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2998 + }, + "indexing": { + "index_time_in_millis": 2262, + "index_total": 3940, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 19866471 + }, + "refresh": { + "total_time_in_millis": 9565 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1813996 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2262, + "index_total": 3940, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 19866471 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9565 + }, + "request_cache": { + "memory_size_in_bytes": 74376 + }, + "search": { + "query_time_in_millis": 529, + "query_total": 209 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 71656, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 118219, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2950, + "stored_fields_memory_in_bytes": 2680, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40933, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1813996 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 27, + "query_total": 105 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 192 + }, + "indexing": { + "index_time_in_millis": 118, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1190 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 102649 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 118, + "index_total": 40, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1190 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 65 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 2676, + "fixed_bit_set_memory_in_bytes": 480, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 21008, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 215, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17181, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 102649 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 114 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4108, + "fixed_bit_set_memory_in_bytes": 344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 102960, + "norms_memory_in_bytes": 8832, + "points_memory_in_bytes": 101, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 87695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407347200 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3368 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 3081 + }, + "index_total": { + "count": 4324 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 76711 + } + }, + "search": { + "query_time": { + "ms": 1002 + }, + "query_total": { + "count": 785 + } + }, + "segments": { + "count": 37, + "doc_values": { + "memory": { + "bytes": 84396 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 824 + } + }, + "index_writer": { + "memory": { + "bytes": 193631 + } + }, + "memory": { + "bytes": 301949 + }, + "norms": { + "memory": { + "bytes": 10496 + } + }, + "points": { + "memory": { + "bytes": 3540 + } + }, + "stored_fields": { + "memory": { + "bytes": 11768 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 191749 + } + }, + "version_map": { + "memory": { + "bytes": 21758 + } + } + }, + "store": { + "size": { + "bytes": 2479164 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 86, + "ms": 943 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 161071040, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.267578125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dx510BY87G63mlf38S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:09.901Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407572480 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 138 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 771 + }, + "index_total": { + "count": 137 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 89 + }, + "query_total": { + "count": 185 + } + }, + "segments": { + "count": 63, + "doc_values": { + "memory": { + "bytes": 50204 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1171444 + }, + "norms": { + "memory": { + "bytes": 120896 + } + }, + "points": { + "memory": { + "bytes": 2361 + } + }, + "stored_fields": { + "memory": { + "bytes": 19656 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 978327 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2347454 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 56, + "ms": 797 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253614048, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.005859375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDx510BY87G63mlf38q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:09.920Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 102, + "query_total": 228 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDx510BY87G63mlf38q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:09.920Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 228, + "time": { + "ms": 102 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDx510BY87G63mlf38q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:09.920Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dx510BY87G63mlf38q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:09.920Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200407568384 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 102 + }, + "query_total": { + "count": 228 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 191426224, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.005859375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDx510BY87G63mlMH_t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:49.897Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409989120 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 127 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 700 + }, + "index_total": { + "count": 126 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 86 + }, + "query_total": { + "count": 173 + } + }, + "segments": { + "count": 52, + "doc_values": { + "memory": { + "bytes": 35648 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 847763 + }, + "norms": { + "memory": { + "bytes": 86848 + } + }, + "points": { + "memory": { + "bytes": 1695 + } + }, + "stored_fields": { + "memory": { + "bytes": 16224 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 707348 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2040816 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 51, + "ms": 740 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 280949656, + "pct": 44 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.30859375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDx510BY87G63mlMX8G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:49.916Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 101, + "query_total": 220 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dx510BY87G63mlMX8G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:49.917Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 220, + "time": { + "ms": 101 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDx510BY87G63mlMX8G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:49.917Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDx510BY87G63mlMX8G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:49.917Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409985024 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 101 + }, + "query_total": { + "count": 220 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 189223704, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.30859375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dx510BY87G63mlWH8P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:59.900Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408723456 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 131 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 744 + }, + "index_total": { + "count": 131 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 87 + }, + "query_total": { + "count": 179 + } + }, + "segments": { + "count": 56, + "doc_values": { + "memory": { + "bytes": 39184 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 6069456 + } + }, + "memory": { + "bytes": 951579 + }, + "norms": { + "memory": { + "bytes": 97792 + } + }, + "points": { + "memory": { + "bytes": 1914 + } + }, + "stored_fields": { + "memory": { + "bytes": 17472 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 795217 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2343762 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 53, + "ms": 762 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 215434712, + "pct": 34 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.63916015625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDx510BY87G63mlWH8g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:59.921Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 102, + "query_total": 224 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDx510BY87G63mlWH8g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:59.921Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 224, + "time": { + "ms": 102 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDx510BY87G63mlWH8g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:59.921Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dx510BY87G63mlWH8g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:59.922Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408723456 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 102 + }, + "query_total": { + "count": 224 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 189991856, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.63916015625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4034, + "time": { + "ms": 2977 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4034 + } + }, + "search": { + "query": { + "count": 767, + "time": { + "ms": 979 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RIzK369H0DQA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MQKYaNl8WFAE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JiKo3Lv1pfmB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z2eXgFjpS2Th", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fDsiEpxWNwH1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w0CHa34zpdsK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pcqguE0U4mdj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 101, + "query_total": 244 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 193631, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 21758 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 42 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 42, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1281 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 78802 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 752 + }, + "indexing": { + "index_time_in_millis": 78, + "index_total": 42, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1281 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 199, + "query_total": 149 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 4392, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 20570, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 158, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14772, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 78802 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2744 + }, + "indexing": { + "index_time_in_millis": 2164, + "index_total": 3654, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 19866471 + }, + "refresh": { + "total_time_in_millis": 9467 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1387069 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2164, + "index_total": 3654, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 19866471 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9467 + }, + "request_cache": { + "memory_size_in_bytes": 36768 + }, + "search": { + "query_time_in_millis": 507, + "query_total": 203 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 62448, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 75650, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1351, + "stored_fields_memory_in_bytes": 808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11043, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1387069 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 27, + "query_total": 105 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 182 + }, + "indexing": { + "index_time_in_millis": 115, + "index_total": 38, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1166 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 52143 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 115, + "index_total": 38, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1166 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 65 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2540, + "fixed_bit_set_memory_in_bytes": 192, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 9104, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 75, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6177, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52143 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.570Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 114 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4108, + "fixed_bit_set_memory_in_bytes": 344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 102960, + "norms_memory_in_bytes": 8832, + "points_memory_in_bytes": 101, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 87695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.573Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409092096 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3102 + }, + "fielddata": { + "memory": { + "bytes": 752 + } + }, + "indexing": { + "index_time": { + "ms": 2977 + }, + "index_total": { + "count": 4034 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 39103 + } + }, + "search": { + "query_time": { + "ms": 979 + }, + "query_total": { + "count": 771 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 74916 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 536 + } + }, + "index_writer": { + "memory": { + "bytes": 193631 + } + }, + "memory": { + "bytes": 239252 + }, + "norms": { + "memory": { + "bytes": 10496 + } + }, + "points": { + "memory": { + "bytes": 1723 + } + }, + "stored_fields": { + "memory": { + "bytes": 8648 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 143469 + } + }, + "version_map": { + "memory": { + "bytes": 21758 + } + } + }, + "store": { + "size": { + "bytes": 1971434 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 83, + "ms": 922 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 272951440, + "pct": 43 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.3359375 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.560Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4177, + "time": { + "ms": 3028 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4177 + } + }, + "search": { + "query": { + "count": 774, + "time": { + "ms": 986 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yIx35lXhbqnu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OuHez2GHDLYq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NS16IWn6xScJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HHyQjxtMiW8u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XrBzZ11bZ48f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QtBrsdG6OEzl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0Gc3KKw3srPX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.561Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 101, + "query_total": 248 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 193631, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 21758 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 43 + }, + "indexing": { + "index_time_in_millis": 79, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1289 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 78802 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 79, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1289 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 199, + "query_total": 149 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 4460, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 24682, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 197, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 18465, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 78802 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 2869 + }, + "indexing": { + "index_time_in_millis": 2212, + "index_total": 3795, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 19866471 + }, + "refresh": { + "total_time_in_millis": 9520 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1599581 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2212, + "index_total": 3795, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 19866471 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9520 + }, + "request_cache": { + "memory_size_in_bytes": 55200 + }, + "search": { + "query_time_in_millis": 514, + "query_total": 206 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 66988, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 96871, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2151, + "stored_fields_memory_in_bytes": 1744, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25988, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1599581 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 27, + "query_total": 105 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 187 + }, + "indexing": { + "index_time_in_millis": 117, + "index_total": 39, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1177 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 77396 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 117, + "index_total": 39, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1177 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 65 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 2608, + "fixed_bit_set_memory_in_bytes": 336, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 15056, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 145, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11679, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 77396 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.568Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 114 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4108, + "fixed_bit_set_memory_in_bytes": 344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 102960, + "norms_memory_in_bytes": 8832, + "points_memory_in_bytes": 101, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 87695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.575Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200409247744 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3233 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 3028 + }, + "index_total": { + "count": 4177 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 57535 + } + }, + "search": { + "query_time": { + "ms": 987 + }, + "query_total": { + "count": 778 + } + }, + "segments": { + "count": 32, + "doc_values": { + "memory": { + "bytes": 79592 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 680 + } + }, + "index_writer": { + "memory": { + "bytes": 193631 + } + }, + "memory": { + "bytes": 270537 + }, + "norms": { + "memory": { + "bytes": 10496 + } + }, + "points": { + "memory": { + "bytes": 2632 + } + }, + "stored_fields": { + "memory": { + "bytes": 10208 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 167609 + } + }, + "version_map": { + "memory": { + "bytes": 21758 + } + } + }, + "store": { + "size": { + "bytes": 2224351 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 85, + "ms": 936 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131134912, + "pct": 20 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.04345703125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.605Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 167, + "time": { + "ms": 950 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 266 + } + }, + "search": { + "query": { + "count": 492, + "time": { + "ms": 205 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0007_mxvmbvasfwgs", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834739394, + "stop_time_in_millis": 1502834739408, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlXRl1eyd4Ig", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0031_fxorlpwalavg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834865388, + "stop_time_in_millis": 1502834865397, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T6u8slCEKgs5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0019_ndalddfjgufk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834802367, + "stop_time_in_millis": 1502834802388, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S8Brakh3lIgQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": "many-0036_adfausziddxf", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834891662, + "stop_time_in_millis": 1502834891684, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m04hQU52K3WX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0039_jlheihbiuebl", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834907415, + "stop_time_in_millis": 1502834907426, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GOL6PKdh05sM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0027_mgjbfctaouye", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834844396, + "stop_time_in_millis": 1502834844414, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C6APqmLhi2WN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0040_ovojxfotxjob", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834912689, + "stop_time_in_millis": 1502834912712, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zML4u7V1eacG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0046_ellytnrhnntk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834944277, + "stop_time_in_millis": 1502834944291, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lrxfkmZ9eNVo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0018_cqvqbvviqkbq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834797089, + "stop_time_in_millis": 1502834797105, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HhlGKfRsS4W2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0001_usolspctvixr", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834707937, + "stop_time_in_millis": 1502834707950, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFuTPFES3Qi4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0025_vawspzrdnyct", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834833927, + "stop_time_in_millis": 1502834833939, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9PSqIXhCsdI5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0004_kuqyulmfycqu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834723653, + "stop_time_in_millis": 1502834723676, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 22, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iEjqyKfFhYC9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0017_qknyzowuxyfq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834791824, + "stop_time_in_millis": 1502834791846, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iEGPSGApfouQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0023_uumzyypujcfv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834823389, + "stop_time_in_millis": 1502834823398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rU1RjIxsP4zo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0041_zhtugebimydq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834917941, + "stop_time_in_millis": 1502834917952, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TSfsgBZTBRVA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0020_fnowlofululq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834807597, + "stop_time_in_millis": 1502834807610, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RXT8X6Zc6AVi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0043_bwlpsflfsqtm", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834928449, + "stop_time_in_millis": 1502834928464, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kHwsMfrP4w6i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0037_ptwdorrghhtq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834896939, + "stop_time_in_millis": 1502834896954, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 7 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d2c94WCAv4xh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0013_srtjvyouhwsc", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834770865, + "stop_time_in_millis": 1502834770877, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0BvwOCJnhhAL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0008_awsqbxzzmcsq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834744635, + "stop_time_in_millis": 1502834744654, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C6SXNbRlsi8J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0014_iscldpuqptrt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834776086, + "stop_time_in_millis": 1502834776108, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V9jmZg0gbWie", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0002_glortdckrgym", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834713164, + "stop_time_in_millis": 1502834713185, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RwBlXesqiWlY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0009_qiqmrhhrafwx", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834749916, + "stop_time_in_millis": 1502834749926, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GMmPcneGKNsb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0016_iuvmupvcgawu", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834786552, + "stop_time_in_millis": 1502834786577, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fibV21YfmYlR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0026_jjrjravprkso", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834839161, + "stop_time_in_millis": 1502834839181, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gNvBJmm97hT4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0028_fzanacxwhzla", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834849628, + "stop_time_in_millis": 1502834849643, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 15, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eHh30Ggrmadh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0012_atsfgyhouqbj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834765625, + "stop_time_in_millis": 1502834765646, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OphniKTbZ6h7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0038_ikltnxjkiedj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834902181, + "stop_time_in_millis": 1502834902195, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nJQvBP59BYvE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0034_ikhxjcqdifun", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834881142, + "stop_time_in_millis": 1502834881156, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2hiRu0jjrnbE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0042_zubtcntnyacq", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834923212, + "stop_time_in_millis": 1502834923231, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j797HzVdCuzQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0022_spxurtkyxrdg", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834818111, + "stop_time_in_millis": 1502834818131, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 19, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y030nOdJeQm0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0011_zaalrhxqbfnn", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834760393, + "stop_time_in_millis": 1502834760403, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bSnGncHZNcgc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0047_nfoueebqbqor", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834949511, + "stop_time_in_millis": 1502834949529, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uljKMwkPlbj9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0032_ifzqjjlsdzwy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834870594, + "stop_time_in_millis": 1502834870614, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7A6rT8JiZTFD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0024_eahohxupgbbv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834828669, + "stop_time_in_millis": 1502834828699, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 30, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 22 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CTZkovQL51Yz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0030_sjruafrgzzpk", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834860138, + "stop_time_in_millis": 1502834860149, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 11, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 4 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "maZyLv7qJcHl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0006_wrzrmndiatim", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834734138, + "stop_time_in_millis": 1502834734171, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NiM2iED7tTvZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "901jGFpqkjHE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MLCbuDXlGftS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0005_sdnyjwpmgfet", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834728904, + "stop_time_in_millis": 1502834728914, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1AWyQYbaFTg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0033_rqnkkosdcxpi", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834875876, + "stop_time_in_millis": 1502834875897, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pm1I0kouLoIv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0021_uwatpgnbybnh", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834812874, + "stop_time_in_millis": 1502834812892, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 18, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 14 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W9XyGVhKaDSV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0044_luffcxcbvfzt", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834933699, + "stop_time_in_millis": 1502834933734, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 35, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uSbvkky0FUho", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yxXMEwEGEitd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFMlqZ03VeAK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ubu3Pzy2VV0g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j4du8Z1TrvuW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wasl1J3lRvF4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Gw1unPMzyzeX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jYg2TTDqQrer", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LqXpbrRqaZZX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v5Y1ASTgutAa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jivOGg40F2eP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0045_ltmpcfdsuwjw", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834939003, + "stop_time_in_millis": 1502834939024, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J3saXZJLZ4CE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0029_efpvvsgficoe", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834854903, + "stop_time_in_millis": 1502834854924, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DrkuXlQEy7oX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0010_qytmcjgkatcv", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834755137, + "stop_time_in_millis": 1502834755158, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1SVwJ4SaMEVx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0035_yrtakxvwemzj", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834886389, + "stop_time_in_millis": 1502834886398, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 9, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3hBuhhbdXfEr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "15fYEl2UUgMg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlLuNKHMJ3DZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0003_znaspuehbmqy", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834718421, + "stop_time_in_millis": 1502834718430, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 8, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 5 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wOUGj4598Ctt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "many-0015_wxasunfvsgqp", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834781326, + "stop_time_in_millis": 1502834781339, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0020_fnowlofululq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0020_fnowlofululq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0005_sdnyjwpmgfet:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0005_sdnyjwpmgfet" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0017_qknyzowuxyfq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0017_qknyzowuxyfq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0030_sjruafrgzzpk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0030_sjruafrgzzpk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0027_mgjbfctaouye:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0027_mgjbfctaouye" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0001_usolspctvixr:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0001_usolspctvixr" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0039_jlheihbiuebl:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0039_jlheihbiuebl" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0008_awsqbxzzmcsq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0008_awsqbxzzmcsq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0016_iuvmupvcgawu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0016_iuvmupvcgawu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0022_spxurtkyxrdg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0022_spxurtkyxrdg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0003_znaspuehbmqy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0003_znaspuehbmqy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0033_rqnkkosdcxpi:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0033_rqnkkosdcxpi" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0045_ltmpcfdsuwjw:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0045_ltmpcfdsuwjw" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0043_bwlpsflfsqtm:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0043_bwlpsflfsqtm" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0035_yrtakxvwemzj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0035_yrtakxvwemzj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0038_ikltnxjkiedj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0038_ikltnxjkiedj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0025_vawspzrdnyct:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0025_vawspzrdnyct" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0029_efpvvsgficoe:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0029_efpvvsgficoe" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0010_qytmcjgkatcv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0010_qytmcjgkatcv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0021_uwatpgnbybnh:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0021_uwatpgnbybnh" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0041_zhtugebimydq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0041_zhtugebimydq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0014_iscldpuqptrt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0014_iscldpuqptrt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0012_atsfgyhouqbj:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0012_atsfgyhouqbj" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0026_jjrjravprkso:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0026_jjrjravprkso" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0019_ndalddfjgufk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0019_ndalddfjgufk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0004_kuqyulmfycqu:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0004_kuqyulmfycqu" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0040_ovojxfotxjob:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0040_ovojxfotxjob" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0031_fxorlpwalavg:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0031_fxorlpwalavg" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0028_fzanacxwhzla:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0028_fzanacxwhzla" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0013_srtjvyouhwsc:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0013_srtjvyouhwsc" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0018_cqvqbvviqkbq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0018_cqvqbvviqkbq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0042_zubtcntnyacq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0042_zubtcntnyacq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0002_glortdckrgym:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0002_glortdckrgym" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0044_luffcxcbvfzt:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0044_luffcxcbvfzt" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0034_ikhxjcqdifun:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0034_ikhxjcqdifun" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0032_ifzqjjlsdzwy:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0009_qiqmrhhrafwx:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0009_qiqmrhhrafwx" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0007_mxvmbvasfwgs:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0007_mxvmbvasfwgs" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0023_uumzyypujcfv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0023_uumzyypujcfv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0047_nfoueebqbqor:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0047_nfoueebqbqor" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0046_ellytnrhnntk:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0046_ellytnrhnntk" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0015_wxasunfvsgqp:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0015_wxasunfvsgqp" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0006_wrzrmndiatim:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0006_wrzrmndiatim" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0024_eahohxupgbbv:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0024_eahohxupgbbv" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:ZcUHP_QBQzeRjE5by3TbvQ:many-0036_adfausziddxf:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0036_adfausziddxf" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0011_zaalrhxqbfnn:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0011_zaalrhxqbfnn" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw:fYjS7QwxT42788axNXnZ1Q:many-0037_ptwdorrghhtq:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.625Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xMLPuvFsTeC5JOYZ8BFMfw" + }, + "stats": { + "state": { + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw" + } + } + }, + "index": { + "name": "many-0037_ptwdorrghhtq" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0007_mxvmbvasfwgs", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0031_fxorlpwalavg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0019_ndalddfjgufk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0036_adfausziddxf", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0039_jlheihbiuebl", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0027_mgjbfctaouye", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0040_ovojxfotxjob", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 12 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0046_ellytnrhnntk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0018_cqvqbvviqkbq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 9, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0001_usolspctvixr", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0025_vawspzrdnyct", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0004_kuqyulmfycqu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0017_qknyzowuxyfq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 43 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0023_uumzyypujcfv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0041_zhtugebimydq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0020_fnowlofululq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0043_bwlpsflfsqtm", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0037_ptwdorrghhtq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0013_srtjvyouhwsc", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0008_awsqbxzzmcsq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0014_iscldpuqptrt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0002_glortdckrgym", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 24 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0009_qiqmrhhrafwx", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0016_iuvmupvcgawu", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 5, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0026_jjrjravprkso", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0028_fzanacxwhzla", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0012_atsfgyhouqbj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0038_ikltnxjkiedj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0034_ikhxjcqdifun", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 22 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0042_zubtcntnyacq", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0022_spxurtkyxrdg", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 18, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0011_zaalrhxqbfnn", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 23 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0047_nfoueebqbqor", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0032_ifzqjjlsdzwy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0024_eahohxupgbbv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 17 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0030_sjruafrgzzpk", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 4, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0006_wrzrmndiatim", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 74, + "query_total": 288 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0005_sdnyjwpmgfet", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 19 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0033_rqnkkosdcxpi", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 15, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0021_uwatpgnbybnh", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0044_luffcxcbvfzt", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 13 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 13 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 106 + }, + "indexing": { + "index_time_in_millis": 597, + "index_total": 96, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 5464 + }, + "segments": { + "count": 31 + }, + "store": { + "size_in_bytes": 2640063 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1135, + "index_total": 174, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8574218 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9873 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 56, + "doc_values_memory_in_bytes": 90120, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2054287, + "norms_memory_in_bytes": 217856, + "points_memory_in_bytes": 4268, + "stored_fields_memory_in_bytes": 17472, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1724571, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4943537 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0045_ltmpcfdsuwjw", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 37 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 22, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 37 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0029_efpvvsgficoe", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 15 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0010_qytmcjgkatcv", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 3, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0035_yrtakxvwemzj", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 7 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 204 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDx510BY87G63mliX_6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0003_znaspuehbmqy", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDx510BY87G63mliX_7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.653Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "many-0015_wxasunfvsgqp", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 3692 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 8 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1409, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 1, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 964, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 3692 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dx510BY87G63mliX_7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.671Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200408059904 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 139 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 889 + }, + "index_total": { + "count": 137 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 116 + }, + "query_total": { + "count": 309 + } + }, + "segments": { + "count": 58, + "doc_values": { + "memory": { + "bytes": 44608 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 979910 + }, + "norms": { + "memory": { + "bytes": 100480 + } + }, + "points": { + "memory": { + "bytes": 1972 + } + }, + "stored_fields": { + "memory": { + "bytes": 18096 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 814754 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2430420 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 60, + "ms": 803 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 113466848, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.005859375 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.580Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4589, + "time": { + "ms": 3195 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4589 + } + }, + "search": { + "query": { + "count": 859, + "time": { + "ms": 1108 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0X42hJjteO3z", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8Iqbb8Y318SY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RNJyUViWCNtg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "woz8IrC6BzH9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "46Wr5HEoERkf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oYZi3OUtzJfJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "grqJW2Nm5KMm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 103, + "query_total": 264 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 193631, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 21758 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 47 + }, + "indexing": { + "index_time_in_millis": 87, + "index_total": 47, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1332 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 139405 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 896 + }, + "indexing": { + "index_time_in_millis": 87, + "index_total": 47, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1332 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 211, + "query_total": 164 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 4732, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 41130, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 353, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33237, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 139405 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3195 + }, + "indexing": { + "index_time_in_millis": 2364, + "index_total": 4199, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 21801393 + }, + "refresh": { + "total_time_in_millis": 9809 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1865760 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 3888 + }, + "indexing": { + "index_time_in_millis": 2364, + "index_total": 4199, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 21801393 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9809 + }, + "request_cache": { + "memory_size_in_bytes": 196380 + }, + "search": { + "query_time_in_millis": 605, + "query_total": 240 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 76000, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 122427, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2959, + "stored_fields_memory_in_bytes": 2704, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 40764, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1865760 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 456 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 29, + "query_total": 110 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 207 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1279 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 178421 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 124, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1279 + }, + "request_cache": { + "memory_size_in_bytes": 14114 + }, + "search": { + "query_time_in_millis": 146, + "query_total": 80 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 2880, + "fixed_bit_set_memory_in_bytes": 912, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38864, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 425, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33687, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 178421 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 114 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4108, + "fixed_bit_set_memory_in_bytes": 344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 102960, + "norms_memory_in_bytes": 8832, + "points_memory_in_bytes": 101, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 87695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406241280 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3583 + }, + "fielddata": { + "memory": { + "bytes": 6040 + } + }, + "indexing": { + "index_time": { + "ms": 3195 + }, + "index_total": { + "count": 4589 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 230043 + } + }, + "search": { + "query_time": { + "ms": 1108 + }, + "query_total": { + "count": 863 + } + }, + "segments": { + "count": 43, + "doc_values": { + "memory": { + "bytes": 89148 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1256 + } + }, + "index_writer": { + "memory": { + "bytes": 193631 + } + }, + "memory": { + "bytes": 336349 + }, + "norms": { + "memory": { + "bytes": 10496 + } + }, + "points": { + "memory": { + "bytes": 3876 + } + }, + "stored_fields": { + "memory": { + "bytes": 13664 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 219165 + } + }, + "version_map": { + "memory": { + "bytes": 21758 + } + } + }, + "store": { + "size": { + "bytes": 2652168 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 90, + "ms": 977 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 161166864, + "pct": 25 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.39404296875 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.579Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 122, + "time": { + "ms": 751 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 223 + } + }, + "search": { + "query": { + "count": 516, + "time": { + "ms": 207 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r97j8mOyvEOG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XGpng3uDBOnk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K6YRmr2woJCj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zH1l9Q83WWLA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I0Tv9oNpIiNE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YbXunQVBTP3R", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wjI8s7oxSySy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KOcdIlp850wh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1n1TJkQe2PX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "coKAXwa7PNEu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FpkykZ11PM4o", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HRUilbImt0qz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CGFfrWJeh3WR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wKUOVnnGRySNkcr-kmufEg:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "wKUOVnnGRySNkcr-kmufEg" + }, + "stats": { + "state": { + "state_uuid": "wKUOVnnGRySNkcr-kmufEg" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 212 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 108 + }, + "indexing": { + "index_time_in_millis": 601, + "index_total": 98, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 5503 + }, + "segments": { + "count": 33 + }, + "store": { + "size_in_bytes": 2745156 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1144, + "index_total": 178, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8574218 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10005 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 60, + "doc_values_memory_in_bytes": 92840, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2165681, + "norms_memory_in_bytes": 229632, + "points_memory_in_bytes": 4464, + "stored_fields_memory_in_bytes": 18720, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1820025, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 5153723 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 76, + "query_total": 304 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.597Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406441984 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 117 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 893 + }, + "index_total": { + "count": 139 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 118 + }, + "query_total": { + "count": 321 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 44336 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1001791 + }, + "norms": { + "memory": { + "bytes": 104832 + } + }, + "points": { + "memory": { + "bytes": 2046 + } + }, + "stored_fields": { + "memory": { + "bytes": 11232 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 839345 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2446905 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 60, + "ms": 803 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 282709568, + "pct": 44 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.39404296875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dx510BY87G63ml9IBa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:39.913Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405426176 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 120 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 793 + }, + "index_total": { + "count": 143 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 92 + }, + "query_total": { + "count": 203 + } + }, + "segments": { + "count": 45, + "doc_values": { + "memory": { + "bytes": 53468 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 5927032 + } + }, + "memory": { + "bytes": 1297655 + }, + "norms": { + "memory": { + "bytes": 136256 + } + }, + "points": { + "memory": { + "bytes": 2654 + } + }, + "stored_fields": { + "memory": { + "bytes": 14040 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 1091237 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2783389 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 59, + "ms": 827 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 147910104, + "pct": 23 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDx510BY87G63ml9IBk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:39.927Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 105, + "query_total": 240 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDx510BY87G63ml9IBk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:39.927Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 240, + "time": { + "ms": 105 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDx510BY87G63ml9IBk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:39.927Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dx510BY87G63ml9IBk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:39.927Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405426176 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 105 + }, + "query_total": { + "count": 240 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194767080, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDx510BY87G63mlpn8n", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:19.906Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405377024 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 138 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 771 + }, + "index_total": { + "count": 137 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 89 + }, + "query_total": { + "count": 191 + } + }, + "segments": { + "count": 63, + "doc_values": { + "memory": { + "bytes": 50204 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1171444 + }, + "norms": { + "memory": { + "bytes": 120896 + } + }, + "points": { + "memory": { + "bytes": 2361 + } + }, + "stored_fields": { + "memory": { + "bytes": 19656 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 978327 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2763212 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 56, + "ms": 797 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 257558400, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.01123046875 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDx510BY87G63mlpn89", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:19.924Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 103, + "query_total": 232 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dx510BY87G63mlpn89", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:19.924Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 232, + "time": { + "ms": 103 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDx510BY87G63mlpn89", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:19.925Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDx510BY87G63mlpn89", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:19.925Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405372928 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 103 + }, + "query_total": { + "count": 232 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 192187432, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.01123046875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDx510BY87G63mlzYBF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:29.909Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406556672 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 117 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 776 + }, + "index_total": { + "count": 139 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 90 + }, + "query_total": { + "count": 197 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 50000 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1194734 + }, + "norms": { + "memory": { + "bytes": 125312 + } + }, + "points": { + "memory": { + "bytes": 2436 + } + }, + "stored_fields": { + "memory": { + "bytes": 13104 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 1003882 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2783389 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 57, + "ms": 806 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 226251992, + "pct": 35 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.39404296875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDx510BY87G63mlzYBb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:29.924Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 104, + "query_total": 236 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDx510BY87G63mlzYBb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:29.925Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 236, + "time": { + "ms": 104 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dx510BY87G63mlzYBb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:29.926Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDx510BY87G63mlzYBb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:29.926Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406552576 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 104 + }, + "query_total": { + "count": 236 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 193433024, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.39404296875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4532, + "time": { + "ms": 3170 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4532 + } + }, + "search": { + "query": { + "count": 806, + "time": { + "ms": 1046 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "otSGw0u5XEe9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KGZP8RrxatOo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iDl8WTjHD1wD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nPXp2a3FQD6y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gwIHZ2qDi7ix", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oiEH4mf0nVeV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H4MfovfQrVb2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 103, + "query_total": 260 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 193631, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 21758 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 46 + }, + "indexing": { + "index_time_in_millis": 84, + "index_total": 46, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1318 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 139405 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 848 + }, + "indexing": { + "index_time_in_millis": 84, + "index_total": 46, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1318 + }, + "request_cache": { + "memory_size_in_bytes": 8124 + }, + "search": { + "query_time_in_millis": 203, + "query_total": 152 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 4664, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 37018, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 314, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29544, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 139405 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3170 + }, + "indexing": { + "index_time_in_millis": 2343, + "index_total": 4144, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 21801393 + }, + "refresh": { + "total_time_in_millis": 9763 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1683821 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 3848 + }, + "indexing": { + "index_time_in_millis": 2343, + "index_total": 4144, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 21801393 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9763 + }, + "request_cache": { + "memory_size_in_bytes": 85761 + }, + "search": { + "query_time_in_millis": 562, + "query_total": 219 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 71716, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 101645, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2160, + "stored_fields_memory_in_bytes": 1768, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 26001, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1683821 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 456 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 28, + "query_total": 106 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 202 + }, + "indexing": { + "index_time_in_millis": 123, + "index_total": 42, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 153162 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 123, + "index_total": 42, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1253 + }, + "request_cache": { + "memory_size_in_bytes": 7057 + }, + "search": { + "query_time_in_millis": 136, + "query_total": 68 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 2812, + "fixed_bit_set_memory_in_bytes": 768, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 32912, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 355, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 28185, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 153162 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 114 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4108, + "fixed_bit_set_memory_in_bytes": 344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 102960, + "norms_memory_in_bytes": 8832, + "points_memory_in_bytes": 101, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 87695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.594Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406724608 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3552 + }, + "fielddata": { + "memory": { + "bytes": 5952 + } + }, + "indexing": { + "index_time": { + "ms": 3170 + }, + "index_total": { + "count": 4532 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 104243 + } + }, + "search": { + "query_time": { + "ms": 1046 + }, + "query_total": { + "count": 810 + } + }, + "segments": { + "count": 38, + "doc_values": { + "memory": { + "bytes": 84728 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1112 + } + }, + "index_writer": { + "memory": { + "bytes": 193631 + } + }, + "memory": { + "bytes": 305503 + }, + "norms": { + "memory": { + "bytes": 10496 + } + }, + "points": { + "memory": { + "bytes": 2968 + } + }, + "stored_fields": { + "memory": { + "bytes": 12104 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 195207 + } + }, + "version_map": { + "memory": { + "bytes": 21758 + } + } + }, + "store": { + "size": { + "bytes": 2429808 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 89, + "ms": 970 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 119812248, + "pct": 19 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.01123046875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4475, + "time": { + "ms": 3142 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4475 + } + }, + "search": { + "query": { + "count": 788, + "time": { + "ms": 1009 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bhQQ5vFkEgRP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Vf6CdNEVxO5G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "if1o6pmoMxiY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S26uFgepN1AY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bZ3PiC7HhGA0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pw7zv4VV3Z1h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nGw1rrnLWHb8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.578Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 102, + "query_total": 256 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 19, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 193631, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 21758 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 45 + }, + "indexing": { + "index_time_in_millis": 82, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "refresh": { + "total_time_in_millis": 1309 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 124253 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 82, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 635317 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1309 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 199, + "query_total": 149 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4596, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 32906, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 275, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25851, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 124253 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3131 + }, + "indexing": { + "index_time_in_millis": 2319, + "index_total": 4089, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 21801393 + }, + "refresh": { + "total_time_in_millis": 9699 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1502111 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2319, + "index_total": 4089, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 21801393 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9699 + }, + "request_cache": { + "memory_size_in_bytes": 94672 + }, + "search": { + "query_time_in_millis": 536, + "query_total": 212 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 67536, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 80968, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1362, + "stored_fields_memory_in_bytes": 832, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11238, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1502111 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 25, + "index_total": 12, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 510 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 27, + "query_total": 105 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 197 + }, + "indexing": { + "index_time_in_millis": 121, + "index_total": 41, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1201 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 127905 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 121, + "index_total": 41, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1201 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 65 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 2744, + "fixed_bit_set_memory_in_bytes": 624, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 26960, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 285, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22683, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 127905 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41200 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 246, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2856 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41200 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.579Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 114 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 200, + "index_total": 90, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 782420 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1689 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 4108, + "fixed_bit_set_memory_in_bytes": 344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 102960, + "norms_memory_in_bytes": 8832, + "points_memory_in_bytes": 101, + "stored_fields_memory_in_bytes": 2224, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 87695, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405581824 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3507 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 3142 + }, + "index_total": { + "count": 4475 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 97007 + } + }, + "search": { + "query_time": { + "ms": 1010 + }, + "query_total": { + "count": 792 + } + }, + "segments": { + "count": 33, + "doc_values": { + "memory": { + "bytes": 80412 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 968 + } + }, + "index_writer": { + "memory": { + "bytes": 193631 + } + }, + "memory": { + "bytes": 274762 + }, + "norms": { + "memory": { + "bytes": 10496 + } + }, + "points": { + "memory": { + "bytes": 2061 + } + }, + "stored_fields": { + "memory": { + "bytes": 10544 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 171249 + } + }, + "version_map": { + "memory": { + "bytes": 21758 + } + } + }, + "store": { + "size": { + "bytes": 2207689 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 87, + "ms": 950 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253442976, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.005859375 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.565Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 121, + "time": { + "ms": 749 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 221 + } + }, + "search": { + "query": { + "count": 504, + "time": { + "ms": 206 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eKuO12YedPfg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W9xArIAOxXEN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlmAvlg7fCGo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Lsxarbk7GXp4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E3w68Pa8zE0g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4ckt9XEIF9sv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O2Epte7xENYB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NCwYZqT8A7mI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vqqQFJvrTl13", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2IEDJQ0h8p7k", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Tu4jJGyw2nXH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5ZScEKK99Rg7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hg5SVyNC9sHB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.567Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 131, + "query_total": 208 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 107 + }, + "indexing": { + "index_time_in_millis": 599, + "index_total": 97, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 4518178 + }, + "refresh": { + "total_time_in_millis": 5486 + }, + "segments": { + "count": 32 + }, + "store": { + "size_in_bytes": 2640063 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1140, + "index_total": 176, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 8574218 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9967 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 58, + "doc_values_memory_in_bytes": 92432, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2126721, + "norms_memory_in_bytes": 225664, + "points_memory_in_bytes": 4416, + "stored_fields_memory_in_bytes": 18096, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1786113, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4943537 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 75, + "query_total": 296 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.588Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406822912 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 116 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 891 + }, + "index_total": { + "count": 138 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 117 + }, + "query_total": { + "count": 315 + } + }, + "segments": { + "count": 35, + "doc_values": { + "memory": { + "bytes": 44132 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 982311 + }, + "norms": { + "memory": { + "bytes": 102848 + } + }, + "points": { + "memory": { + "bytes": 2022 + } + }, + "stored_fields": { + "memory": { + "bytes": 10920 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 822389 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2341812 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 60, + "ms": 803 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231663056, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.01123046875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 139, + "time": { + "ms": 814 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 256 + } + }, + "search": { + "query": { + "count": 642, + "time": { + "ms": 224 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YVDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U6xWIKFlr5WN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AkV4hO5zgJd2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4WgVQNLPMd8k", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVCpTz440cEO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FYLNkEh4aUxQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tsHTB6XVWfEn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dqUdrYNJbAdp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LuBsQK1rjI6X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w5MB9njSIo7G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qvfuOpdNbES3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tQFhyY7QM1VC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "30BpItROXAUA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WobgyaFxNHcZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FQHCI9yDROUH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFM85JjXmfy3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3JrxuG5tbTZN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kzMiACFrNMgG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jJM4Y8zhyhoX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u66LArwYwsFb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Wq2U8l7v1zis", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BzSS40uQmZsi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R566ewcQqFqJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LufYIUMRxILL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UpGUEsuro8T7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bKDMeS8MTIi5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZFDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.ml-notifications:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-notifications:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uCu91vppTT6whnIdJFQaTw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.607Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "uCu91vppTT6whnIdJFQaTw" + }, + "stats": { + "state": { + "state_uuid": "uCu91vppTT6whnIdJFQaTw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZVDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 133, + "query_total": 224 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 121 + }, + "indexing": { + "index_time_in_millis": 658, + "index_total": 112, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6118522 + }, + "refresh": { + "total_time_in_millis": 5929 + }, + "segments": { + "count": 28 + }, + "store": { + "size_in_bytes": 2477487 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1258, + "index_total": 206, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 10946841 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10952 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 59, + "doc_values_memory_in_bytes": 97148, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 11853808, + "memory_in_bytes": 2160383, + "norms_memory_in_bytes": 228480, + "points_memory_in_bytes": 4524, + "stored_fields_memory_in_bytes": 18432, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1811799, + "version_map_memory_in_bytes": 260 + }, + "store": { + "size_in_bytes": 4952170 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 81, + "query_total": 328 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 120 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 3 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 31 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 15635 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 65 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12510, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9834, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 31270 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a1Dy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.664Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405082112 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 133 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 955 + }, + "index_total": { + "count": 155 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 128 + }, + "query_total": { + "count": 420 + } + }, + "segments": { + "count": 43, + "doc_values": { + "memory": { + "bytes": 51140 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 5926904 + } + }, + "memory": { + "bytes": 1155982 + }, + "norms": { + "memory": { + "bytes": 120576 + } + }, + "points": { + "memory": { + "bytes": 2390 + } + }, + "stored_fields": { + "memory": { + "bytes": 13424 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 968452 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2794225 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 68, + "ms": 883 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 283010384, + "pct": 45 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.28369140625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.574Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 128, + "time": { + "ms": 774 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 234 + } + }, + "search": { + "query": { + "count": 528, + "time": { + "ms": 211 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1Dx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CE04l0dXmRpK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QeZq8zWq0LAG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rQTPQGYdcxHK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yW5xYVVurhPY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EKUXMQloYveX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wUR5BYmESXAr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d3DwftL0WYnu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RS6lXJnHKmCA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ELHBnaDXSeBl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u47qt19xTvlh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UXaA4zXA0sMD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OxoQYXc1Gadu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WQGDhmczf50B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7ulALLsVnf7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ad1Lle5hwIzS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UPzCk8REmPgO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ACe6mHV0TqKx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c2KEvETU85eu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OjD36OgRiUTd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "INIT", + "start_time_in_millis": 1502834982233, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 342, + "translog": { + "percent": "-1.0%", + "recovered": 0, + "total": -1, + "total_on_start": -1, + "total_time_in_millis": 0 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IaI7j7JhQPpQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pR3dpCXSvveL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3ip6rEZNooHS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "INIT", + "start_time_in_millis": 1502834982238, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 339, + "translog": { + "percent": "-1.0%", + "recovered": 0, + "total": -1, + "total_on_start": -1, + "total_time_in_millis": 0 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MrMqn9TqAUCq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sKAFSD1m0mIY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.578Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.598Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.ml-notifications:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.ml-notifications:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:_na:.ml-anomalies-shared:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "INITIALIZING" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "INITIALIZING" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xAr6f4gsTSylaKK26U1TFA:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "xAr6f4gsTSylaKK26U1TFA" + }, + "stats": { + "state": { + "state_uuid": "xAr6f4gsTSylaKK26U1TFA" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 133, + "query_total": 216 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 113 + }, + "indexing": { + "index_time_in_millis": 622, + "index_total": 103, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 5346132 + }, + "refresh": { + "total_time_in_millis": 5650 + }, + "segments": { + "count": 29 + }, + "store": { + "size_in_bytes": 2943532 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1188, + "index_total": 188, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 9402172 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10450 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 61, + "doc_values_memory_in_bytes": 95508, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 2208463, + "norms_memory_in_bytes": 233984, + "points_memory_in_bytes": 4576, + "stored_fields_memory_in_bytes": 19040, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1855355, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 5683377 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "J1Dx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 78, + "query_total": 312 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 394 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 10 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 591 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KVDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.622Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2, + "index_total": 1, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 16 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 68, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 432968, + "memory_in_bytes": 2085, + "norms_memory_in_bytes": 64, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1639, + "version_map_memory_in_bytes": 130 + }, + "store": { + "size_in_bytes": 5540 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Dx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.650Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406487040 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 123 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 916 + }, + "index_total": { + "count": 144 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 121 + }, + "query_total": { + "count": 343 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 50184 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1175852 + }, + "norms": { + "memory": { + "bytes": 123200 + } + }, + "points": { + "memory": { + "bytes": 2412 + } + }, + "stored_fields": { + "memory": { + "bytes": 13104 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 986952 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2783920 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 63, + "ms": 835 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 224182544, + "pct": 35 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bFDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.585Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4840, + "time": { + "ms": 3311 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4840 + } + }, + "search": { + "query": { + "count": 934, + "time": { + "ms": 1150 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZRWv40pueHOu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AkrH9pkY6o7O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eGKmg1Jwc3a5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mud4Vw9Hqo54", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G4j56HwfUDhl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M7vUu0NmYUBq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B2TXgUysndJ5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "blDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 104, + "query_total": 276 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "b1Dy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 199507, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 24108 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cFDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 50 + }, + "indexing": { + "index_time_in_millis": 92, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1445 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 68080 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 92, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1445 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 214, + "query_total": 176 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 5564, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 17698, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 119, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11079, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68080 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3335 + }, + "indexing": { + "index_time_in_millis": 2440, + "index_total": 4413, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 23788362 + }, + "refresh": { + "total_time_in_millis": 10101 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 1937610 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2440, + "index_total": 4413, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 23788362 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10101 + }, + "request_cache": { + "memory_size_in_bytes": 210855 + }, + "search": { + "query_time_in_millis": 641, + "query_total": 279 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 79104, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 126992, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 3009, + "stored_fields_memory_in_bytes": 2720, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 42159, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1937610 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "clDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 30, + "query_total": 120 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c1Dy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 222 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 46, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1316 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 254193 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 46, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1316 + }, + "request_cache": { + "memory_size_in_bytes": 14114 + }, + "search": { + "query_time_in_millis": 147, + "query_total": 82 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 3084, + "fixed_bit_set_memory_in_bytes": 1344, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 56720, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 635, + "stored_fields_memory_in_bytes": 2808, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 50193, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 254193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dFDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41140 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41140 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.602Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 126 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 217058 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2196, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19060, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 376, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15063, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 217058 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.615Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405106688 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3753 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 3311 + }, + "index_total": { + "count": 4840 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 244518 + } + }, + "search": { + "query_time": { + "ms": 1151 + }, + "query_total": { + "count": 938 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 91376 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1400 + } + }, + "index_writer": { + "memory": { + "bytes": 199507 + } + }, + "memory": { + "bytes": 251438 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 3818 + } + }, + "stored_fields": { + "memory": { + "bytes": 10896 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 142276 + } + }, + "version_map": { + "memory": { + "bytes": 24108 + } + } + }, + "store": { + "size": { + "bytes": 2565712 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 95, + "ms": 1030 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 226806520, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.28369140625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eVDy510BY87G63mlaYCK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:09.926Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405553152 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 137 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 852 + }, + "index_total": { + "count": 161 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 107 + }, + "query_total": { + "count": 290 + } + }, + "segments": { + "count": 35, + "doc_values": { + "memory": { + "bytes": 41828 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 9406660 + } + }, + "memory": { + "bytes": 866161 + }, + "norms": { + "memory": { + "bytes": 89408 + } + }, + "points": { + "memory": { + "bytes": 1756 + } + }, + "stored_fields": { + "memory": { + "bytes": 10936 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 722233 + } + }, + "version_map": { + "memory": { + "bytes": 260 + } + } + }, + "store": { + "size": { + "bytes": 2599609 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 69, + "ms": 918 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 172334760, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.9814453125 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDy510BY87G63mlaYCY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:09.932Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 107, + "query_total": 252 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e1Dy510BY87G63mlaYCY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:09.932Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 252, + "time": { + "ms": 107 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fFDy510BY87G63mlaYCY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:09.933Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fVDy510BY87G63mlaYCY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:09.933Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405549056 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 107 + }, + "query_total": { + "count": 252 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 198585760, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 6.9814453125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDy510BY87G63mlQoB7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:59.921Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405204992 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 133 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 835 + }, + "index_total": { + "count": 155 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 99 + }, + "query_total": { + "count": 254 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 47912 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1047755 + }, + "norms": { + "memory": { + "bytes": 108800 + } + }, + "points": { + "memory": { + "bytes": 2164 + } + }, + "stored_fields": { + "memory": { + "bytes": 12496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 876383 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2463550 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 66, + "ms": 899 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 249709984, + "pct": 39 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.43798828125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDy510BY87G63mlQoCF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:59.932Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 106, + "query_total": 248 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dy510BY87G63mlQoCF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:59.933Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 248, + "time": { + "ms": 106 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDy510BY87G63mlQoCF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:59.933Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDy510BY87G63mlQoCF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:59.933Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405200896 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 106 + }, + "query_total": { + "count": 248 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 196996672, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.43798828125 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OVDy510BY87G63mlG4Bj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:49.917Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406642688 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 127 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 809 + }, + "index_total": { + "count": 149 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 95 + }, + "query_total": { + "count": 218 + } + }, + "segments": { + "count": 34, + "doc_values": { + "memory": { + "bytes": 40976 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 842196 + }, + "norms": { + "memory": { + "bytes": 86976 + } + }, + "points": { + "memory": { + "bytes": 1726 + } + }, + "stored_fields": { + "memory": { + "bytes": 10624 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 701894 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 3046635 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 63, + "ms": 870 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 240047528, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 4.77978515625 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDy510BY87G63mlG4Bx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:49.929Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 105, + "query_total": 244 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "O1Dy510BY87G63mlG4Bx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:49.929Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 244, + "time": { + "ms": 105 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDy510BY87G63mlG4Bx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:49.929Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PVDy510BY87G63mlG4Bx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:49.929Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406638592 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 105 + }, + "query_total": { + "count": 244 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 195539032, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 4.77978515625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LFDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4692, + "time": { + "ms": 3252 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4692 + } + }, + "search": { + "query": { + "count": 896, + "time": { + "ms": 1117 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LVDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p6juYjl1JxGq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "InvmfnUcbYOR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tpuyB4nx27DF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GJ5bgQmCbkAa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UgErZQnNNRLw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PqCwJUBZWYZZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q5nhiagmH1oy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 103, + "query_total": 268 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 199507, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 24108 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 48 + }, + "indexing": { + "index_time_in_millis": 89, + "index_total": 48, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1425 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 154567 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 89, + "index_total": 48, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1425 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 214, + "query_total": 176 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 5428, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 9474, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 41, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3693, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 154567 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3249 + }, + "indexing": { + "index_time_in_millis": 2387, + "index_total": 4269, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 23788362 + }, + "refresh": { + "total_time_in_millis": 9970 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1865760 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2387, + "index_total": 4269, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 23788362 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 9970 + }, + "request_cache": { + "memory_size_in_bytes": 199051 + }, + "search": { + "query_time_in_millis": 609, + "query_total": 249 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 69936, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 83797, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1384, + "stored_fields_memory_in_bytes": 848, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11629, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1865760 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MlDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13339 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 30, + "query_total": 120 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13339 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 212 + }, + "indexing": { + "index_time_in_millis": 127, + "index_total": 44, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1296 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 203676 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 127, + "index_total": 44, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1296 + }, + "request_cache": { + "memory_size_in_bytes": 14114 + }, + "search": { + "query_time_in_millis": 147, + "query_total": 82 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 2948, + "fixed_bit_set_memory_in_bytes": 1056, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 44816, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 495, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 39189, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 203676 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NFDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41140 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41140 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.583Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 126 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 364590 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2196, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19060, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 376, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15063, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 364590 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406425600 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3655 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 3252 + }, + "index_total": { + "count": 4692 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 232714 + } + }, + "search": { + "query_time": { + "ms": 1118 + }, + "query_total": { + "count": 900 + } + }, + "segments": { + "count": 24, + "doc_values": { + "memory": { + "bytes": 81936 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1112 + } + }, + "index_writer": { + "memory": { + "bytes": 199507 + } + }, + "memory": { + "bytes": 188115 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 1975 + } + }, + "stored_fields": { + "memory": { + "bytes": 7776 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 93356 + } + }, + "version_map": { + "memory": { + "bytes": 24108 + } + } + }, + "store": { + "size": { + "bytes": 2223697 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 93, + "ms": 1012 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 163489008, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 5.03173828125 + } + } + }, + "process": { + "cpu": { + "pct": 6 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4766, + "time": { + "ms": 3275 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4766 + } + }, + "search": { + "query": { + "count": 918, + "time": { + "ms": 1140 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S9oxDT4iNbYG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Tonki8Xx8M11", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8GUKzl3mSExf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VUtSOykpMkT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RfoijESWxDgZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Zp2gt1AuPTtV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pcYPOc5OXrJw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.582Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TlDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 104, + "query_total": 272 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1Dy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 199507, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 24108 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 49 + }, + "indexing": { + "index_time_in_millis": 91, + "index_total": 49, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1433 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 52924 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 91, + "index_total": 49, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1433 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 214, + "query_total": 176 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 5496, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13586, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 80, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 7386, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 52924 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UVDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3305 + }, + "indexing": { + "index_time_in_millis": 2407, + "index_total": 4341, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 23788362 + }, + "refresh": { + "total_time_in_millis": 10049 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 1559625 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 3384 + }, + "indexing": { + "index_time_in_millis": 2407, + "index_total": 4341, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 23788362 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10049 + }, + "request_cache": { + "memory_size_in_bytes": 208000 + }, + "search": { + "query_time_in_millis": 631, + "query_total": 267 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 74556, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 105430, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2196, + "stored_fields_memory_in_bytes": 1784, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 26894, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1559625 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 30, + "query_total": 120 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 217 + }, + "indexing": { + "index_time_in_millis": 128, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "refresh": { + "total_time_in_millis": 1305 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 228935 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 128, + "index_total": 45, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1044754 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1305 + }, + "request_cache": { + "memory_size_in_bytes": 14114 + }, + "search": { + "query_time_in_millis": 147, + "query_total": 82 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 3016, + "fixed_bit_set_memory_in_bytes": 1200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 50768, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 565, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 44691, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 228935 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41140 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41140 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.584Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 126 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 217058 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2196, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19060, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 376, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15063, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 217058 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V1Dy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.588Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406142976 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3717 + }, + "fielddata": { + "memory": { + "bytes": 3384 + } + }, + "indexing": { + "index_time": { + "ms": 3275 + }, + "index_total": { + "count": 4766 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 241663 + } + }, + "search": { + "query_time": { + "ms": 1140 + }, + "query_total": { + "count": 922 + } + }, + "segments": { + "count": 29, + "doc_values": { + "memory": { + "bytes": 86692 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 1256 + } + }, + "index_writer": { + "memory": { + "bytes": 199507 + } + }, + "memory": { + "bytes": 219812 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 2896 + } + }, + "stored_fields": { + "memory": { + "bytes": 9336 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 117816 + } + }, + "version_map": { + "memory": { + "bytes": 24108 + } + } + }, + "store": { + "size": { + "bytes": 2336249 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 94, + "ms": 1023 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194086584, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 4.77978515625 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.582Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 133, + "time": { + "ms": 791 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 244 + } + }, + "search": { + "query": { + "count": 570, + "time": { + "ms": 217 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QVDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RuIdYj5bpGzG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nE7LTwH1smoj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VrOTLo0zjGzf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H185MRgE5MKv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0vajWqYXlwQT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GKfo7zHV56FX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z3AUlFQFwVlf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3Y9jp4RRZgAs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FoYAFV2EFkij", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OcwaLEfgRj8F", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C0rTviCsldsh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HWln3SdBRRuQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0HqLy9ttmAH4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fGeE031TCTrH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m9ekETlr5XeO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LnpEKWlJ83iU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SopgPP41nodU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K0Oe8eMUxxJw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bKtnJiipNFmf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Znho5sZTzUwQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hGyxnS8UUX6r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EewLbeCbUZbP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WQz0wISPCVGf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FZ4GMyENCNGz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U5nDK0ER5uwF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.598Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.598Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.598Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.604Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 133, + "query_total": 220 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.604Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 116 + }, + "indexing": { + "index_time_in_millis": 635, + "index_total": 106, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6118522 + }, + "refresh": { + "total_time_in_millis": 5767 + }, + "segments": { + "count": 23 + }, + "store": { + "size_in_bytes": 2545334 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1212, + "index_total": 194, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 10946841 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10666 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 49, + "doc_values_memory_in_bytes": 85588, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1815969, + "norms_memory_in_bytes": 191872, + "points_memory_in_bytes": 3792, + "stored_fields_memory_in_bytes": 15312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1519405, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 5285179 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.604Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 80, + "query_total": 320 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.604Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 4, + "query_total": 60 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.604Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 3 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 31 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 15635 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 65 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12510, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9834, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 31270 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.638Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200406376448 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 128 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 934 + }, + "index_total": { + "count": 149 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 125 + }, + "query_total": { + "count": 384 + } + }, + "segments": { + "count": 38, + "doc_values": { + "memory": { + "bytes": 45360 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 983775 + }, + "norms": { + "memory": { + "bytes": 102272 + } + }, + "points": { + "memory": { + "bytes": 2024 + } + }, + "stored_fields": { + "memory": { + "bytes": 11864 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 822255 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2462372 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 66, + "ms": 863 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 172294320, + "pct": 27 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 4.77978515625 + } + } + }, + "process": { + "cpu": { + "pct": 3 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wFDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.600Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 147, + "time": { + "ms": 841 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 272 + } + }, + "search": { + "query": { + "count": 849, + "time": { + "ms": 257 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5vXBL1YIGv3s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZQhFBXfg3ctC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Pn8tRS3A4uk0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z2wMVpgpyC2w", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "22lLhpqgqoxT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IqhtRvr8etHF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CBgwmKgRwJMD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GxUayqL4cx8O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZF9JbuB5VJhx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3GcLimhPiORM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H8xteDQPazgn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q5P811EOpzpp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P0cjioLuoYIE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OGKTTVszSIvT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eaaKni7RCR5s", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Lz9UKaZiviAw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wOjL48iHAYCg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KIZ8M0PGPEXz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1rLjSGafIjL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Zd4btHDV38R8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mwLFGTbBt2eP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OMueLNKcFQYX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GSpkry1cIz5D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qaEa633tKiL1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pyE4u1Uaw0nf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.602Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wlDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.637Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1Dy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.637Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.637Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xVDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.654Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 135, + "query_total": 236 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.654Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 128 + }, + "indexing": { + "index_time_in_millis": 683, + "index_total": 118, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6823808 + }, + "refresh": { + "total_time_in_millis": 6128 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 2400674 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1300, + "index_total": 218, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12522126 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11362 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 53, + "doc_values_memory_in_bytes": 86820, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1918324, + "norms_memory_in_bytes": 201984, + "points_memory_in_bytes": 3894, + "stored_fields_memory_in_bytes": 16568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1609058, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4889183 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.654Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 85, + "query_total": 352 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.654Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 43, + "query_total": 281 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.654Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 42 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 21807 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 131 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 544, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16680, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 13112, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 43614 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Dy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.700Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404656128 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 142 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 974 + }, + "index_total": { + "count": 163 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 143 + }, + "query_total": { + "count": 513 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 45352 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1005024 + }, + "norms": { + "memory": { + "bytes": 103872 + } + }, + "points": { + "memory": { + "bytes": 2022 + } + }, + "stored_fields": { + "memory": { + "bytes": 12496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 841282 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2549639 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 72, + "ms": 935 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 291265400, + "pct": 46 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.6064453125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.586Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 145, + "time": { + "ms": 839 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 268 + } + }, + "search": { + "query": { + "count": 714, + "time": { + "ms": 236 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Cjblq2ojPyBd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "c9Os55AJexe3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AHvsIlm8gl65", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pXxjUUwwJONN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CkbYU836Nk3U", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1w9MY72L5dU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fodqHvWGKa4N", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XMs9VlzsHFG7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YEk6nhYI1OIr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vxbqYuQMRv4d", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g97kl0TAfZWz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "a0h7aL1ssPci", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o9kyba35cPMu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bbmRGmijlJdE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "47FwRe2U5nyP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rB6ChtZGBElH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iZm6xIWAnYKX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I5RtcBAXCL39", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xhLfynisquGj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QNq8XBDbMIyT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o6kpNHm9mHhl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LiGl17vkRt81", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hAcYTzATdM4f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KLW1U3Gn2z9I", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9OD2FIbmlo2P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.587Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.ml-notifications:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-notifications:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e7WATcuCSh-TtgGibs7AWw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "e7WATcuCSh-TtgGibs7AWw" + }, + "stats": { + "state": { + "state_uuid": "e7WATcuCSh-TtgGibs7AWw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.635Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 134, + "query_total": 228 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.635Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 128 + }, + "indexing": { + "index_time_in_millis": 683, + "index_total": 118, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6823808 + }, + "refresh": { + "total_time_in_millis": 6128 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 2400674 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1300, + "index_total": 218, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12522126 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11362 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 53, + "doc_values_memory_in_bytes": 86820, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1918324, + "norms_memory_in_bytes": 201984, + "points_memory_in_bytes": 3894, + "stored_fields_memory_in_bytes": 16568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1609058, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 5139941 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.635Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 83, + "query_total": 336 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.635Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 24, + "query_total": 180 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iVDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.635Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 3 + }, + "indexing": { + "index_time_in_millis": 6, + "index_total": 3, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 31 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 15635 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 10, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 65 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 408, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12510, + "norms_memory_in_bytes": 384, + "points_memory_in_bytes": 12, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9834, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 31270 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.705Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405995520 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 140 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 972 + }, + "index_total": { + "count": 161 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 136 + }, + "query_total": { + "count": 456 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 45284 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1002939 + }, + "norms": { + "memory": { + "bytes": 103808 + } + }, + "points": { + "memory": { + "bytes": 2020 + } + }, + "stored_fields": { + "memory": { + "bytes": 12184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 839643 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2543467 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 72, + "ms": 935 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 248470496, + "pct": 39 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.54345703125 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.591Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 5062, + "time": { + "ms": 3416 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 5062 + } + }, + "search": { + "query": { + "count": 1012, + "time": { + "ms": 1262 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zVDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P6qq2kQvchnz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mCZKV49THywD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8t4GfqCxFKPS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VKyokzYcXAlr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KO4ikfMqokSI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Xj7uHoq2o2ue", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZifyZ1tMLtPH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 106, + "query_total": 288 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 199507, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 24108 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 53 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 53, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1475 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 113542 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 53, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1475 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 222, + "query_total": 189 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 5768, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 30034, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 236, + "stored_fields_memory_in_bytes": 1872, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22158, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 113542 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0VDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3477 + }, + "indexing": { + "index_time_in_millis": 2533, + "index_total": 4629, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 25847013 + }, + "refresh": { + "total_time_in_millis": 10626 + }, + "segments": { + "count": 9 + }, + "store": { + "size_in_bytes": 1907468 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2533, + "index_total": 4629, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 25847013 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10626 + }, + "request_cache": { + "memory_size_in_bytes": 29701 + }, + "search": { + "query_time_in_millis": 719, + "query_total": 314 + }, + "segments": { + "count": 9, + "doc_values_memory_in_bytes": 78900, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 131090, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 3152, + "stored_fields_memory_in_bytes": 3048, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 45990, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1907468 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 456 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 32, + "query_total": 125 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "01Dy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 237 + }, + "indexing": { + "index_time_in_millis": 135, + "index_total": 49, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "refresh": { + "total_time_in_millis": 1484 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 82689 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 752 + }, + "indexing": { + "index_time_in_millis": 135, + "index_total": 49, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1484 + }, + "request_cache": { + "memory_size_in_bytes": 14114 + }, + "search": { + "query_time_in_millis": 169, + "query_total": 95 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 3252, + "fixed_bit_set_memory_in_bytes": 504, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 21584, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 215, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17181, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 82689 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1FDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41140 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41140 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1VDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 126 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 217058 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2196, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19060, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 376, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15063, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 217058 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.600Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404520960 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3913 + }, + "fielddata": { + "memory": { + "bytes": 2008 + } + }, + "indexing": { + "index_time": { + "ms": 3416 + }, + "index_total": { + "count": 5062 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 63364 + } + }, + "search": { + "query_time": { + "ms": 1262 + }, + "query_total": { + "count": 1016 + } + }, + "segments": { + "count": 32, + "doc_values": { + "memory": { + "bytes": 91544 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 560 + } + }, + "index_writer": { + "memory": { + "bytes": 199507 + } + }, + "memory": { + "bytes": 232736 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 3658 + } + }, + "stored_fields": { + "memory": { + "bytes": 10288 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 124174 + } + }, + "version_map": { + "memory": { + "bytes": 24108 + } + } + }, + "store": { + "size": { + "bytes": 2409528 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 100, + "ms": 1113 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 117230840, + "pct": 18 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.6064453125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDy510BY87G63mlt4C9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:29.931Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404766720 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 142 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 865 + }, + "index_total": { + "count": 164 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 117 + }, + "query_total": { + "count": 358 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 43508 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 960824 + }, + "norms": { + "memory": { + "bytes": 99136 + } + }, + "points": { + "memory": { + "bytes": 1906 + } + }, + "stored_fields": { + "memory": { + "bytes": 12184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 804090 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2461699 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 70, + "ms": 924 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 226457280, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.0947265625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDy510BY87G63mlt4DC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:29.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 109, + "query_total": 260 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dy510BY87G63mlt4DC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:29.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 260, + "time": { + "ms": 109 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDy510BY87G63mlt4DC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:29.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDy510BY87G63mlt4DC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:29.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404766720 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 109 + }, + "query_total": { + "count": 260 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 200566920, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.0947265625 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDy510BY87G63mlkYAB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:19.934Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 107, + "query_total": 256 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "m1Dy510BY87G63mlkYAB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:19.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 256, + "time": { + "ms": 107 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDy510BY87G63mlkYAB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:19.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nVDy510BY87G63mlkYAB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:19.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405651456 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 107 + }, + "query_total": { + "count": 256 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 199713328, + "pct": 31 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.41943359375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4988, + "time": { + "ms": 3383 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4988 + } + }, + "search": { + "query": { + "count": 957, + "time": { + "ms": 1189 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rVDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xRcIWbmsyv60", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YJc4xIMo0h86", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71lmPxxKes9E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B7jp5S6u1Jkc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YMUvQQLQ9yGn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AIIS78o1CBlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9avsUk0uk9HA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 105, + "query_total": 284 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "r1Dy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 199507, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 24108 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 52 + }, + "indexing": { + "index_time_in_millis": 95, + "index_total": 52, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1467 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 83231 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 95, + "index_total": 52, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1467 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 214, + "query_total": 176 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 5700, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 25922, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 197, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 18465, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 83231 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3447 + }, + "indexing": { + "index_time_in_millis": 2505, + "index_total": 4557, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 25847013 + }, + "refresh": { + "total_time_in_millis": 10527 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 1628601 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 3368 + }, + "indexing": { + "index_time_in_millis": 2505, + "index_total": 4557, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 25847013 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10527 + }, + "request_cache": { + "memory_size_in_bytes": 2855 + }, + "search": { + "query_time_in_millis": 679, + "query_total": 294 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 74424, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 109375, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2339, + "stored_fields_memory_in_bytes": 2112, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 30500, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1628601 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 30, + "query_total": 120 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 232 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 48, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "refresh": { + "total_time_in_millis": 1465 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 57431 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 48, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1465 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 147, + "query_total": 82 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 3184, + "fixed_bit_set_memory_in_bytes": 360, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 15632, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 145, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 11679, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 57431 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41140 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41140 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 126 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 217058 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2196, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19060, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 376, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15063, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 217058 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t1Dy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.595Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405118976 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3877 + }, + "fielddata": { + "memory": { + "bytes": 3368 + } + }, + "indexing": { + "index_time": { + "ms": 3383 + }, + "index_total": { + "count": 4988 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5190 + } + }, + "search": { + "query_time": { + "ms": 1190 + }, + "query_total": { + "count": 961 + } + }, + "segments": { + "count": 27, + "doc_values": { + "memory": { + "bytes": 86932 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 416 + } + }, + "index_writer": { + "memory": { + "bytes": 199507 + } + }, + "memory": { + "bytes": 200957 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 2736 + } + }, + "stored_fields": { + "memory": { + "bytes": 8728 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 99489 + } + }, + "version_map": { + "memory": { + "bytes": 24108 + } + } + }, + "store": { + "size": { + "bytes": 2090247 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 98, + "ms": 1085 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 243003720, + "pct": 38 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.1455078125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.589Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 4914, + "time": { + "ms": 3348 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 4914 + } + }, + "search": { + "query": { + "count": 941, + "time": { + "ms": 1172 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oJFYZ3H79Ozc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C12QYxB9vbHW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KXsZElneGIXb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cENJW4lzqNrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Xv2e0WIR6vWC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1vwZJeIgKgeT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jGhoRoANRQMJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.590Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 105, + "query_total": 280 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j1Dy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 20, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 199507, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 24108 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kFDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 51 + }, + "indexing": { + "index_time_in_millis": 93, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1454 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 83231 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 93, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1454 + }, + "request_cache": { + "memory_size_in_bytes": 16248 + }, + "search": { + "query_time_in_millis": 214, + "query_total": 176 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 5632, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 21810, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 158, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 14772, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 83231 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3391 + }, + "indexing": { + "index_time_in_millis": 2474, + "index_total": 4485, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 25847013 + }, + "refresh": { + "total_time_in_millis": 10309 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 1937610 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2474, + "index_total": 4485, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 25847013 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10309 + }, + "request_cache": { + "memory_size_in_bytes": 213710 + }, + "search": { + "query_time_in_millis": 662, + "query_total": 282 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 69816, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 84261, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1405, + "stored_fields_memory_in_bytes": 864, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 12176, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1937610 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "klDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 26, + "index_total": 13, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 517 + }, + "request_cache": { + "memory_size_in_bytes": 966 + }, + "search": { + "query_time_in_millis": 30, + "query_total": 120 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 227 + }, + "indexing": { + "index_time_in_millis": 132, + "index_total": 47, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "refresh": { + "total_time_in_millis": 1445 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 254193 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 132, + "index_total": 47, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1445 + }, + "request_cache": { + "memory_size_in_bytes": 14114 + }, + "search": { + "query_time_in_millis": 147, + "query_total": 82 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 3116, + "fixed_bit_set_memory_in_bytes": 216, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 9680, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 75, + "stored_fields_memory_in_bytes": 312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 6177, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 254193 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 41140 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 257, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3044 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 41140 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 126 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 217058 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 216, + "index_total": 100, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1812 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 1, + "doc_values_memory_in_bytes": 2196, + "fixed_bit_set_memory_in_bytes": 56, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 19060, + "norms_memory_in_bytes": 1408, + "points_memory_in_bytes": 17, + "stored_fields_memory_in_bytes": 376, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 15063, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 217058 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.599Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405716992 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3815 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 3348 + }, + "index_total": { + "count": 4914 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 247373 + } + }, + "search": { + "query_time": { + "ms": 1172 + }, + "query_total": { + "count": 945 + } + }, + "segments": { + "count": 21, + "doc_values": { + "memory": { + "bytes": 82188 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 272 + } + }, + "index_writer": { + "memory": { + "bytes": 199507 + } + }, + "memory": { + "bytes": 165779 + }, + "norms": { + "memory": { + "bytes": 3072 + } + }, + "points": { + "memory": { + "bytes": 1693 + } + }, + "stored_fields": { + "memory": { + "bytes": 6856 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 71970 + } + }, + "version_map": { + "memory": { + "bytes": 24108 + } + } + }, + "store": { + "size": { + "bytes": 2075092 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 97, + "ms": 1045 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194048480, + "pct": 30 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.54345703125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDy510BY87G63mlkICj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:19.929Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405651456 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 142 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 865 + }, + "index_total": { + "count": 164 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 115 + }, + "query_total": { + "count": 332 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 43508 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 960824 + }, + "norms": { + "memory": { + "bytes": 99136 + } + }, + "points": { + "memory": { + "bytes": 1906 + } + }, + "stored_fields": { + "memory": { + "bytes": 12184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 804090 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2455527 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 70, + "ms": 924 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 223002752, + "pct": 35 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.41943359375 + } + } + }, + "process": { + "cpu": { + "pct": 13 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDy510BY87G63mlm4BV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.591Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 147, + "time": { + "ms": 841 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 272 + } + }, + "search": { + "query": { + "count": 797, + "time": { + "ms": 252 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDy510BY87G63mlm4BV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zBFOtEk2WmJW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kISNeDWeLDyb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFY4ZNssQlZq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C03igfVlWZ0t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ESNvJGhMFOMJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nD5eNHOJZhUG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p2l9dQr8gjJO", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sgLYvgevvElX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "voikSTdvwVRU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlTmCJBthMkD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TP7A9Xx6ksAi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LtqeX5D2GXtH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TU2V2uNH2reZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rzx2EJtLMABF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MR2ZLhYxZ6Hg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4rMuazUEx7O3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "isrpFU3Qu2RY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ARXfxbBKYPYY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xUIm5hh33k8c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "40DOidtu2VQF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "V7O4bROFiXuW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFcP0upg7ASm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RCotwME5ZOrm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFRhB7fWM70a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "I1q8Q9zjYUup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "olDy510BY87G63mlm4BV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.615Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o1Dy510BY87G63mlm4BV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.615Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pFDy510BY87G63mlm4BV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.615Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.621Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 135, + "query_total": 232 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "plDy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.621Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 128 + }, + "indexing": { + "index_time_in_millis": 683, + "index_total": 118, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 6823808 + }, + "refresh": { + "total_time_in_millis": 6128 + }, + "segments": { + "count": 26 + }, + "store": { + "size_in_bytes": 2400674 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1300, + "index_total": 218, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 12522126 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11362 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 53, + "doc_values_memory_in_bytes": 86820, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1918324, + "norms_memory_in_bytes": 201984, + "points_memory_in_bytes": 3894, + "stored_fields_memory_in_bytes": 16568, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1609058, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4889183 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "p1Dy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.621Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 84, + "query_total": 344 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.621Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 35, + "query_total": 241 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qVDy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.621Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 42 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 21807 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 131 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 544, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16680, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 13112, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 37442 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q1Dy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.667Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405254144 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 142 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 974 + }, + "index_total": { + "count": 163 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 140 + }, + "query_total": { + "count": 487 + } + }, + "segments": { + "count": 40, + "doc_values": { + "memory": { + "bytes": 45352 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1005024 + }, + "norms": { + "memory": { + "bytes": 103872 + } + }, + "points": { + "memory": { + "bytes": 2022 + } + }, + "stored_fields": { + "memory": { + "bytes": 12496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 841282 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2549639 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 72, + "ms": 935 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 280139832, + "pct": 44 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.1455078125 + } + } + }, + "process": { + "cpu": { + "pct": 5 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDy510BY87G63ml3oDR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:39.936Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404107264 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 144 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 888 + }, + "index_total": { + "count": 167 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 126 + }, + "query_total": { + "count": 384 + } + }, + "segments": { + "count": 41, + "doc_values": { + "memory": { + "bytes": 45820 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 6186976 + } + }, + "memory": { + "bytes": 1029943 + }, + "norms": { + "memory": { + "bytes": 106560 + } + }, + "points": { + "memory": { + "bytes": 2052 + } + }, + "stored_fields": { + "memory": { + "bytes": 12808 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 862703 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2691485 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 72, + "ms": 961 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 182920808, + "pct": 29 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.3974609375 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2lDy510BY87G63ml3oDh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:39.938Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 110, + "query_total": 264 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dy510BY87G63ml3oDh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:39.939Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 264, + "time": { + "ms": 110 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3FDy510BY87G63ml3oDh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:39.939Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDy510BY87G63ml3oDh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:39.939Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404119552 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 110 + }, + "query_total": { + "count": 264 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 201705000, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.3974609375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.597Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 152, + "time": { + "ms": 864 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 282 + } + }, + "search": { + "query": { + "count": 901, + "time": { + "ms": 270 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4VDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lyuVwn1OikVx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nwhg67Jh64rV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lJ1QCJnLmJvP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9QxyS04d1cGb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SL8ANowU9esH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "itmj2uXZb9Ek", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "t7Unquw7cI0b", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "j9trxN0IEOaM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s3jtaoNciZmr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FhaSO1sW98Fl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2RN1hJx7cQre", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6BWmhbSSLjsM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rdNzzMKW4xAL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVMoHqQXdWJ9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "w1edcuDnJOD0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dh0d6d15vRA3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nbW1Ph2a7fXJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pIwsl5DosYYg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AnpuBV4qcsoB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FmrL51WmelFI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tRvt9jACby1z", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cEyZlU9pi8os", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2CyaSUspLGe4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yvvdIw7Wvzdc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "va4COayjPPs3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.599Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.629Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.629Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.629Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.636Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 136, + "query_total": 240 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5lDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.636Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 133 + }, + "indexing": { + "index_time_in_millis": 706, + "index_total": 123, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7472807 + }, + "refresh": { + "total_time_in_millis": 7177 + }, + "segments": { + "count": 21 + }, + "store": { + "size_in_bytes": 2110665 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1354, + "index_total": 228, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13820124 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 13400 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 44, + "doc_values_memory_in_bytes": 80896, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 1677642, + "norms_memory_in_bytes": 176832, + "points_memory_in_bytes": 3444, + "stored_fields_memory_in_bytes": 13760, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1402710, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 4964495 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.636Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 87, + "query_total": 360 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6FDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.636Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 53, + "query_total": 321 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.636Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 42 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 21807 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 131 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 544, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16680, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 13112, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 43614 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.672Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200405004288 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 147 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 998 + }, + "index_total": { + "count": 168 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 154 + }, + "query_total": { + "count": 539 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 42968 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 902277 + }, + "norms": { + "memory": { + "bytes": 93184 + } + }, + "points": { + "memory": { + "bytes": 1834 + } + }, + "stored_fields": { + "memory": { + "bytes": 11248 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 753043 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2395165 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 76, + "ms": 1014 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 165669416, + "pct": 26 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.685546875 + } + } + }, + "process": { + "cpu": { + "pct": 4 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 5167, + "time": { + "ms": 3482 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 5167 + } + }, + "search": { + "query": { + "count": 1200, + "time": { + "ms": 1380 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7VDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kRzwu1d4HsDB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DGMaKATY5MP0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y8EcHaXpvKFv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "o7KNIztbiugg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k2M4dKM0khtr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AP3MM5HNJXwG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zHQHcxo5h2NF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.608Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 106, + "query_total": 292 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 21, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 21, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 205347, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 26362 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 54 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 54, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1634 + }, + "segments": { + "count": 7 + }, + "store": { + "size_in_bytes": 128694 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 848 + }, + "indexing": { + "index_time_in_millis": 101, + "index_total": 54, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1634 + }, + "request_cache": { + "memory_size_in_bytes": 24372 + }, + "search": { + "query_time_in_millis": 242, + "query_total": 242 + }, + "segments": { + "count": 7, + "doc_values_memory_in_bytes": 5836, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 34146, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 275, + "stored_fields_memory_in_bytes": 2184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 25851, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 128694 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3507 + }, + "indexing": { + "index_time_in_millis": 2562, + "index_total": 4701, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 27943857 + }, + "refresh": { + "total_time_in_millis": 10897 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 1750016 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2562, + "index_total": 4701, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 27943857 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 10897 + }, + "request_cache": { + "memory_size_in_bytes": 154314 + }, + "search": { + "query_time_in_millis": 795, + "query_total": 377 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 72588, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 93092, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 1671, + "stored_fields_memory_in_bytes": 1184, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 17649, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1750016 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 29, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 705 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 456 + }, + "indexing": { + "index_time_in_millis": 29, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 705 + }, + "request_cache": { + "memory_size_in_bytes": 1932 + }, + "search": { + "query_time_in_millis": 40, + "query_total": 150 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Dy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 242 + }, + "indexing": { + "index_time_in_millis": 138, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "refresh": { + "total_time_in_millis": 1615 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 133203 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 752 + }, + "indexing": { + "index_time_in_millis": 138, + "index_total": 50, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1615 + }, + "request_cache": { + "memory_size_in_bytes": 21171 + }, + "search": { + "query_time_in_millis": 183, + "query_total": 138 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 3320, + "fixed_bit_set_memory_in_bytes": 648, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27536, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 285, + "stored_fields_memory_in_bytes": 1248, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 22683, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 133203 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 270, + "index_total": 120, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3419 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40666 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 270, + "index_total": 120, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3419 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40666 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9VDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 138 + }, + "indexing": { + "index_time_in_millis": 231, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 2235 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 316748 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 231, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2235 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 3400, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 61272, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51381, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 316748 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "91Dy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.618Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404627456 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3961 + }, + "fielddata": { + "memory": { + "bytes": 2056 + } + }, + "indexing": { + "index_time": { + "ms": 3482 + }, + "index_total": { + "count": 5167 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 204124 + } + }, + "search": { + "query_time": { + "ms": 1381 + }, + "query_total": { + "count": 1204 + } + }, + "segments": { + "count": 31, + "doc_values": { + "memory": { + "bytes": 86572 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 848 + } + }, + "index_writer": { + "memory": { + "bytes": 205347 + } + }, + "memory": { + "bytes": 247014 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 2328 + } + }, + "stored_fields": { + "memory": { + "bytes": 9984 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 141346 + } + }, + "version_map": { + "memory": { + "bytes": 26362 + } + } + }, + "store": { + "size": { + "bytes": 2416958 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 102, + "ms": 1141 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 254590552, + "pct": 40 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.685546875 + } + } + }, + "process": { + "cpu": { + "pct": 17 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDz510BY87G63mlBYDe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:49.940Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404426752 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 149 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 910 + }, + "index_total": { + "count": 171 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 129 + }, + "query_total": { + "count": 410 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 42280 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 891141 + }, + "norms": { + "memory": { + "bytes": 91904 + } + }, + "points": { + "memory": { + "bytes": 1790 + } + }, + "stored_fields": { + "memory": { + "bytes": 11248 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 743919 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2888613 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 74, + "ms": 976 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 177891040, + "pct": 28 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.79052734375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDz510BY87G63mlBYDn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:49.941Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 110, + "query_total": 268 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-1Dz510BY87G63mlBYDn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:49.942Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 268, + "time": { + "ms": 110 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDz510BY87G63mlBYDn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:49.942Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDz510BY87G63mlBYDn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:49.942Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404426752 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 110 + }, + "query_total": { + "count": 268 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 203067880, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 7.79052734375 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.606Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 156, + "time": { + "ms": 885 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 290 + } + }, + "search": { + "query": { + "count": 953, + "time": { + "ms": 284 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AVDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834326542, + "stop_time_in_millis": 1502834326726, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 183, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 132 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rmMdmb5MFrym", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 90 + }, + "index_name": ".security-v6", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834354566, + "stop_time_in_millis": 1502834354968, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 401, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 1, + "total_time_in_millis": 156 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rvibpES2STWt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574753, + "stop_time_in_millis": 1502834574767, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "e3wkQBdk33Oe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 4, + "reused": 0, + "total": 4 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 141888, + "reused_in_bytes": 0, + "total_in_bytes": 141888 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 84 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729551, + "stop_time_in_millis": 1502834729740, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 188, + "translog": { + "percent": "100.0%", + "recovered": 13, + "total": 13, + "total_on_start": 13, + "total_time_in_millis": 51 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5qVOmUN7Jylb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574758, + "stop_time_in_millis": 1502834574781, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 23, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aI3CDfr2H3ED", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 88 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574812, + "stop_time_in_millis": 1502834574984, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 172, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "T1rJyKS2AAPa", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 22 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729555, + "stop_time_in_millis": 1502834729683, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 127, + "translog": { + "percent": "100.0%", + "recovered": 4, + "total": 4, + "total_on_start": 4, + "total_time_in_millis": 27 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fJ0oBCIn5AAr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729544, + "stop_time_in_millis": 1502834730214, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 670, + "translog": { + "percent": "100.0%", + "recovered": 11, + "total": 11, + "total_on_start": 11, + "total_time_in_millis": 52 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "fuhINzyaGw8P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 0, + "reused": 1, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 197, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 11 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834669738, + "stop_time_in_millis": 1502834670256, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 517, + "translog": { + "percent": "100.0%", + "recovered": 10, + "total": 10, + "total_on_start": 10, + "total_time_in_millis": 491 + }, + "type": "EXISTING_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Er3Qx4FVfxYC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 80 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834574843, + "stop_time_in_millis": 1502834575537, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 693, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 60 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sLtdwRu8lfkb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574700, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 40, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 20 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EwnlPHdWHX5Z", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": "avocado-tweets-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834574710, + "stop_time_in_millis": 1502834574741, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 31, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "loB5LxQ15J9S", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".kibana", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834478015, + "stop_time_in_millis": 1502834478030, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 8 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wZxavschQz6y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 10 + }, + "index_name": ".kibana", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834729540, + "stop_time_in_millis": 1502834730187, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 647, + "translog": { + "percent": "100.0%", + "recovered": 2, + "total": 2, + "total_on_start": 2, + "total_time_in_millis": 14 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OH0AfxhXdYoL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982201, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QlbJzUoNZxJ0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982205, + "stop_time_in_millis": 1502834982217, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 12, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XauF3YTTjW38", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982249, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 36, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 17 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IroGSSPUFGOF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 18 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982252, + "stop_time_in_millis": 1502834982285, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 33, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OfkJgarBLshV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982208, + "stop_time_in_millis": 1502834982218, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 10, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 6 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TzfsGEBKtvml", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 4, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 7 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982773, + "stop_time_in_millis": 1502834983307, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 533, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Qks8Tkew1ULf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 2, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 13 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982233, + "stop_time_in_millis": 1502834982769, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 535, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 11 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "q9I6abyFKUiD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 1, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982186, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 17, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lD6gtHa2tLmR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 3, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-anomalies-shared", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982190, + "stop_time_in_millis": 1502834982204, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 13, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 10 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QULgvqJnVpsW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 14 + }, + "index_name": ".ml-anomalies-shared", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982238, + "stop_time_in_millis": 1502834982788, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 550, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 23 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BSBl4FdHi4MF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "100.0%", + "recovered": 1, + "reused": 0, + "total": 1 + }, + "size": { + "percent": "100.0%", + "recovered_in_bytes": 197, + "reused_in_bytes": 0, + "total_in_bytes": 197 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 16 + }, + "index_name": ".ml-notifications", + "primary": false, + "source": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "stage": "DONE", + "start_time_in_millis": 1502834982379, + "stop_time_in_millis": 1502834982436, + "target": { + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "total_time_in_millis": 57, + "translog": { + "percent": "100.0%", + "recovered": 1, + "total": 1, + "total_on_start": 0, + "total_time_in_millis": 19 + }, + "type": "PEER", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nWBYuvzWQm1i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".ml-notifications", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834982345, + "stop_time_in_millis": 1502834982366, + "target": { + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_jrlbmjixfsjg" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_ceorapwpobpd" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "ml": { + "job": { + "id": "job_falwafruwogs" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "job_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.ml-notifications:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-notifications:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-notifications" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:avocado-tweets-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:avocado-tweets-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": "avocado-tweets-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:4:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 4, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:4:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 4, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:2:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 2, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:2:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 2, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:1:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 1, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:1:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 1, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:3:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 3, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:3:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 3, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.ml-anomalies-shared:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.ml-anomalies-shared:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".ml-anomalies-shared" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.security-v6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:fYjS7QwxT42788axNXnZ1Q:.kibana:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v9cBtnUvQMqe_J-kAvZaBw:ZcUHP_QBQzeRjE5by3TbvQ:.kibana:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.624Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "state": { + "id": "v9cBtnUvQMqe_J-kAvZaBw" + }, + "stats": { + "state": { + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw" + } + } + }, + "index": { + "name": ".kibana" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.628Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 134, + "index_total": 22, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 764 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34096 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 224, + "index_total": 43, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1607 + }, + "request_cache": { + "memory_size_in_bytes": 4670 + }, + "search": { + "query_time_in_millis": 137, + "query_total": 244 + }, + "segments": { + "count": 16, + "doc_values_memory_in_bytes": 1360, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 27704, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 4992, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 20824, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 68192 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.628Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": "avocado-tweets-2017.08.15", + "primaries": { + "docs": { + "count": 136 + }, + "indexing": { + "index_time_in_millis": 727, + "index_total": 127, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 7472807 + }, + "refresh": { + "total_time_in_millis": 7279 + }, + "segments": { + "count": 24 + }, + "store": { + "size_in_bytes": 2315237 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 1394, + "index_total": 236, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 13820124 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 13596 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 50, + "doc_values_memory_in_bytes": 86024, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 7006184, + "memory_in_bytes": 1860398, + "norms_memory_in_bytes": 196160, + "points_memory_in_bytes": 3784, + "stored_fields_memory_in_bytes": 15632, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 1558798, + "version_map_memory_in_bytes": 260 + }, + "store": { + "size_in_bytes": 4716309 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.628Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".kibana", + "primaries": { + "docs": { + "count": 1 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 143 + }, + "segments": { + "count": 1 + }, + "store": { + "size_in_bytes": 4131 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 16, + "index_total": 2, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 247 + }, + "request_cache": { + "memory_size_in_bytes": 5842 + }, + "search": { + "query_time_in_millis": 89, + "query_total": 368 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 3140, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 2378, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 8379 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.628Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-anomalies-shared", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 0 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 985 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 0, + "index_total": 0, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 62, + "query_total": 361 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1970 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.628Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "index": { + "name": ".ml-notifications", + "primaries": { + "docs": { + "count": 5 + }, + "indexing": { + "index_time_in_millis": 8, + "index_total": 5, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 42 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 21807 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 14, + "index_total": 9, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 131 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 544, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 16680, + "norms_memory_in_bytes": 512, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 13112, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 43614 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "C1Dz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.668Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200404209664 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 150 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 1015 + }, + "index_total": { + "count": 172 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 158 + }, + "query_total": { + "count": 565 + } + }, + "segments": { + "count": 39, + "doc_values": { + "memory": { + "bytes": 45532 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 3503092 + } + }, + "memory": { + "bytes": 993655 + }, + "norms": { + "memory": { + "bytes": 102848 + } + }, + "points": { + "memory": { + "bytes": 2004 + } + }, + "stored_fields": { + "memory": { + "bytes": 12184 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 831087 + } + }, + "version_map": { + "memory": { + "bytes": 130 + } + } + }, + "store": { + "size": { + "bytes": 2567197 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 94 + } + }, + "young": { + "collection": { + "count": 77, + "ms": 1021 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 232054488, + "pct": 36 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.52783203125 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9301" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.604Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 5241, + "time": { + "ms": 3522 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 5241 + } + }, + "search": { + "query": { + "count": 1265, + "time": { + "ms": 1426 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834308355, + "stop_time_in_millis": 1502834308590, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 234, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 150 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WOeZE35x1qum", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".triggered_watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375343, + "stop_time_in_millis": 1502834375364, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 20, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 15 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVqLYkSNzR2u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-kibana-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834489222, + "stop_time_in_millis": 1502834489243, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 21, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 16 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "corcs1oEQgFK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 3 + }, + "index_name": ".monitoring-es-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314680, + "stop_time_in_millis": 1502834314725, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 27 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0NdfjdD3ztDs", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".monitoring-alerts-6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375508, + "stop_time_in_millis": 1502834375522, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 14, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 9 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ugjgEA7aPwSx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 1 + }, + "index_name": ".monitoring-logstash-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834569276, + "stop_time_in_millis": 1502834569322, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 45, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 28 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4q4rBfkSb9zb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watches", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834314853, + "stop_time_in_millis": 1502834314879, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 25, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 18 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FkgFSv2Zotve", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 0 + }, + "index_name": ".watcher-history-6-2017.08.15", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834375536, + "stop_time_in_millis": 1502834375553, + "target": { + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + }, + "total_time_in_millis": 16, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 12 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.monitoring-es-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.monitoring-es-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-es-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.triggered_watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.triggered_watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".triggered_watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.monitoring-logstash-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.monitoring-logstash-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.watches:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.watches:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".watches" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.monitoring-alerts-6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.monitoring-alerts-6:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-alerts-6" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.watcher-history-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.watcher-history-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".watcher-history-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:7r5cGj40Qcyia0J1xF0lnA:.monitoring-kibana-6-2017.08.15:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "asE-gTxlRuad4K1ED5lNag:_na:.monitoring-kibana-6-2017.08.15:0:r", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.605Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "state": { + "id": "asE-gTxlRuad4K1ED5lNag" + }, + "stats": { + "state": { + "state_uuid": "asE-gTxlRuad4K1ED5lNag" + } + } + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15" + }, + "node": { + }, + "shard": { + "number": 0, + "primary": false, + "relocating_node": { + "id": null + }, + "state": "UNASSIGNED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34094 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 130, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 473 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 107, + "query_total": 296 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34094 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Dz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".triggered_watches", + "primaries": { + "docs": { + "count": 0 + }, + "indexing": { + "index_time_in_millis": 21, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "segments": { + "count": 0 + }, + "store": { + "size_in_bytes": 197 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 21, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 5 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 0, + "doc_values_memory_in_bytes": 0, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 205347, + "memory_in_bytes": 0, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 0, + "stored_fields_memory_in_bytes": 0, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 0, + "version_map_memory_in_bytes": 26362 + }, + "store": { + "size_in_bytes": 197 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-kibana-6-2017.08.15", + "primaries": { + "docs": { + "count": 55 + }, + "indexing": { + "index_time_in_millis": 104, + "index_total": 55, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "refresh": { + "total_time_in_millis": 1654 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 128694 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 848 + }, + "indexing": { + "index_time_in_millis": 104, + "index_total": 55, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 804844 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1654 + }, + "request_cache": { + "memory_size_in_bytes": 32496 + }, + "search": { + "query_time_in_millis": 251, + "query_total": 258 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 5904, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 38258, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 314, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 29544, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 128694 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EVDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-es-6-2017.08.15", + "primaries": { + "docs": { + "count": 3537 + }, + "indexing": { + "index_time_in_millis": 2597, + "index_total": 4773, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 27943857 + }, + "refresh": { + "total_time_in_millis": 11060 + }, + "segments": { + "count": 6 + }, + "store": { + "size_in_bytes": 1939804 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 2597, + "index_total": 4773, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 27943857 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 11060 + }, + "request_cache": { + "memory_size_in_bytes": 184152 + }, + "search": { + "query_time_in_millis": 821, + "query_total": 400 + }, + "segments": { + "count": 6, + "doc_values_memory_in_bytes": 77232, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 114975, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 2484, + "stored_fields_memory_in_bytes": 2120, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 33139, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 1939804 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-alerts-6", + "primaries": { + "docs": { + "count": 2 + }, + "indexing": { + "index_time_in_millis": 29, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 705 + }, + "segments": { + "count": 2 + }, + "store": { + "size_in_bytes": 13340 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 456 + }, + "indexing": { + "index_time_in_millis": 29, + "index_total": 14, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 705 + }, + "request_cache": { + "memory_size_in_bytes": 1932 + }, + "search": { + "query_time_in_millis": 41, + "query_total": 156 + }, + "segments": { + "count": 2, + "doc_values_memory_in_bytes": 136, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 4758, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 14, + "stored_fields_memory_in_bytes": 624, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 3728, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 13340 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".monitoring-logstash-6-2017.08.15", + "primaries": { + "docs": { + "count": 247 + }, + "indexing": { + "index_time_in_millis": 140, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "refresh": { + "total_time_in_millis": 1633 + }, + "segments": { + "count": 5 + }, + "store": { + "size_in_bytes": 158465 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 800 + }, + "indexing": { + "index_time_in_millis": 140, + "index_total": 51, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1324005 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 1633 + }, + "request_cache": { + "memory_size_in_bytes": 28228 + }, + "search": { + "query_time_in_millis": 192, + "query_total": 154 + }, + "segments": { + "count": 5, + "doc_values_memory_in_bytes": 3388, + "fixed_bit_set_memory_in_bytes": 792, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 33488, + "norms_memory_in_bytes": 0, + "points_memory_in_bytes": 355, + "stored_fields_memory_in_bytes": 1560, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 28185, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 158465 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FFDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watches", + "primaries": { + "docs": { + "count": 10 + }, + "indexing": { + "index_time_in_millis": 270, + "index_total": 120, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3419 + }, + "segments": { + "count": 3 + }, + "store": { + "size_in_bytes": 40666 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 270, + "index_total": 120, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 3419 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 14, + "query_total": 1 + }, + "segments": { + "count": 3, + "doc_values_memory_in_bytes": 612, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 12358, + "norms_memory_in_bytes": 1152, + "points_memory_in_bytes": 16, + "stored_fields_memory_in_bytes": 936, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 9642, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 40666 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.607Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "index": { + "name": ".watcher-history-6-2017.08.15", + "primaries": { + "docs": { + "count": 138 + }, + "indexing": { + "index_time_in_millis": 231, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "refresh": { + "total_time_in_millis": 2235 + }, + "segments": { + "count": 4 + }, + "store": { + "size_in_bytes": 316748 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 231, + "index_total": 110, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 1247099 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 2235 + }, + "request_cache": { + "memory_size_in_bytes": 0 + }, + "search": { + "query_time_in_millis": 0, + "query_total": 0 + }, + "segments": { + "count": 4, + "doc_values_memory_in_bytes": 3400, + "fixed_bit_set_memory_in_bytes": 200, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 61272, + "norms_memory_in_bytes": 5120, + "points_memory_in_bytes": 59, + "stored_fields_memory_in_bytes": 1312, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 51381, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 316748 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.612Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200403648512 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 3997 + }, + "fielddata": { + "memory": { + "bytes": 2104 + } + }, + "indexing": { + "index_time": { + "ms": 3522 + }, + "index_total": { + "count": 5241 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 249143 + } + }, + "search": { + "query_time": { + "ms": 1426 + }, + "query_total": { + "count": 1269 + } + }, + "segments": { + "count": 36, + "doc_values": { + "memory": { + "bytes": 91352 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 992 + } + }, + "index_writer": { + "memory": { + "bytes": 205347 + } + }, + "memory": { + "bytes": 278961 + }, + "norms": { + "memory": { + "bytes": 6784 + } + }, + "points": { + "memory": { + "bytes": 3250 + } + }, + "stored_fields": { + "memory": { + "bytes": 11544 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 166031 + } + }, + "version_map": { + "memory": { + "bytes": 26362 + } + } + }, + "store": { + "size": { + "bytes": 2647163 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 71 + } + }, + "young": { + "collection": { + "count": 104, + "ms": 1174 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 133041176, + "pct": 21 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 8.52783203125 + } + } + }, + "process": { + "cpu": { + "pct": 2 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9300" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDz510BY87G63mlLYEH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.946Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "name": ".security-v6", + "primaries": { + "docs": { + "count": 8 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "segments": { + "count": 8 + }, + "store": { + "size_in_bytes": 34095 + } + }, + "total": { + "fielddata": { + "memory_size_in_bytes": 0 + }, + "indexing": { + "index_time_in_millis": 99, + "index_total": 8, + "throttle_time_in_millis": 0 + }, + "merges": { + "total_size_in_bytes": 0 + }, + "query_cache": { + "memory_size_in_bytes": 0 + }, + "refresh": { + "total_time_in_millis": 455 + }, + "request_cache": { + "memory_size_in_bytes": 2335 + }, + "search": { + "query_time_in_millis": 111, + "query_total": 272 + }, + "segments": { + "count": 8, + "doc_values_memory_in_bytes": 680, + "fixed_bit_set_memory_in_bytes": 0, + "index_writer_memory_in_bytes": 0, + "memory_in_bytes": 13852, + "norms_memory_in_bytes": 256, + "points_memory_in_bytes": 8, + "stored_fields_memory_in_bytes": 2496, + "term_vectors_memory_in_bytes": 0, + "terms_memory_in_bytes": 10412, + "version_map_memory_in_bytes": 0 + }, + "store": { + "size_in_bytes": 34095 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDz510BY87G63mlLYEH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.949Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "summary": { + "primaries": { + "indexing": { + "index": { + "count": 8, + "time": { + "ms": 99 + } + } + } + }, + "total": { + "indexing": { + "index": { + "count": 8 + } + }, + "search": { + "query": { + "count": 272, + "time": { + "ms": 111 + } + } + } + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "indices_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "G1Dz510BY87G63mlLYEH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.949Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "index": { + "recovery": { + "id": 0, + "index": { + "files": { + "percent": "0.0%", + "recovered": 0, + "reused": 0, + "total": 0 + }, + "size": { + "percent": "0.0%", + "recovered_in_bytes": 0, + "reused_in_bytes": 0, + "total_in_bytes": 0 + }, + "source_throttle_time_in_millis": 0, + "target_throttle_time_in_millis": 0, + "total_time_in_millis": 5 + }, + "index_name": ".security-v6", + "primary": true, + "source": { + }, + "stage": "DONE", + "start_time_in_millis": 1502834373623, + "stop_time_in_millis": 1502834373841, + "target": { + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + }, + "total_time_in_millis": 218, + "translog": { + "percent": "100.0%", + "recovered": 0, + "total": 0, + "total_on_start": 0, + "total_time_in_millis": 157 + }, + "type": "EMPTY_STORE", + "verify_index": { + "check_index_time_in_millis": 0, + "total_time_in_millis": 0 + } + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "index_recovery" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L0nkstGcQpKQr1kZDgryAw:7Cw93cHFS9mLBojuYdd9EQ:.security-v6:0:p", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.949Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "state": { + "id": "L0nkstGcQpKQr1kZDgryAw" + }, + "stats": { + "state": { + "state_uuid": "L0nkstGcQpKQr1kZDgryAw" + } + } + }, + "index": { + "name": ".security-v6" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "shard": { + "number": 0, + "primary": true, + "relocating_node": { + "id": null + }, + "state": "STARTED" + } + }, + "metricset": { + "name": "shard" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDz510BY87G63mlLYEH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.949Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200403197952 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 8 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 99 + }, + "index_total": { + "count": 8 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 2335 + } + }, + "search": { + "query_time": { + "ms": 111 + }, + "query_total": { + "count": 272 + } + }, + "segments": { + "count": 8, + "doc_values": { + "memory": { + "bytes": 680 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 13852 + }, + "norms": { + "memory": { + "bytes": 256 + } + }, + "points": { + "memory": { + "bytes": 8 + } + }, + "stored_fields": { + "memory": { + "bytes": 2496 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 10412 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 34095 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 87 + } + }, + "young": { + "collection": { + "count": 6, + "ms": 157 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 204299464, + "pct": 32 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.5263671875 + } + } + }, + "process": { + "cpu": { + "pct": 0 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9304" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDz510BY87G63mlLYER", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.944Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "ZcUHP_QBQzeRjE5by3TbvQ", + "ip": "127.0.0.1", + "name": "clusterone-02", + "stats": { + "fs": { + "summary": { + "available": { + "bytes": 200403197952 + }, + "total": { + "bytes": 499065712640 + } + } + }, + "indices": { + "docs": { + "count": 156 + }, + "fielddata": { + "memory": { + "bytes": 0 + } + }, + "indexing": { + "index_time": { + "ms": 937 + }, + "index_total": { + "count": 178 + }, + "throttle_time": { + "ms": 0 + } + }, + "query_cache": { + "memory": { + "bytes": 0 + } + }, + "request_cache": { + "memory": { + "bytes": 5256 + } + }, + "search": { + "query_time": { + "ms": 134 + }, + "query_total": { + "count": 436 + } + }, + "segments": { + "count": 42, + "doc_values": { + "memory": { + "bytes": 47496 + } + }, + "fixed_bit_set": { + "memory": { + "bytes": 0 + } + }, + "index_writer": { + "memory": { + "bytes": 0 + } + }, + "memory": { + "bytes": 1075083 + }, + "norms": { + "memory": { + "bytes": 111424 + } + }, + "points": { + "memory": { + "bytes": 2136 + } + }, + "stored_fields": { + "memory": { + "bytes": 13120 + } + }, + "term_vectors": { + "memory": { + "bytes": 0 + } + }, + "terms": { + "memory": { + "bytes": 900907 + } + }, + "version_map": { + "memory": { + "bytes": 0 + } + } + }, + "store": { + "size": { + "bytes": 2554436 + } + } + }, + "jvm": { + "gc": { + "collectors": { + "old": { + "collection": { + "count": 2, + "ms": 106 + } + }, + "young": { + "collection": { + "count": 76, + "ms": 1001 + } + } + } + }, + "mem": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 297303464, + "pct": 47 + } + } + } + }, + "os": { + "cpu": { + "load_avg": { + "1m": 9.5263671875 + } + } + }, + "process": { + "cpu": { + "pct": 1 + } + }, + "thread_pool": { + "bulk": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "get": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "index": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + }, + "search": { + "queue": { + "count": 0 + }, + "rejected": { + "count": 0 + } + } + } + }, + "transport_address": "127.0.0.1:9303", + "uuid": "ZcUHP_QBQzeRjE5by3TbvQ" + } + }, + "metricset": { + "name": "node_stats" + }, + "service": { + "address": "127.0.0.1:9303" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDz510BY87G63mlLYEH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:59.952Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200403197952 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 701043 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 204299464 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FlDz510BY87G63mlGIEf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:54.610Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 69, + "total": 3997 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2647163 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200403648512 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 761002 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 133041176 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDz510BY87G63mlEIGK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:52.642Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 150 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 4838464 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200404209664 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 741786 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 465621856 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw", + "status": "green", + "version": 221 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDz510BY87G63mlBYDn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:49.947Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200404426752 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 691036 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 203067880 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9lDy510BY87G63ml8YAb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:44.612Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 27, + "total": 3961 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2416958 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200404627456 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 751005 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 254590552 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDy510BY87G63ml6YB8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:42.645Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 147 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5086650 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200405004288 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 731795 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 343235568 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw", + "status": "green", + "version": 221 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3lDy510BY87G63ml3oDh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:39.941Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200404119552 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 681033 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 201705000 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDy510BY87G63mlyYD7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:34.597Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 58, + "total": 3913 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2409528 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200404520960 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 740991 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 117230840 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDy510BY87G63mlwoCU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:32.665Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 142 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5011338 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200404656128 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 721813 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 519322584 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw", + "status": "green", + "version": 221 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDy510BY87G63mlt4DC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:29.938Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200404766720 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 671029 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 200566920 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDy510BY87G63mlooDf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:24.592Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 3877 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2090247 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405118976 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 730985 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 243003720 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDy510BY87G63mlm4BW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:22.634Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 142 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5011338 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200405254144 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 711781 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 504627944 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "v9cBtnUvQMqe_J-kAvZaBw", + "status": "green", + "version": 221 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDy510BY87G63mlkYAB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:19.942Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405651456 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 661031 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 199713328 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "llDy510BY87G63mle4Db", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:14.596Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 3815 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2580863 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405716992 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 720988 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194048480 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDy510BY87G63mldIB3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:12.667Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 140 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5249752 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200405995520 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 701794 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 459130928 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "e7WATcuCSh-TtgGibs7AWw", + "status": "green", + "version": 218 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDy510BY87G63mlaYCY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:09.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405549056 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 651028 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 198585760 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDy510BY87G63mlVIDd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:04.609Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 58, + "total": 3753 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2565712 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405106688 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 711001 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 226806520 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDy510BY87G63mlTYA-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:02.632Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 133 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5061981 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200405082112 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 691782 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 541216664 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "uCu91vppTT6whnIdJFQaTw", + "status": "green", + "version": 217 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDy510BY87G63mlQoCF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:59.935Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405200896 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 641028 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 196996672 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDy510BY87G63mlLYCp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:54.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 3717 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2147313 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406142976 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 700981 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194086584 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SlDy510BY87G63mlJoAM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:52.615Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 128 + }, + "shards": { + "count": 26, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5394990 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406376448 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 681764 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 326076872 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "uCu91vppTT6whnIdJFQaTw", + "status": "green", + "version": 217 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDy510BY87G63mlG4Bx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:49.931Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406638592 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 631025 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 195539032 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NlDy510BY87G63mlBoCW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:44.586Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 3655 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2371228 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406425600 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 690981 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 163489008 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDx510BY87G63ml_4AC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:42.631Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 122 + }, + "shards": { + "count": 23, + "primaries": 13 + }, + "store": { + "size": { + "bytes": 5766079 + } + }, + "total": 5 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406487040 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 671783 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 447121848 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "xAr6f4gsTSylaKK26U1TFA", + "status": "yellow", + "version": 209 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IFDx510BY87G63ml9IBk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:39.929Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405426176 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 621023 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 194767080 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDx510BY87G63ml34CH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:34.587Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 46, + "total": 3583 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2637006 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406241280 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 680981 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 161166864 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDx510BY87G63ml14DA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:32.592Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 117 + }, + "shards": { + "count": 14, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 5230294 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406441984 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 661748 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 510139192 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "wKUOVnnGRySNkcr-kmufEg", + "status": "green", + "version": 200 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BVDx510BY87G63mlzYBb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:29.933Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406552576 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 611026 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 193433024 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_VDx510BY87G63mluH9-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:24.591Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 3552 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2429808 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406724608 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 670987 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 119812248 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8VDx510BY87G63mlsH-g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:22.582Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 116 + }, + "shards": { + "count": 14, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 5089694 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406822912 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 651732 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 413545072 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "wKUOVnnGRySNkcr-kmufEg", + "status": "green", + "version": 200 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDx510BY87G63mlpn89", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:19.927Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405372928 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 601021 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 192187432 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDx510BY87G63mlkX9m", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:14.581Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 3507 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2207689 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405581824 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 660978 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253442976 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDx510BY87G63mliX_7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:12.663Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 162 + }, + "shards": { + "count": 61, + "primaries": 54 + }, + "store": { + "size": { + "bytes": 5193632 + } + }, + "total": 50 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200408059904 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 641815 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 369537296 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "xMLPuvFsTeC5JOYZ8BFMfw", + "status": "green", + "version": 199 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDx510BY87G63mlf38q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:09.922Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407568384 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 591017 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 191426224 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDx510BY87G63mlan9J", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:04.575Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 3368 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2479164 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407347200 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 650970 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 161071040 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDx510BY87G63mlYn-3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:02.597Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 157 + }, + "shards": { + "count": 59, + "primaries": 52 + }, + "store": { + "size": { + "bytes": 4777270 + } + }, + "total": 48 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200407924736 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 631748 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 392068784 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "6vmMkceuT1-lIxmhoEeAyQ", + "status": "green", + "version": 192 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDx510BY87G63mlWH8g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:59.923Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200408723456 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 581018 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 189991856 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UFDx510BY87G63mlQ388", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:54.572Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 3233 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2224351 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200409247744 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 640967 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131134912 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDx510BY87G63mlO3-O", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:52.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 149 + }, + "shards": { + "count": 57, + "primaries": 50 + }, + "store": { + "size": { + "bytes": 4195294 + } + }, + "total": 46 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200409878528 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 621733 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 513864040 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "A85X_vR0TFmgdN7W4-KuyQ", + "status": "green", + "version": 186 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDx510BY87G63mlMX8G", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:49.918Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200409985024 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 571014 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 189223704 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ClDx510BY87G63mlHH8v", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:44.571Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 3102 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1971434 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200409092096 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 630969 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 272951440 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDx510BY87G63mlFH55", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:42.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 142 + }, + "shards": { + "count": 55, + "primaries": 48 + }, + "store": { + "size": { + "bytes": 3550548 + } + }, + "total": 44 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200405954560 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 611736 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 467181904 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "Vccl7mZdTvOSTBRpLfncJg", + "status": "green", + "version": 180 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDx510BY87G63mlCX70", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:39.915Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405356544 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 561011 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 188130672 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xlDw510BY87G63ml9X4Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:34.565Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 2963 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2331228 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406097920 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 620961 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 133530320 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDw510BY87G63ml7X6L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:32.616Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 137 + }, + "shards": { + "count": 53, + "primaries": 46 + }, + "store": { + "size": { + "bytes": 3543164 + } + }, + "total": 42 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406396928 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 601753 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 425224536 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "jrWAaVM2RxqXu98xlQa0Rw", + "status": "green", + "version": 174 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDw510BY87G63ml4n7e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:29.911Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406327296 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 551007 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 187195152 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDw510BY87G63mlzn4A", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:24.558Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 2840 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2066212 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406577152 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 610956 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 274823976 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDw510BY87G63mlxn5h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:22.598Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 134 + }, + "shards": { + "count": 52, + "primaries": 45 + }, + "store": { + "size": { + "bytes": 3464491 + } + }, + "total": 41 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406851584 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 591753 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 306835072 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "xZG8n0tSTkK8DsHzl9NDVA", + "status": "green", + "version": 171 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "S1Dw510BY87G63mlu37L", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:19.907Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406986752 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 541004 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 185448976 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Q1Dw510BY87G63mlpn7u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:14.560Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 2719 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1831302 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407146496 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 600959 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 241511032 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "N1Dw510BY87G63mln35Q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:12.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 132 + }, + "shards": { + "count": 50, + "primaries": 43 + }, + "store": { + "size": { + "bytes": 3457107 + } + }, + "total": 39 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200407416832 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 581752 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 443240600 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "oxNBiMuLRjS1trLe_AGp2w", + "status": "green", + "version": 165 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDw510BY87G63mllH64", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:09.903Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406970368 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 531000 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 184499184 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDw510BY87G63mlf37X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:04.557Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 2602 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2204202 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406913024 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 590955 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129940080 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDw510BY87G63mleH02", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:02.583Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 130 + }, + "shards": { + "count": 48, + "primaries": 41 + }, + "store": { + "size": { + "bytes": 4976432 + } + }, + "total": 37 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200405577728 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 571736 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 402851368 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "cuvI0s9WRbyRt10RF1k2xQ", + "status": "green", + "version": 159 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dw510BY87G63mlbX2j", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:59.900Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406339584 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 520997 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 182943576 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dw510BY87G63mlWH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:54.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 2489 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1941646 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200405471232 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 580946 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 265320488 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dw510BY87G63mlUX1B", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:52.584Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 125 + }, + "shards": { + "count": 46, + "primaries": 39 + }, + "store": { + "size": { + "bytes": 4858242 + } + }, + "total": 35 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406024192 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 561739 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 239999504 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "soywSdk5TACvyO4DF39b9A", + "status": "green", + "version": 153 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lFDw510BY87G63mlRn2X", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:49.898Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406261760 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 510995 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 181921208 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDw510BY87G63mlMX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:44.550Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 2380 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1609335 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406278144 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 570950 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 232665256 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDw510BY87G63mlKn0h", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:42.568Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 119 + }, + "shards": { + "count": 44, + "primaries": 37 + }, + "store": { + "size": { + "bytes": 4719893 + } + }, + "total": 33 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200406798336 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 551720 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 456465368 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "EJgKtWa8Q0G59Y7ipePcZw", + "status": "green", + "version": 147 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dw510BY87G63mlH32H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:39.901Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200406687744 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 500999 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 180950656 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "U1Dw510BY87G63mlCn2f", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:34.546Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 2263 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1810502 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407449600 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 560944 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 147449656 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Dw510BY87G63mlAn31", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:32.569Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 111 + }, + "shards": { + "count": 42, + "primaries": 35 + }, + "store": { + "size": { + "bytes": 4460552 + } + }, + "total": 31 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200407666688 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 541724 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 251533192 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "vvpjBDGsQnmqbFGGpEJTfA", + "status": "green", + "version": 140 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDv510BY87G63ml-H1u", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:29.896Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407789568 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 490994 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 179032368 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDv510BY87G63ml432c", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:24.557Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 2162 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1608069 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407777280 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 550957 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 116763936 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDv510BY87G63ml2336", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:22.594Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 109 + }, + "shards": { + "count": 40, + "primaries": 33 + }, + "store": { + "size": { + "bytes": 4453168 + } + }, + "total": 29 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200408014848 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 531741 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 221654512 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "8MXBeC3jQdGOKm5MVo9xMA", + "status": "green", + "version": 134 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "71Dv510BY87G63ml0Xxc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:19.892Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200408145920 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 480991 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 177980944 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "51Dv510BY87G63mlvHx8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:14.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 2065 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1638616 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200408330240 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 540942 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 260441392 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "21Dv510BY87G63mltHzd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:12.582Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 107 + }, + "shards": { + "count": 38, + "primaries": 31 + }, + "store": { + "size": { + "bytes": 4449093 + } + }, + "total": 27 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200408559616 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 521733 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 551529536 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "5m78Gt-WRyCx5n7mlwzX2A", + "status": "green", + "version": 128 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vFDv510BY87G63mlqnxH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:09.888Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407801856 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 470987 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 176793848 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDv510BY87G63mllXx6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:04.544Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 1972 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1621504 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200407961600 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 530945 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 132929448 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDv510BY87G63mljXy7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:02.568Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 104 + }, + "shards": { + "count": 36, + "primaries": 29 + }, + "store": { + "size": { + "bytes": 4374480 + } + }, + "total": 25 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200408268800 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 511724 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 435341944 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "Ra4xy4J2TcGoasEJux7sfQ", + "status": "green", + "version": 122 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Dv510BY87G63mlg3w0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:59.884Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200408469504 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 460984 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 175551752 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "g1Dv510BY87G63mlbnxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:54.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 1883 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1581104 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200408858624 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 520947 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 102735704 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "d1Dv510BY87G63mlZnya", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:52.551Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 96 + }, + "shards": { + "count": 34, + "primaries": 27 + }, + "store": { + "size": { + "bytes": 3755893 + } + }, + "total": 23 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200409702400 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 501711 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 297656672 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "_EwSdlYoT3mCvIL7LDKaqw", + "status": "green", + "version": 116 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDv510BY87G63mlXHwf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:49.879Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200409808896 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 450979 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 174615576 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDv510BY87G63mlR3xK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:44.542Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 1798 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1651482 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410124288 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 510943 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 247137584 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SFDv510BY87G63mlP3yT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:42.562Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 93 + }, + "shards": { + "count": 33, + "primaries": 26 + }, + "store": { + "size": { + "bytes": 3356100 + } + }, + "total": 22 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200410320896 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 491721 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 450293448 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "dxlfq4xQSwat7cNLiZaaKA", + "status": "green", + "version": 113 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDv510BY87G63mlNXwZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:39.878Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200409620480 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 440978 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 173253880 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JlDv510BY87G63mlIHxE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:34.549Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 1703 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1921165 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410222592 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 500950 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 244338192 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDv510BY87G63mlGHyi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:32.562Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 85 + }, + "shards": { + "count": 31, + "primaries": 24 + }, + "store": { + "size": { + "bytes": 3195862 + } + }, + "total": 20 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200410431488 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 481713 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 438566592 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "mLFKlhtFQ6-Bsx6JEZEHpg", + "status": "green", + "version": 107 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AlDv510BY87G63mlDXz6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:29.874Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410562560 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 430974 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 172231640 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-lDu510BY87G63ml-Xsq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:24.539Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 1624 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1685731 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410542080 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 490941 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 216506368 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7lDu510BY87G63ml8Xts", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:22.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 84 + }, + "shards": { + "count": 29, + "primaries": 22 + }, + "store": { + "size": { + "bytes": 3188478 + } + }, + "total": 18 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200410710016 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 471703 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 411097344 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "n7BMG_ofQTq0_2jLj3Ed8Q", + "status": "green", + "version": 101 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDu510BY87G63ml5nvk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:19.867Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410861568 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 420967 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 171092440 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDu510BY87G63ml0nsI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:14.527Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 1549 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1718474 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200411021312 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 480930 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 185517704 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDu510BY87G63mlyntp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:12.556Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 82 + }, + "shards": { + "count": 27, + "primaries": 20 + }, + "store": { + "size": { + "bytes": 3624108 + } + }, + "total": 16 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200411217920 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 461713 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 389076072 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "qEliBHhCT2uorI5OWJrVnw", + "status": "green", + "version": 95 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sFDu510BY87G63mlv3vP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:09.862Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410796032 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 410963 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 169877976 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qFDu510BY87G63mlq3sQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:04.545Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 1478 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1688171 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200409849856 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 470947 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 96896232 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nFDu510BY87G63mlo3tN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:02.540Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 77 + }, + "shards": { + "count": 25, + "primaries": 18 + }, + "store": { + "size": { + "bytes": 3698377 + } + }, + "total": 14 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200410419200 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 451697 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 379984424 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "sVwf5ryYSlqU4T8g0XGyJw", + "status": "green", + "version": 89 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ilDu510BY87G63mlmHvA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:59.863Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200410742784 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 400964 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 168862432 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDu510BY87G63mlg3vg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:54.515Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 1411 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1243856 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200411238400 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 460918 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239268240 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDu510BY87G63mlfHsr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:52.530Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 73 + }, + "shards": { + "count": 23, + "primaries": 16 + }, + "store": { + "size": { + "bytes": 3562309 + } + }, + "total": 12 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200411377664 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 441690 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 347333456 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "2lugkBL1Q4-a53TwxKhNXw", + "status": "green", + "version": 83 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDu510BY87G63mlcXu1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:49.862Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200411525120 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 390963 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 168101320 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDu510BY87G63mlXHvb", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:44.526Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 1348 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1243856 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200411684864 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 450929 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 220753936 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDu510BY87G63mlVXsk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:42.542Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 71 + }, + "shards": { + "count": 21, + "primaries": 14 + }, + "store": { + "size": { + "bytes": 3425460 + } + }, + "total": 10 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200411815936 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 431702 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 498233568 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "dClTPeMpS1SlHER7ECbYmA", + "status": "green", + "version": 77 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RFDu510BY87G63mlSnuc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:39.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200411865088 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 380962 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 167075048 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PFDu510BY87G63mlNXvJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:34.516Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 1275 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1625381 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200412815360 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 440914 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 106947352 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MFDu510BY87G63mlLnsG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:32.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 60 + }, + "shards": { + "count": 19, + "primaries": 12 + }, + "store": { + "size": { + "bytes": 2055919 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200412975104 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 421690 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 397448024 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "M-d3_UVOQ5OoSAyhnRmPqw", + "status": "green", + "version": 71 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDu510BY87G63mlI3uN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:29.860Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 34095 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200413343744 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 370962 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 165493688 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HFDu510BY87G63mlDnup", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:24.503Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 1220 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1189758 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200413958144 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 430908 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 247871832 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "EFDu510BY87G63mlBnvx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:22.525Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 57 + }, + "shards": { + "count": 13, + "primaries": 10 + }, + "store": { + "size": { + "bytes": 1953930 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200413954048 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 411688 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 339603224 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "thZolFNRRLC2wXFa_W39rQ", + "status": "yellow", + "version": 60 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDt510BY87G63ml_Htx", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:19.849Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200414076928 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 360952 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 163477000 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDt510BY87G63ml53qm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:14.514Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 1169 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1189758 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200413286400 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 420918 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231934808 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDt510BY87G63ml33ra", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:12.522Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 53 + }, + "shards": { + "count": 11, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 2649418 + } + }, + "total": 4 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200413605888 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 401684 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 311247224 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "zD_dLFvBTNGxAkbchkwXdw", + "status": "yellow", + "version": 53 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDt510BY87G63ml1Xpk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:09.851Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200413188096 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 350954 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 161661384 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4lDt510BY87G63mlwHqK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:04.507Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 46, + "total": 1122 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1543131 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200412753920 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 410908 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 126143320 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDt510BY87G63mluHrE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:02.515Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 50 + }, + "shards": { + "count": 10, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 2974442 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200412860416 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 391678 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 305343352 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "7wSPabBpScSZDNsKU_laCw", + "status": "yellow", + "version": 49 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dt510BY87G63mlrnpW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:59.849Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200413134848 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 340952 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 160133072 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "x1Dt510BY87G63mlmXqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:54.508Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 30, + "total": 1077 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1321199 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200413822976 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 400913 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 99847200 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Dt510BY87G63mlkXqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:52.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 45 + }, + "shards": { + "count": 10, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 2446299 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200413945856 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 381669 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 463552616 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "FibviH5UQ92UnI19of8L9g", + "status": "yellow", + "version": 48 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDt510BY87G63mlh3pK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:49.848Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200414441472 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 330951 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 159110512 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rFDt510BY87G63mlcnpd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:44.493Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 1046 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1291634 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200414564352 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 390899 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 245996264 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDt510BY87G63mlanqW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:42.501Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 45 + }, + "shards": { + "count": 10, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 2255419 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200414154752 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 371666 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 453535904 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "FibviH5UQ92UnI19of8L9g", + "status": "yellow", + "version": 48 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDt510BY87G63mlYHon", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:39.839Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200414420992 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 320943 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 157932472 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "kVDt510BY87G63mlS3pQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:34.490Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 994 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1011325 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415096832 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 380895 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 212879152 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDt510BY87G63mlQ3qI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:32.500Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 40 + }, + "shards": { + "count": 10, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 1793660 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 2, + "fs": { + "available": { + "bytes": 200415326208 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 361665 + }, + "memory": { + "heap": { + "max": { + "bytes": 1257111552 + }, + "used": { + "bytes": 371423072 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + } + }, + "state_uuid": "y-hnH1L8Tg2Frn_nUXlMBQ", + "status": "yellow", + "version": 47 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "flDt510BY87G63mlOXok", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:29.839Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415420416 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 310943 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 155889336 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dlDt510BY87G63mlJHoy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:24.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 941 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1198313 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415375360 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 370890 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 112817656 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aVDt510BY87G63mlHHpw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:22.495Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 38 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 2958128 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200415514624 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 351659 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 637616704 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg", + "status": "green", + "version": 40 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YlDt510BY87G63mlEnoG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:19.835Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415629312 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 300940 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 154839096 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WlDs510BY87G63ml_Xoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:14.479Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 47, + "total": 909 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1130308 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415236096 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 360885 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 184137880 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDs510BY87G63ml9Xpz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:12.516Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 38 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 2827917 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200415375360 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 341680 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 624411136 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg", + "status": "green", + "version": 40 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDs510BY87G63ml6nru", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:09.829Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415326208 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 290934 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 154077992 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDs510BY87G63ml1noi", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:04.492Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 16, + "total": 877 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1130308 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200415449088 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 350890 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 99513480 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "MVDs510BY87G63mlznpc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:02.500Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 35 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 2140036 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200416055296 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 331662 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 612626352 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "NXZL0s0WQdmFfYE25p5eYg", + "status": "green", + "version": 40 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KlDs510BY87G63mlw3rZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:59.824Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200416317440 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 280929 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 153102064 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDs510BY87G63mlr3oK", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:54.486Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 62, + "total": 830 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1752546 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200416215040 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 340892 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 221631328 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDs510BY87G63mlp3pX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:52.503Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 28 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 1586799 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200416837632 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 321659 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 485546096 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "NyRIclRfR3uerEpxXOCzyw", + "status": "green", + "version": 39 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DlDs510BY87G63mlnHrU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:49.827Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200417038336 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 270930 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 152086568 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDs510BY87G63mlh3rp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:44.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 46, + "total": 783 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1329339 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200417341440 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 330880 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 123427504 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-VDs510BY87G63mlgHmL", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:42.560Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 24 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 1519378 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200417292288 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 311684 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 405190536 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w", + "status": "green", + "version": 38 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8lDs510BY87G63mldXnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:39.822Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200417865728 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 260927 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 150516856 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDs510BY87G63mlYHnn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:34.474Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 15, + "total": 744 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1406512 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200417865728 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 320876 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 95943016 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "3VDs510BY87G63mlWXkp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:32.496Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 19 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 865166 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200418152448 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 301657 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 565746912 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w", + "status": "green", + "version": 38 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "1lDs510BY87G63mlTnmn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:29.821Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200417746944 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 250928 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 148214816 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zlDs510BY87G63mlOXnG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:24.468Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 32, + "total": 707 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1101977 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200417976320 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 310874 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 108941040 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "wVDs510BY87G63mlMnkt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:22.484Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 18 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 797948 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200418115584 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 291649 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 646380528 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w", + "status": "green", + "version": 38 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ulDs510BY87G63mlJ3mV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:19.816Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200418226176 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 240922 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 147437584 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "slDs510BY87G63mlEnnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:14.483Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 1, + "total": 675 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1076732 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200418807808 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 300891 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 231047312 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDs510BY87G63mlC3lG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:12.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 18 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 797948 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200419037184 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 281680 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 632316744 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "u9lDA75tTy2xdIg5MTCW1w", + "status": "green", + "version": 38 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "nlDs510BY87G63mlAHn2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:09.857Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200419323904 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 230959 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 146426776 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDr510BY87G63ml63me", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:04.460Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 15, + "total": 627 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1048895 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200419168256 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 290869 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 145161736 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "iFDr510BY87G63ml43nl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:02.478Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 15 + }, + "shards": { + "count": 15, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 176607 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200419307520 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 271644 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 489189968 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "gELeu-FhR4ufmR_ribyDSw", + "status": "green", + "version": 37 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gVDr510BY87G63ml2Xlh", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:59.801Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200419586048 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 220909 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 145399504 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "elDr510BY87G63mlxHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:54.476Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 14, + "total": 566 + }, + "shards": { + "count": 8, + "primaries": 8 + }, + "store": { + "size": { + "bytes": 1023647 + } + }, + "total": 8 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200420384768 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 280884 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 120874888 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "asE-gTxlRuad4K1ED5lNag", + "status": "yellow", + "version": 45 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "bVDr510BY87G63mlvHnJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:52.468Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108798 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200420220928 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 261638 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 618851416 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "KPm1PMrCQjiM6FXh0s95Tg", + "status": "green", + "version": 27 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ZlDr510BY87G63mlsnlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.805Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200420188160 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 210912 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 144638248 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XlDr510BY87G63mlnXl3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:44.452Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 38, + "total": 530 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 914133 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200419524608 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 270861 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 253205504 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDr510BY87G63mllXnP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:42.473Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108798 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200419958784 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 251635 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 608335560 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "CghF2S8GTK2jQit6TnwEhA", + "status": "green", + "version": 26 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TVDr510BY87G63mli3lV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:39.796Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200420130816 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 200904 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 143381216 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RlDr510BY87G63mldnmc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:34.466Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 19, + "total": 495 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 888739 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200420724736 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 260864 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 251766064 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OlDr510BY87G63mlbnm2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:32.458Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108798 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200421068800 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 241628 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 601812184 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "CghF2S8GTK2jQit6TnwEhA", + "status": "green", + "version": 26 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "NVDr510BY87G63mlZHkz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:29.796Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421154816 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 190903 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 141873024 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "LlDr510BY87G63mlT3lt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:24.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 470 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 647970 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421265408 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 250860 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 209675152 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IlDr510BY87G63mlR3mM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:22.455Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200420839424 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 231625 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 593445344 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "CghF2S8GTK2jQit6TnwEhA", + "status": "green", + "version": 26 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDr510BY87G63mlPXku", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:19.796Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421007360 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 180904 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 140923800 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "FVDr510BY87G63mlKHlN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:14.456Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 25, + "total": 440 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 902090 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200420896768 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 240865 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 155805728 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CVDr510BY87G63mlIHmZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:12.475Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200420986880 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 221645 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 563910176 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ", + "status": "green", + "version": 25 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BFDr510BY87G63mlFnkQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:09.793Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421171200 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 170901 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 139763056 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDr510BY87G63mlAXg8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:04.455Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 6, + "total": 415 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 709849 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421355520 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 230865 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 169857296 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDq510BY87G63ml-Xic", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:02.461Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200421474304 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 211631 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 544468360 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ", + "status": "green", + "version": 25 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dq510BY87G63ml73gA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:59.793Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421552128 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 160902 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 138394200 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "41Dq510BY87G63ml2ngk", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:54.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 25, + "total": 390 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 923527 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421163008 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 220860 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 117122880 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Dq510BY87G63ml0nht", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:52.458Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200421249024 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 201627 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 524026288 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ", + "status": "green", + "version": 25 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDq510BY87G63mlx3j3", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:49.790Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421326848 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 150898 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 132578544 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ylDq510BY87G63mls3gU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:44.449Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 6, + "total": 365 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 731366 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200421576704 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 210860 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129383560 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vlDq510BY87G63mlq3hn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:42.453Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200421699584 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 191623 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 507595296 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ", + "status": "green", + "version": 25 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uVDq510BY87G63mloHjf", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:39.789Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200423288832 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 140898 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131340720 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDq510BY87G63mli3j5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:34.439Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 320 + }, + "shards": { + "count": 7, + "primaries": 7 + }, + "store": { + "size": { + "bytes": 464768 + } + }, + "total": 7 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430186496 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 200851 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 209598552 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "YxT-fQsrQYWh3wCXbUSZxA", + "status": "yellow", + "version": 43 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "pVDq510BY87G63mlhHhg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:32.452Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200429842432 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 181622 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 489729000 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ", + "status": "green", + "version": 25 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oFDq510BY87G63mleXjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:29.782Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200429936640 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 130892 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 130344944 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dq510BY87G63mlZHjt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:24.435Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 15, + "total": 290 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 675498 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430084096 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 190846 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 87222528 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w", + "status": "yellow", + "version": 41 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDq510BY87G63mlXXgz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:22.452Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 9 + }, + "shards": { + "count": 5, + "primaries": 2 + }, + "store": { + "size": { + "bytes": 108040 + } + }, + "total": 2 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200430202880 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 171621 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 469456976 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "VH1XEBxWSeOC5Wp1nJWOOQ", + "status": "green", + "version": 25 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "h1Dq510BY87G63mlUniv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:19.780Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430280704 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 120890 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 129317624 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "gFDq510BY87G63mlPXjT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:14.433Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 3, + "total": 262 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 475045 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430444544 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 180846 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 108541864 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w", + "status": "yellow", + "version": 41 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "dVDq510BY87G63mlNngQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:12.445Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 3, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 100722 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200430563328 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 161618 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 594007352 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "mg1Mn90gQO61heh2db6Clw", + "status": "green", + "version": 22 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "cVDq510BY87G63mlK3il", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:09.776Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430108672 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 110886 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 128126632 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "alDq510BY87G63mlFnjF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:04.429Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 30, + "total": 240 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 731676 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430198784 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 170839 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 239212960 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w", + "status": "yellow", + "version": 41 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dq510BY87G63mlD3gD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:02.445Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 3, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 100722 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200430313472 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 151617 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 589078944 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "mg1Mn90gQO61heh2db6Clw", + "status": "green", + "version": 22 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "W1Dq510BY87G63mlBHiC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:59.768Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430551040 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 100880 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 127361640 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VFDp510BY87G63ml73jM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:54.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 15, + "total": 218 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 532616 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430645248 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 160847 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 255125728 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w", + "status": "yellow", + "version": 41 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "SVDp510BY87G63ml53jn", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:52.438Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 3, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 100722 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200430727168 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 141610 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 584969992 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "mg1Mn90gQO61heh2db6Clw", + "status": "green", + "version": 22 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDp510BY87G63ml3Xhy", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:49.767Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430804992 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 90878 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 126346104 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDp510BY87G63mlyHil", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:44.433Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 26, + "total": 196 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 914367 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430231552 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 150846 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 116550688 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w", + "status": "yellow", + "version": 41 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "M1Dp510BY87G63mlwHji", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:42.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 3, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 100722 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200430514176 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 131611 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 579778392 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "mg1Mn90gQO61heh2db6Clw", + "status": "green", + "version": 22 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dp510BY87G63mltnhp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:39.763Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430604288 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 80875 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 124895056 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDp510BY87G63mloXiZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:34.431Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 22, + "total": 156 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 319223 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200430845952 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 140845 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 138280160 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "7A8qLRApQ7S6iYvVS2BN_w", + "status": "yellow", + "version": 41 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HVDp510BY87G63mlmnj0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:32.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA", + "name": "clusterone", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 3, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 100722 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1505426327135, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 3, + "fs": { + "available": { + "bytes": 200431083520 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 121607 + }, + "memory": { + "heap": { + "max": { + "bytes": 1885667328 + }, + "used": { + "bytes": 571077240 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "fYjS7QwxT42788axNXnZ1Q", + "nodes": { + "ZcUHP_QBQzeRjE5by3TbvQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "dkdHpjB2RIabMwbwcMWDNw", + "name": "clusterone-02", + "transport_address": "127.0.0.1:9303" + }, + "fYjS7QwxT42788axNXnZ1Q": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "gLCiGmfARciO6_8eTh9caw", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301" + }, + "qE6L9R9lQ3ybLe4Hs7q7xg": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "IxLzoNu2Tf6ul2COOXKjwg", + "name": "clusterone-03", + "transport_address": "127.0.0.1:9302" + } + }, + "state_uuid": "mg1Mn90gQO61heh2db6Clw", + "status": "green", + "version": 22 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "fYjS7QwxT42788axNXnZ1Q", + "ip": "127.0.0.1", + "name": "clusterone-01", + "transport_address": "127.0.0.1:9301", + "uuid": "fYjS7QwxT42788axNXnZ1Q" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GVDp510BY87G63mlkXi1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:29.762Z", + "elasticsearch": { + "cluster": { + "id": "6d-9tDFTRe-qT5GoBytdlQ", + "name": "clustertwo", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 8 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 33575 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1914278399999, + "status": "active", + "type": "basic" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431140864 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 70873 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 121139464 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7Cw93cHFS9mLBojuYdd9EQ", + "nodes": { + "7Cw93cHFS9mLBojuYdd9EQ": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "39Xe_o2RR9uVBRAk5j6WOQ", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304" + } + }, + "state_uuid": "L0nkstGcQpKQr1kZDgryAw", + "status": "green", + "version": 15 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7Cw93cHFS9mLBojuYdd9EQ", + "ip": "127.0.0.1", + "name": "clustertwo-02", + "transport_address": "127.0.0.1:9304", + "uuid": "7Cw93cHFS9mLBojuYdd9EQ" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "ElDp510BY87G63mlenh_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:24.416Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 11, + "total": 125 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 195520 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431226880 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 130828 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 260481584 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg", + "status": "yellow", + "version": 36 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDp510BY87G63mlU3h1", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:14.417Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 108 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 597117 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431521792 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 120832 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 179711504 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg", + "status": "yellow", + "version": 36 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDp510BY87G63mlLHdW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:00:04.413Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 36, + "total": 98 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 535341 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431353856 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 110828 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 225023744 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg", + "status": "yellow", + "version": 36 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "9FDp510BY87G63mlBXdD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:54.407Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 25, + "total": 88 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 473503 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431333376 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 100822 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 174641976 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg", + "status": "yellow", + "version": 36 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6lDo510BY87G63ml3ndw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:44.418Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 25, + "total": 67 + }, + "shards": { + "count": 6, + "primaries": 6 + }, + "store": { + "size": { + "bytes": 473503 + } + }, + "total": 6 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431435776 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 90831 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 123743016 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "hUJoJv6HQlGsZWluC-g1Gg", + "status": "yellow", + "version": 36 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "4FDo510BY87G63mlt3co", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:34.406Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 20, + "total": 52 + }, + "shards": { + "count": 3, + "primaries": 3 + }, + "store": { + "size": { + "bytes": 402393 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431411200 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 80822 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 131747840 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ", + "status": "yellow", + "version": 27 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDo510BY87G63mlkHcq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:24.419Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 15, + "total": 45 + }, + "shards": { + "count": 3, + "primaries": 3 + }, + "store": { + "size": { + "bytes": 344196 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431484928 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 70828 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 254836512 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ", + "status": "yellow", + "version": 27 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDo510BY87G63mlaHf4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:14.404Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 10, + "total": 38 + }, + "shards": { + "count": 3, + "primaries": 3 + }, + "store": { + "size": { + "bytes": 285987 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431804416 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 60820 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 206207440 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ", + "status": "yellow", + "version": 27 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "y1Do510BY87G63mlQXfm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:59:04.400Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 5, + "total": 31 + }, + "shards": { + "count": 3, + "primaries": 3 + }, + "store": { + "size": { + "bytes": 227861 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200431980544 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 50816 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 156387944 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ", + "status": "yellow", + "version": 27 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "xFDo510BY87G63mlGnfN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:54.393Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 24 + }, + "shards": { + "count": 3, + "primaries": 3 + }, + "store": { + "size": { + "bytes": 169631 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200432947200 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 40810 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 106351744 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ", + "status": "yellow", + "version": 27 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDn510BY87G63ml83fp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:44.416Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 12 + }, + "shards": { + "count": 3, + "primaries": 3 + }, + "store": { + "size": { + "bytes": 111522 + } + }, + "total": 3 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200433102848 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 30812 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 189444344 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "tRU9ngygRAeruZbbSqLGWQ", + "status": "yellow", + "version": 27 + }, + "status": "yellow" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDn510BY87G63mlzncE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T21:58:34.437Z", + "elasticsearch": { + "cluster": { + "id": "lOF8kofiS_2DX58o9mXJ1Q", + "name": "monitoring-one", + "stats": { + "indices": { + "docs": { + "deleted": 0, + "total": 1 + }, + "shards": { + "count": 1, + "primaries": 1 + }, + "store": { + "size": { + "bytes": 3628 + } + }, + "total": 1 + }, + "license": { + "expiry_date_in_millis": 1505426308997, + "status": "active", + "type": "trial" + }, + "nodes": { + "count": 1, + "fs": { + "available": { + "bytes": 200433647616 + }, + "total": { + "bytes": 499065712640 + } + }, + "jvm": { + "max_uptime": { + "ms": 20839 + }, + "memory": { + "heap": { + "max": { + "bytes": 628555776 + }, + "used": { + "bytes": 166358952 + } + } + } + }, + "versions": [ + "7.0.0-alpha1" + ] + }, + "stack": { + "xpack": { + "ccr": { + "available": true, + "enabled": true + } + } + }, + "state": { + "master_node": "7r5cGj40Qcyia0J1xF0lnA", + "nodes": { + "7r5cGj40Qcyia0J1xF0lnA": { + "attributes": { + "ml.enabled": "true" + }, + "ephemeral_id": "9h7Asl78Riu-5BjLw7W9Tg", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300" + } + }, + "state_uuid": "_Zg2PNnPRV-GOULeeFK6Sg", + "status": "green", + "version": 21 + }, + "status": "green" + } + }, + "node": { + "attributes": { + "ml.enabled": "true" + }, + "host": "127.0.0.1", + "id": "7r5cGj40Qcyia0J1xF0lnA", + "ip": "127.0.0.1", + "name": "monitoring-one-01", + "transport_address": "127.0.0.1:9300", + "uuid": "7r5cGj40Qcyia0J1xF0lnA" + }, + "version": "7.0.0-alpha1" + }, + "metricset": { + "name": "cluster_stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Dr510BY87G63mltHmP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:49.868Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 0, + "filtered": 0, + "in": 0, + "out": 0 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 446208672, + "heap_used_percent": 42 + }, + "uptime_in_millis": 79585 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 16.28515625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 0, + "filtered": 0, + "in": 0, + "out": 0, + "queue_push_duration_in_millis": 0 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 0, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 0 + }, + { + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 47 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:02:49.868Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "aFDr510BY87G63mltHmr", + "index": "metricbeat-8.0.0", + "source": { + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "state": { + "pipeline": { + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main" + } + }, + "stats": { + "jvm": { + "mem": { + } + } + } + } + }, + "metricset": { + "name": "state" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "R1Ds510BY87G63ml7XqF", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:10.484Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 4892, + "filtered": 29, + "in": 29, + "out": 29 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 395678336, + "heap_used_percent": 38 + }, + "uptime_in_millis": 159682 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 9.59423828125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 4893, + "filtered": 29, + "in": 29, + "out": 29, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 29, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 29, + "events_out": 29, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 4799, + "events_in": 29, + "events_out": 29, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:04:10.484Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "D1Ds510BY87G63mln3pV", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:50.460Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 4348, + "filtered": 19, + "in": 19, + "out": 19 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 361773096, + "heap_used_percent": 34 + }, + "uptime_in_millis": 139654 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 11.35009765625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 4349, + "filtered": 19, + "in": 19, + "out": 19, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 19, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 19, + "events_out": 19, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 4269, + "events_in": 19, + "events_out": 19, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:03:50.460Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "81Ds510BY87G63mleHky", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:40.445Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 4111, + "filtered": 15, + "in": 15, + "out": 15 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 345591992, + "heap_used_percent": 33 + }, + "uptime_in_millis": 129644 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 13.13623046875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 4112, + "filtered": 15, + "in": 15, + "out": 15, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 15, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 15, + "events_out": 15, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 4038, + "events_in": 15, + "events_out": 15, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 3 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:03:40.445Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "K1Ds510BY87G63mlxnpu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:00.471Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 4788, + "filtered": 26, + "in": 26, + "out": 26 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 379657696, + "heap_used_percent": 36 + }, + "uptime_in_millis": 149672 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 10.06591796875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 4789, + "filtered": 26, + "in": 26, + "out": 26, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 26, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 26, + "events_out": 26, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 4699, + "events_in": 26, + "events_out": 26, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 3 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:04:00.471Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "glDr510BY87G63ml23nH", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:00.396Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 3433, + "filtered": 5, + "in": 5, + "out": 5 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 279385544, + "heap_used_percent": 26 + }, + "uptime_in_millis": 89597 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 17.95458984375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 3433, + "filtered": 5, + "in": 5, + "out": 5, + "queue_push_duration_in_millis": 181 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 5, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 181 + }, + { + "duration_in_millis": 33, + "events_in": 5, + "events_out": 5, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 3379, + "events_in": 5, + "events_out": 5, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 10 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:03:00.396Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "11Ds510BY87G63mlUXkd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:30.434Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 3828, + "filtered": 10, + "in": 10, + "out": 10 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 326755624, + "heap_used_percent": 31 + }, + "uptime_in_millis": 119635 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 13.85791015625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 3828, + "filtered": 10, + "in": 10, + "out": 10, + "queue_push_duration_in_millis": 181 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 10, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 181 + }, + { + "duration_in_millis": 33, + "events_in": 10, + "events_out": 10, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 3764, + "events_in": 10, + "events_out": 10, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:03:30.434Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Ds510BY87G63mlAnnj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:10.413Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 3789, + "filtered": 9, + "in": 9, + "out": 9 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 294600712, + "heap_used_percent": 28 + }, + "uptime_in_millis": 99608 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 16.41064453125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 3789, + "filtered": 9, + "in": 9, + "out": 9, + "queue_push_duration_in_millis": 181 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 9, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 181 + }, + { + "duration_in_millis": 33, + "events_in": 9, + "events_out": 9, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 3726, + "events_in": 9, + "events_out": 9, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:03:10.413Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "u1Ds510BY87G63mlKnkA", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:20.424Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 3789, + "filtered": 9, + "in": 9, + "out": 9 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 310086008, + "heap_used_percent": 29 + }, + "uptime_in_millis": 109627 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 14.876953125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 3789, + "filtered": 9, + "in": 9, + "out": 9, + "queue_push_duration_in_millis": 181 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 9, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 181 + }, + { + "duration_in_millis": 33, + "events_in": 9, + "events_out": 9, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 3726, + "events_in": 9, + "events_out": 9, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:03:20.424Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDr510BY87G63mlsHlz", + "index": "metricbeat-8.0.0", + "source": { + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "state": { + "pipeline": { + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main" + } + }, + "stats": { + "jvm": { + "mem": { + } + } + } + } + }, + "metricset": { + "name": "state" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDt510BY87G63mlsXoU", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:00.543Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5406, + "filtered": 40, + "in": 40, + "out": 40 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 471170200, + "heap_used_percent": 45 + }, + "uptime_in_millis": 209725 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.70166015625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5407, + "filtered": 40, + "in": 40, + "out": 40, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 40, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 40, + "events_out": 40, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5291, + "events_in": 40, + "events_out": 40, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:05:00.543Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dt510BY87G63mlO3q4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:30.501Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5083, + "filtered": 31, + "in": 31, + "out": 31 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 424146432, + "heap_used_percent": 40 + }, + "uptime_in_millis": 179700 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 8.00341796875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5084, + "filtered": 31, + "in": 31, + "out": 31, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 31, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 31, + "events_out": 31, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 4988, + "events_in": 31, + "events_out": 31, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:04:30.501Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tVDt510BY87G63mliXr5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:50.519Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5228, + "filtered": 36, + "in": 36, + "out": 36 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 455282048, + "heap_used_percent": 43 + }, + "uptime_in_millis": 199717 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.4169921875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5229, + "filtered": 36, + "in": 36, + "out": 36, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 36, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 36, + "events_out": 36, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5129, + "events_in": 36, + "events_out": 36, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:04:50.519Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "B1Dt510BY87G63ml_3tE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:20.560Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5585, + "filtered": 45, + "in": 45, + "out": 45 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 237981376, + "heap_used_percent": 22 + }, + "uptime_in_millis": 229742 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.10400390625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5586, + "filtered": 45, + "in": 45, + "out": 45, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 45, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 45, + "events_out": 45, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5465, + "events_in": 45, + "events_out": 45, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:05:20.560Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Y1Dt510BY87G63mlFHqg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:20.493Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 4892, + "filtered": 29, + "in": 29, + "out": 29 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 409717384, + "heap_used_percent": 39 + }, + "uptime_in_millis": 169691 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 8.580078125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 4893, + "filtered": 29, + "in": 29, + "out": 29, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 29, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 29, + "events_out": 29, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 4799, + "events_in": 29, + "events_out": 29, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:04:20.493Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dt510BY87G63ml2Hop", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:10.553Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5462, + "filtered": 43, + "in": 43, + "out": 43 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 487430992, + "heap_used_percent": 46 + }, + "uptime_in_millis": 219736 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.9873046875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5463, + "filtered": 43, + "in": 43, + "out": 43, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 43, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 43, + "events_out": 43, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5344, + "events_in": 43, + "events_out": 43, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:05:10.553Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDu510BY87G63mlJntd", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:30.570Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5601, + "filtered": 46, + "in": 46, + "out": 46 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 251174136, + "heap_used_percent": 24 + }, + "uptime_in_millis": 239750 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.52294921875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5602, + "filtered": 46, + "in": 46, + "out": 46, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 46, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 46, + "events_out": 46, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5479, + "events_in": 46, + "events_out": 46, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:05:30.570Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDu510BY87G63mlTXt4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:40.580Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5895, + "filtered": 53, + "in": 53, + "out": 53 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 268327656, + "heap_used_percent": 25 + }, + "uptime_in_millis": 249758 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.67333984375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5896, + "filtered": 53, + "in": 53, + "out": 53, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 53, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 53, + "events_out": 53, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5765, + "events_in": 53, + "events_out": 53, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 2 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:05:40.580Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDt510BY87G63mlYnrT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:40.509Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5213, + "filtered": 35, + "in": 35, + "out": 35 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 440112408, + "heap_used_percent": 42 + }, + "uptime_in_millis": 189709 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.2275390625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5214, + "filtered": 35, + "in": 35, + "out": 35, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 35, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 35, + "events_out": 35, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5114, + "events_in": 35, + "events_out": 35, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:04:40.509Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "i1Du510BY87G63mlm3ut", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:00.600Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5964, + "filtered": 56, + "in": 56, + "out": 56 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 301926168, + "heap_used_percent": 29 + }, + "uptime_in_millis": 269772 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.47509765625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5965, + "filtered": 56, + "in": 56, + "out": 56, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 56, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 56, + "events_out": 56, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5830, + "events_in": 56, + "events_out": 56, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:06:00.600Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "sVDu510BY87G63mlwnvI", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:10.610Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6060, + "filtered": 60, + "in": 60, + "out": 60 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 317285720, + "heap_used_percent": 30 + }, + "uptime_in_millis": 279780 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.603515625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6061, + "filtered": 60, + "in": 60, + "out": 60, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 60, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 60, + "events_out": 60, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5922, + "events_in": 60, + "events_out": 60, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:06:10.610Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "A1Dv510BY87G63mlEHz0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:30.626Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6060, + "filtered": 60, + "in": 60, + "out": 60 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 345746080, + "heap_used_percent": 33 + }, + "uptime_in_millis": 299795 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.82958984375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6061, + "filtered": 60, + "in": 60, + "out": 60, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 60, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 60, + "events_out": 60, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5922, + "events_in": 60, + "events_out": 60, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:06:30.626Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jFDv510BY87G63mlhnw-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:00.652Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6355, + "filtered": 73, + "in": 73, + "out": 73 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 392950784, + "heap_used_percent": 37 + }, + "uptime_in_millis": 329820 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.97705078125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6357, + "filtered": 73, + "in": 73, + "out": 73, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 73, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 73, + "events_out": 73, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6206, + "events_in": 73, + "events_out": 73, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:07:00.652Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "Z1Du510BY87G63mldHuR", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:50.590Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 5935, + "filtered": 55, + "in": 55, + "out": 55 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 285113464, + "heap_used_percent": 27 + }, + "uptime_in_millis": 259765 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.77099609375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 5936, + "filtered": 55, + "in": 55, + "out": 55, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 55, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 55, + "events_out": 55, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5802, + "events_in": 55, + "events_out": 55, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:05:50.590Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2VDu510BY87G63ml6Xvc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:20.618Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6060, + "filtered": 60, + "in": 60, + "out": 60 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 331888464, + "heap_used_percent": 31 + }, + "uptime_in_millis": 289789 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.83740234375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6061, + "filtered": 60, + "in": 60, + "out": 60, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 60, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 60, + "events_out": 60, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 5922, + "events_in": 60, + "events_out": 60, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:06:20.618Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "vVDv510BY87G63mlrXxS", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:10.659Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6381, + "filtered": 74, + "in": 74, + "out": 74 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 407759488, + "heap_used_percent": 39 + }, + "uptime_in_millis": 339826 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.9189453125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6383, + "filtered": 74, + "in": 74, + "out": 74, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 74, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 74, + "events_out": 74, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6231, + "events_in": 74, + "events_out": 74, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:07:10.659Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XVDv510BY87G63mlX3wl", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:50.644Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6220, + "filtered": 67, + "in": 67, + "out": 67 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 376436808, + "heap_used_percent": 36 + }, + "uptime_in_millis": 319815 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.6923828125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6222, + "filtered": 67, + "in": 67, + "out": 67, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 67, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 67, + "events_out": 67, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6076, + "events_in": 67, + "events_out": 67, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:06:50.644Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "L1Dv510BY87G63mlOHwQ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:40.636Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6199, + "filtered": 66, + "in": 66, + "out": 66 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 361593664, + "heap_used_percent": 34 + }, + "uptime_in_millis": 309803 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6201, + "filtered": 66, + "in": 66, + "out": 66, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 66, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 66, + "events_out": 66, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6056, + "events_in": 66, + "events_out": 66, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:06:40.636Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DVDw510BY87G63mll37a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:10.699Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6847, + "filtered": 88, + "in": 88, + "out": 88 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 499195928, + "heap_used_percent": 48 + }, + "uptime_in_millis": 399881 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.49267578125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6849, + "filtered": 88, + "in": 88, + "out": 88, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 88, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 88, + "events_out": 88, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6684, + "events_in": 88, + "events_out": 88, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:08:10.699Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jVDw510BY87G63ml5n4H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:30.712Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6864, + "filtered": 89, + "in": 89, + "out": 89 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 246401592, + "heap_used_percent": 23 + }, + "uptime_in_millis": 419894 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.42919921875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6866, + "filtered": 89, + "in": 89, + "out": 89, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 89, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 89, + "events_out": 89, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6701, + "events_in": 89, + "events_out": 89, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:08:30.712Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "TFDw510BY87G63mlvn7y", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:20.706Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6847, + "filtered": 88, + "in": 88, + "out": 88 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 232831256, + "heap_used_percent": 22 + }, + "uptime_in_millis": 409887 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.7734375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6849, + "filtered": 88, + "in": 88, + "out": 88, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 88, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 88, + "events_out": 88, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6684, + "events_in": 88, + "events_out": 88, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:08:20.706Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "z1Dx510BY87G63mlDX4i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:40.719Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6925, + "filtered": 92, + "in": 92, + "out": 92 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 263546552, + "heap_used_percent": 25 + }, + "uptime_in_millis": 429906 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.609375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6927, + "filtered": 92, + "in": 92, + "out": 92, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 92, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 92, + "events_out": 92, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6759, + "events_in": 92, + "events_out": 92, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:08:40.719Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JVDv510BY87G63ml-31_", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:30.673Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6381, + "filtered": 74, + "in": 74, + "out": 74 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 436121992, + "heap_used_percent": 41 + }, + "uptime_in_millis": 359846 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.2451171875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6383, + "filtered": 74, + "in": 74, + "out": 74, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 74, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 74, + "events_out": 74, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6231, + "events_in": 74, + "events_out": 74, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:07:30.673Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "lVDw510BY87G63mlSX21", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:50.686Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6748, + "filtered": 84, + "in": 84, + "out": 84 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 466954848, + "heap_used_percent": 44 + }, + "uptime_in_millis": 379862 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.1484375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6750, + "filtered": 84, + "in": 84, + "out": 84, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 84, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 84, + "events_out": 84, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6589, + "events_in": 84, + "events_out": 84, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:07:50.686Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "8FDv510BY87G63ml1Hxp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:20.665Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6381, + "filtered": 74, + "in": 74, + "out": 74 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 421678936, + "heap_used_percent": 40 + }, + "uptime_in_millis": 349838 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.91455078125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6383, + "filtered": 74, + "in": 74, + "out": 74, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 74, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 74, + "events_out": 74, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6231, + "events_in": 74, + "events_out": 74, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:07:20.665Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDw510BY87G63mlIn2a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:40.679Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6628, + "filtered": 79, + "in": 79, + "out": 79 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 450766896, + "heap_used_percent": 43 + }, + "uptime_in_millis": 369854 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.58544921875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6630, + "filtered": 79, + "in": 79, + "out": 79, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 79, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 79, + "events_out": 79, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6474, + "events_in": 79, + "events_out": 79, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:07:40.679Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDw510BY87G63mlcH3E", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:00.692Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 6800, + "filtered": 86, + "in": 86, + "out": 86 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 483404264, + "heap_used_percent": 46 + }, + "uptime_in_millis": 389871 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 6802, + "filtered": 86, + "in": 86, + "out": 86, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 86, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 86, + "events_out": 86, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6639, + "events_in": 86, + "events_out": 86, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:08:00.692Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDx510BY87G63ml0ICP", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:30.753Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7390, + "filtered": 108, + "in": 108, + "out": 108 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 341401560, + "heap_used_percent": 32 + }, + "uptime_in_millis": 479960 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.68994140625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7392, + "filtered": 108, + "in": 108, + "out": 108, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 108, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 108, + "events_out": 108, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7204, + "events_in": 108, + "events_out": 108, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:09:30.753Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "P1Dy510BY87G63mlHoC-", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:50.767Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7537, + "filtered": 115, + "in": 115, + "out": 115 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 373189064, + "heap_used_percent": 35 + }, + "uptime_in_millis": 499974 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.10888671875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7539, + "filtered": 115, + "in": 115, + "out": 115, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 115, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 115, + "events_out": 115, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7345, + "events_in": 115, + "events_out": 115, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:09:50.767Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "X1Dy510BY87G63mlRYDX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:00.775Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7660, + "filtered": 121, + "in": 121, + "out": 121 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 390812928, + "heap_used_percent": 37 + }, + "uptime_in_millis": 509980 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.43798828125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7662, + "filtered": 121, + "in": 121, + "out": 121, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 121, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 121, + "events_out": 121, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7466, + "events_in": 121, + "events_out": 121, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:10:00.775Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "61Dx510BY87G63mlqX94", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:20.747Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7374, + "filtered": 107, + "in": 107, + "out": 107 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 325169568, + "heap_used_percent": 31 + }, + "uptime_in_millis": 469945 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.92529296875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7376, + "filtered": 107, + "in": 107, + "out": 107, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 107, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 107, + "events_out": 107, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7189, + "events_in": 107, + "events_out": 107, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:09:20.747Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "oVDx510BY87G63mlgn9k", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:10.739Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7357, + "filtered": 106, + "in": 106, + "out": 106 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 311753408, + "heap_used_percent": 30 + }, + "uptime_in_millis": 459939 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.267578125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7359, + "filtered": 106, + "in": 106, + "out": 106, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 106, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 106, + "events_out": 106, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7173, + "events_in": 106, + "events_out": 106, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:09:10.739Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "IVDx510BY87G63ml94Cq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:40.759Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7505, + "filtered": 113, + "in": 113, + "out": 113 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 357734984, + "heap_used_percent": 34 + }, + "uptime_in_millis": 489966 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 5.1220703125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7507, + "filtered": 113, + "in": 113, + "out": 113, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 113, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 113, + "events_out": 113, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7315, + "events_in": 113, + "events_out": 113, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:09:40.759Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "f1Dy510BY87G63mlbID5", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:10.783Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7861, + "filtered": 128, + "in": 128, + "out": 128 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 405722152, + "heap_used_percent": 39 + }, + "uptime_in_millis": 519992 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 6.9814453125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7863, + "filtered": 128, + "in": 128, + "out": 128, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 128, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 128, + "events_out": 128, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7662, + "events_in": 128, + "events_out": 128, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 0 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:10:10.783Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "E1Dx510BY87G63mlNH84", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:50.727Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7024, + "filtered": 97, + "in": 97, + "out": 97 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 279439608, + "heap_used_percent": 26 + }, + "uptime_in_millis": 439916 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.3359375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7026, + "filtered": 97, + "in": 97, + "out": 97, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 97, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 97, + "events_out": 97, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6853, + "events_in": 97, + "events_out": 97, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:08:50.727Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WVDx510BY87G63mlW39K", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:00.733Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7152, + "filtered": 102, + "in": 102, + "out": 102 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 294440832, + "heap_used_percent": 28 + }, + "uptime_in_millis": 449930 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.04345703125 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7154, + "filtered": 102, + "in": 102, + "out": 102, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 102, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 102, + "events_out": 102, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 6972, + "events_in": 102, + "events_out": 102, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:09:00.733Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "n1Dy510BY87G63mllIAN", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:20.799Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7861, + "filtered": 128, + "in": 128, + "out": 128 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 421972424, + "heap_used_percent": 40 + }, + "uptime_in_millis": 529998 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.41943359375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7863, + "filtered": 128, + "in": 128, + "out": 128, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 128, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 128, + "events_out": 128, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7662, + "events_in": 128, + "events_out": 128, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:10:20.799Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "v1Dy510BY87G63mlu4Aj", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:30.804Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7861, + "filtered": 128, + "in": 128, + "out": 128 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 436377320, + "heap_used_percent": 42 + }, + "uptime_in_millis": 540008 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 8.0947265625 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7863, + "filtered": 128, + "in": 128, + "out": 128, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 128, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 128, + "events_out": 128, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7662, + "events_in": 128, + "events_out": 128, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:10:30.804Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "31Dy510BY87G63ml4oBC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:40.810Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 7979, + "filtered": 132, + "in": 132, + "out": 132 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 452181184, + "heap_used_percent": 43 + }, + "uptime_in_millis": 550020 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.3974609375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 7981, + "filtered": 132, + "in": 132, + "out": 132, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 132, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 132, + "events_out": 132, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7776, + "events_in": 132, + "events_out": 132, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:10:40.810Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dz510BY87G63mlCYBz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:50.822Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 8076, + "filtered": 135, + "in": 135, + "out": 135 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 469806016, + "heap_used_percent": 45 + }, + "uptime_in_millis": 560031 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 7.79052734375 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 8078, + "filtered": 135, + "in": 135, + "out": 135, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 135, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 135, + "events_out": 135, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 7869, + "events_in": 135, + "events_out": 135, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:10:50.822Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "H1Dz510BY87G63mlMIF6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:11:00.837Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "logstash": { + "node": { + "stats": { + "events": { + "duration_in_millis": 8223, + "filtered": 142, + "in": 142, + "out": 142 + }, + "jvm": { + "mem": { + "heap_max_in_bytes": 1038876672, + "heap_used_in_bytes": 487782224, + "heap_used_percent": 46 + }, + "uptime_in_millis": 570039 + }, + "logstash": { + "ephemeral_id": "0a7dc822-48d8-4ad2-8c3d-9802de3a8cba", + "host": "tsullivan.local", + "http_address": "127.0.0.1:9600", + "name": "tsullivan.local", + "pipeline": { + "batch_size": 125, + "workers": 4 + }, + "snapshot": true, + "status": "green", + "uuid": "426e38f1-d098-4ffe-8778-41119fbb68db", + "version": "7.0.0-alpha1" + }, + "os": { + "cpu": { + "load_average": { + "1m": 9.5263671875 + } + } + }, + "pipelines": [ + { + "ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "events": { + "duration_in_millis": 8225, + "filtered": 142, + "in": 142, + "out": 142, + "queue_push_duration_in_millis": 184 + }, + "hash": "c301c2d8f8c8cc484711bae74a7e063a2e9cabcfffe324bb303122e326553cf6", + "id": "main", + "queue": { + "events_count": 0, + "type": "memory" + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "vertices": [ + { + "events_out": 142, + "id": "twitter_plugin_avocado", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b", + "queue_push_duration_in_millis": 184 + }, + { + "duration_in_millis": 33, + "events_in": 142, + "events_out": 142, + "id": "aa8972aee141bab0859eb4e642c983c52fa12a4d-2", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + }, + { + "duration_in_millis": 8008, + "events_in": 142, + "events_out": 142, + "id": "elasticsearch_output", + "pipeline_ephemeral_id": "0f55a364-0490-462a-84dd-ac3c6409b00b" + } + ] + } + ], + "process": { + "cpu": { + "percent": 1 + } + }, + "queue": { + "events_count": 0 + }, + "reloads": { + "failures": 0, + "successes": 0 + }, + "timestamp": "2017-08-15T22:11:00.837Z" + } + } + }, + "metricset": { + "name": "stats" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mVDq510BY87G63mld3il", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:27.700Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 0, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 5.0947265625, + "1m": 6.00341796875, + "5m": 5.91455078125 + }, + "memory": { + "free_in_bytes": 239185920 + } + }, + "process": { + "event_loop_delay": { + "ms": 0.9207448959350586 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 270385152 + } + }, + "uptime": { + "ms": 24930 + } + }, + "request": { + "disconnects": 0, + "total": 0 + }, + "response_time": { + "avg": { + "ms": 0 + }, + "max": { + "ms": 0 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDq510BY87G63mld3il", + "index": "metricbeat-8.0.0", + "source": { + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "stats": { + } + }, + "metricset": { + "name": "kibana_settings" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "l1Dr510BY87G63ml-nl4", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:06.780Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 0, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.501953125, + "1m": 16.41064453125, + "5m": 9.33837890625 + }, + "memory": { + "free_in_bytes": 1185849344 + } + }, + "process": { + "event_loop_delay": { + "ms": 0.714292049407959 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 238579712 + } + }, + "uptime": { + "ms": 34386 + } + }, + "request": { + "disconnects": 0, + "total": 0 + }, + "response_time": { + "avg": { + "ms": 0 + }, + "max": { + "ms": 0 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDr510BY87G63ml-nl4", + "index": "metricbeat-8.0.0", + "source": { + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "stats": { + } + }, + "metricset": { + "name": "kibana_settings" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "F1Dr510BY87G63mlO3kz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:18.847Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 36, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 5.6201171875, + "1m": 10.2109375, + "5m": 7.189453125 + }, + "memory": { + "free_in_bytes": 26542080 + } + }, + "process": { + "event_loop_delay": { + "ms": 12.996865630149841 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 303628288 + } + }, + "uptime": { + "ms": 76075 + } + }, + "request": { + "disconnects": 0, + "total": 99 + }, + "response_time": { + "avg": { + "ms": 167.94444444444446 + }, + "max": { + "ms": 3419 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_lDr510BY87G63mlFHg7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:02:08.851Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 24, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 5.56298828125, + "1m": 10.2001953125, + "5m": 7.07861328125 + }, + "memory": { + "free_in_bytes": 20598784 + } + }, + "process": { + "event_loop_delay": { + "ms": 12.292540669441223 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 297771008 + } + }, + "uptime": { + "ms": 66071 + } + }, + "request": { + "disconnects": 0, + "total": 48 + }, + "response_time": { + "avg": { + "ms": 78 + }, + "max": { + "ms": 719 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0FDs510BY87G63mlSHlp", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:23.418Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 16, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.47412109375, + "1m": 13.845703125, + "5m": 9.12353515625 + }, + "memory": { + "free_in_bytes": 966164480 + } + }, + "process": { + "event_loop_delay": { + "ms": 16.52798593044281 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 285765632 + } + }, + "uptime": { + "ms": 51024 + } + }, + "request": { + "disconnects": 0, + "total": 69 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "7FDs510BY87G63mlb3mr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:33.426Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 28, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.5087890625, + "1m": 13.1484375, + "5m": 9.13427734375 + }, + "memory": { + "free_in_bytes": 922882048 + } + }, + "process": { + "event_loop_delay": { + "ms": 17.2305349111557 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 290619392 + } + }, + "uptime": { + "ms": 61032 + } + }, + "request": { + "disconnects": 0, + "total": 92 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5VDq510BY87G63ml7HiT", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:57.716Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 12, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 5.4931640625, + "1m": 9.97607421875, + "5m": 6.92919921875 + }, + "memory": { + "free_in_bytes": 43294720 + } + }, + "process": { + "event_loop_delay": { + "ms": 3.6670796871185303 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 262664192 + } + }, + "uptime": { + "ms": 54946 + } + }, + "request": { + "disconnects": 0, + "total": 28 + }, + "response_time": { + "avg": { + "ms": 78 + }, + "max": { + "ms": 719 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tFDs510BY87G63mlIXlY", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:13.427Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 4, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.51025390625, + "1m": 15.73681640625, + "5m": 9.31591796875 + }, + "memory": { + "free_in_bytes": 1098579968 + } + }, + "process": { + "event_loop_delay": { + "ms": 16.01486301422119 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 278106112 + } + }, + "uptime": { + "ms": 41018 + } + }, + "request": { + "disconnects": 0, + "total": 13 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 795 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "s1Dq510BY87G63mlnnhm", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:37.704Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 0, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 5.3037109375, + "1m": 8.68017578125, + "5m": 6.47900390625 + }, + "memory": { + "free_in_bytes": 80068608 + } + }, + "process": { + "event_loop_delay": { + "ms": 2.035310745239258 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 270712832 + } + }, + "uptime": { + "ms": 34933 + } + }, + "request": { + "disconnects": 0, + "total": 1 + }, + "response_time": { + "avg": { + "ms": 78 + }, + "max": { + "ms": 78 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "zFDq510BY87G63mlxXhv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:01:47.710Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 0, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 5.41650390625, + "1m": 9.59375, + "5m": 6.75634765625 + }, + "memory": { + "free_in_bytes": 48046080 + } + }, + "process": { + "event_loop_delay": { + "ms": 2.9543206691741943 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 271376384 + } + }, + "uptime": { + "ms": 44939 + } + }, + "request": { + "disconnects": 0, + "total": 2 + }, + "response_time": { + "avg": { + "ms": 78 + }, + "max": { + "ms": 78 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "rlDt510BY87G63mlgXoe", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:43.464Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 112, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.33349609375, + "1m": 6.888671875, + "5m": 8.11962890625 + }, + "memory": { + "free_in_bytes": 1233244160 + } + }, + "process": { + "event_loop_delay": { + "ms": 22.261703729629517 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 272158720 + } + }, + "uptime": { + "ms": 131068.00000000001 + } + }, + "request": { + "disconnects": 0, + "total": 229 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "CFDs510BY87G63mllnqo", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:43.433Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 40, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.513671875, + "1m": 12.1640625, + "5m": 9.06201171875 + }, + "memory": { + "free_in_bytes": 832450560 + } + }, + "process": { + "event_loop_delay": { + "ms": 17.861966848373413 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 294563840 + } + }, + "uptime": { + "ms": 71038 + } + }, + "request": { + "disconnects": 0, + "total": 119 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "XFDt510BY87G63mlC3rX", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:13.444Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 76, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.43115234375, + "1m": 9.06591796875, + "5m": 8.59521484375 + }, + "memory": { + "free_in_bytes": 706007040 + } + }, + "process": { + "event_loop_delay": { + "ms": 20.434606909751892 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 305184768 + } + }, + "uptime": { + "ms": 101048 + } + }, + "request": { + "disconnects": 0, + "total": 221 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "JFDs510BY87G63mlvXq8", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:03:53.436Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 52, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.46630859375, + "1m": 10.68115234375, + "5m": 8.84521484375 + }, + "memory": { + "free_in_bytes": 596537344 + } + }, + "process": { + "event_loop_delay": { + "ms": 18.456543922424316 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 299384832 + } + }, + "uptime": { + "ms": 81041 + } + }, + "request": { + "disconnects": 0, + "total": 162 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "k1Dt510BY87G63mlWnoE", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:33.455Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 100, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.37939453125, + "1m": 7.6826171875, + "5m": 8.3115234375 + }, + "memory": { + "free_in_bytes": 1246052352 + } + }, + "process": { + "event_loop_delay": { + "ms": 21.69577383995056 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 274391040 + } + }, + "uptime": { + "ms": 121059 + } + }, + "request": { + "disconnects": 0, + "total": 225 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDt510BY87G63mlqHoz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:53.473Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 124, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.3466796875, + "1m": 7.02392578125, + "5m": 8.10009765625 + }, + "memory": { + "free_in_bytes": 1084207104 + } + }, + "process": { + "event_loop_delay": { + "ms": 22.84264373779297 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 219398144 + } + }, + "uptime": { + "ms": 141077 + } + }, + "request": { + "disconnects": 0, + "total": 231 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDt510BY87G63mlz3pM", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:03.481Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 136, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.33056640625, + "1m": 6.72509765625, + "5m": 7.998046875 + }, + "memory": { + "free_in_bytes": 1094930432 + } + }, + "process": { + "event_loop_delay": { + "ms": 23.413758754730225 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 211828736 + } + }, + "uptime": { + "ms": 151084 + } + }, + "request": { + "disconnects": 0, + "total": 233 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "QFDs510BY87G63ml5HrJ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:03.439Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 64, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.44873046875, + "1m": 9.8203125, + "5m": 8.71875 + }, + "memory": { + "free_in_bytes": 664113152 + } + }, + "process": { + "event_loop_delay": { + "ms": 19.66669189929962 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 302264320 + } + }, + "uptime": { + "ms": 91042 + } + }, + "request": { + "disconnects": 0, + "total": 206 + }, + "response_time": { + "avg": { + "ms": 155.44444444444446 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDt510BY87G63mlMnrz", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:04:23.450Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 88, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.42578125, + "1m": 8.61328125, + "5m": 8.509765625 + }, + "memory": { + "free_in_bytes": 742006784 + } + }, + "process": { + "event_loop_delay": { + "ms": 21.184847831726074 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 306278400 + } + }, + "uptime": { + "ms": 111054 + } + }, + "request": { + "disconnects": 0, + "total": 223 + }, + "response_time": { + "avg": { + "ms": 159 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "PlDu510BY87G63mlRHub", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:33.496Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 172, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.38671875, + "1m": 7.08056640625, + "5m": 7.98974609375 + }, + "memory": { + "free_in_bytes": 1067913216 + } + }, + "process": { + "event_loop_delay": { + "ms": 24.93504786491394 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 213106688 + } + }, + "uptime": { + "ms": 181098 + } + }, + "request": { + "disconnects": 0, + "total": 239 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "qlDu510BY87G63mluXvc", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:03.513Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 205, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.470703125, + "1m": 7.91748046875, + "5m": 8.07666015625 + }, + "memory": { + "free_in_bytes": 1081409536 + } + }, + "process": { + "event_loop_delay": { + "ms": 26.684515714645386 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 214626304 + } + }, + "uptime": { + "ms": 211114 + } + }, + "request": { + "disconnects": 0, + "total": 246 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDu510BY87G63mlHXt6", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:23.490Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 160, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4150390625, + "1m": 7.65576171875, + "5m": 8.126953125 + }, + "memory": { + "free_in_bytes": 1098612736 + } + }, + "process": { + "event_loop_delay": { + "ms": 24.484192728996277 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 212328448 + } + }, + "uptime": { + "ms": 171092 + } + }, + "request": { + "disconnects": 0, + "total": 237 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hFDu510BY87G63mlknvG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:53.508Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 196, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.423828125, + "1m": 7.4296875, + "5m": 7.99365234375 + }, + "memory": { + "free_in_bytes": 1097867264 + } + }, + "process": { + "event_loop_delay": { + "ms": 26.195613741874695 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 213876736 + } + }, + "uptime": { + "ms": 201109 + } + }, + "request": { + "disconnects": 0, + "total": 243 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "YFDu510BY87G63mla3uu", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:43.506Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 184, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.3935546875, + "1m": 7.099609375, + "5m": 7.9580078125 + }, + "memory": { + "free_in_bytes": 1098129408 + } + }, + "process": { + "event_loop_delay": { + "ms": 25.745052814483643 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 213540864 + } + }, + "uptime": { + "ms": 191108 + } + }, + "request": { + "disconnects": 0, + "total": 241 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "KFDv510BY87G63mlL3wW", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:33.532Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 218, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4873046875, + "1m": 7.5224609375, + "5m": 7.970703125 + }, + "memory": { + "free_in_bytes": 1015468032 + } + }, + "process": { + "event_loop_delay": { + "ms": 28.387285590171814 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 215621632 + } + }, + "uptime": { + "ms": 241132 + } + }, + "request": { + "disconnects": 0, + "total": 252 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_FDv510BY87G63mlCHsB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:23.527Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 214, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.5234375, + "1m": 8.25048828125, + "5m": 8.12353515625 + }, + "memory": { + "free_in_bytes": 1079128064 + } + }, + "process": { + "event_loop_delay": { + "ms": 27.785014629364014 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 214904832 + } + }, + "uptime": { + "ms": 231128 + } + }, + "request": { + "disconnects": 0, + "total": 250 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "0lDu510BY87G63ml4Hvw", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:13.520Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 210, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.453125, + "1m": 7.47509765625, + "5m": 7.97509765625 + }, + "memory": { + "free_in_bytes": 1080291328 + } + }, + "process": { + "event_loop_delay": { + "ms": 27.350637674331665 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 214413312 + } + }, + "uptime": { + "ms": 221119 + } + }, + "request": { + "disconnects": 0, + "total": 248 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "AFDt510BY87G63ml9ntr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:05:13.488Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 148, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.396484375, + "1m": 7.548828125, + "5m": 8.1298828125 + }, + "memory": { + "free_in_bytes": 1118089216 + } + }, + "process": { + "event_loop_delay": { + "ms": 23.899961709976196 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 212283392 + } + }, + "uptime": { + "ms": 161091 + } + }, + "request": { + "disconnects": 0, + "total": 235 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "jlDw510BY87G63mlQH3D", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:43.575Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 233, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.34716796875, + "1m": 5.58544921875, + "5m": 7.3134765625 + }, + "memory": { + "free_in_bytes": 1035132928 + } + }, + "process": { + "event_loop_delay": { + "ms": 32.37791967391968 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 218460160 + } + }, + "uptime": { + "ms": 311173 + } + }, + "request": { + "disconnects": 0, + "total": 266 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VVDw510BY87G63mlGX2q", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:33.569Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 231, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.37890625, + "1m": 5.98486328125, + "5m": 7.42041015625 + }, + "memory": { + "free_in_bytes": 1036824576 + } + }, + "process": { + "event_loop_delay": { + "ms": 31.739922642707825 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 218554368 + } + }, + "uptime": { + "ms": 301167 + } + }, + "request": { + "disconnects": 0, + "total": 264 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "6VDv510BY87G63mly3x0", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:13.559Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 227, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4248046875, + "1m": 6.64599609375, + "5m": 7.6259765625 + }, + "memory": { + "free_in_bytes": 1042812928 + } + }, + "process": { + "event_loop_delay": { + "ms": 30.713144421577454 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 217120768 + } + }, + "uptime": { + "ms": 281158 + } + }, + "request": { + "disconnects": 0, + "total": 260 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "HlDv510BY87G63ml8n2H", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:23.564Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 229, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4130859375, + "1m": 6.44091796875, + "5m": 7.55419921875 + }, + "memory": { + "free_in_bytes": 1041190912 + } + }, + "process": { + "event_loop_delay": { + "ms": 31.22706651687622 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 217796608 + } + }, + "uptime": { + "ms": 291162 + } + }, + "request": { + "disconnects": 0, + "total": 262 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yVDw510BY87G63mlZ33a", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:53.581Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 235, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.3779296875, + "1m": 6.1484375, + "5m": 7.3701171875 + }, + "memory": { + "free_in_bytes": 1030819840 + } + }, + "process": { + "event_loop_delay": { + "ms": 32.81900870800018 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 219131904 + } + }, + "uptime": { + "ms": 321178 + } + }, + "request": { + "disconnects": 0, + "total": 268 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "BlDw510BY87G63mljn7t", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:03.584Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 237, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.373046875, + "1m": 6.125, + "5m": 7.32470703125 + }, + "memory": { + "free_in_bytes": 1028616192 + } + }, + "process": { + "event_loop_delay": { + "ms": 33.339908719062805 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 219860992 + } + }, + "uptime": { + "ms": 331181 + } + }, + "request": { + "disconnects": 0, + "total": 270 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "VlDv510BY87G63mlVnwr", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:43.538Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 221, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4462890625, + "1m": 6.83984375, + "5m": 7.806640625 + }, + "memory": { + "free_in_bytes": 1062113280 + } + }, + "process": { + "event_loop_delay": { + "ms": 28.892616510391235 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 216162304 + } + }, + "uptime": { + "ms": 251137 + } + }, + "request": { + "disconnects": 0, + "total": 254 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hVDv510BY87G63mlfXxB", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:06:53.545Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 223, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4052734375, + "1m": 6.236328125, + "5m": 7.6474609375 + }, + "memory": { + "free_in_bytes": 1058217984 + } + }, + "process": { + "event_loop_delay": { + "ms": 29.629651427268982 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 216633344 + } + }, + "uptime": { + "ms": 261144 + } + }, + "request": { + "disconnects": 0, + "total": 256 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "tlDv510BY87G63mlpHxg", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:07:03.552Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 225, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.365234375, + "1m": 5.73828125, + "5m": 7.49365234375 + }, + "memory": { + "free_in_bytes": 1041530880 + } + }, + "process": { + "event_loop_delay": { + "ms": 30.09269940853119 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 216440832 + } + }, + "uptime": { + "ms": 271151 + } + }, + "request": { + "disconnects": 0, + "total": 258 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "_1Dx510BY87G63mlx3-2", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:23.650Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 253, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.3984375, + "1m": 6.01123046875, + "5m": 7.14794921875 + }, + "memory": { + "free_in_bytes": 930656256 + } + }, + "process": { + "event_loop_delay": { + "ms": 38.683523654937744 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 223846400 + } + }, + "uptime": { + "ms": 411244 + } + }, + "request": { + "disconnects": 0, + "total": 286 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "RVDw510BY87G63mltn4F", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:13.592Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 239, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.3974609375, + "1m": 6.49267578125, + "5m": 7.36279296875 + }, + "memory": { + "free_in_bytes": 1028780032 + } + }, + "process": { + "event_loop_delay": { + "ms": 33.79646861553192 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 219729920 + } + }, + "uptime": { + "ms": 341189 + } + }, + "request": { + "disconnects": 0, + "total": 272 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GlDx510BY87G63ml7oDD", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:33.656Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 259, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.3466796875, + "1m": 5.39404296875, + "5m": 6.9775390625 + }, + "memory": { + "free_in_bytes": 592805888 + } + }, + "process": { + "event_loop_delay": { + "ms": 39.20021164417267 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 225210368 + } + }, + "uptime": { + "ms": 421250 + } + }, + "request": { + "disconnects": 0, + "total": 325 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "hlDw510BY87G63ml3X4g", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:23.601Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 241, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.43896484375, + "1m": 7.03173828125, + "5m": 7.44921875 + }, + "memory": { + "free_in_bytes": 1025712128 + } + }, + "process": { + "event_loop_delay": { + "ms": 34.50060272216797 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 220819456 + } + }, + "uptime": { + "ms": 351197 + } + }, + "request": { + "disconnects": 0, + "total": 274 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mlDx510BY87G63mleX95", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:03.630Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 249, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4501953125, + "1m": 6.63916015625, + "5m": 7.34716796875 + }, + "memory": { + "free_in_bytes": 890376192 + } + }, + "process": { + "event_loop_delay": { + "ms": 37.69006562232971 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 223055872 + } + }, + "uptime": { + "ms": 391225 + } + }, + "request": { + "disconnects": 0, + "total": 282 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "yFDx510BY87G63mlBH42", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:33.608Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 243, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.46826171875, + "1m": 7.314453125, + "5m": 7.4990234375 + }, + "memory": { + "free_in_bytes": 1019998208 + } + }, + "process": { + "event_loop_delay": { + "ms": 35.11112880706787 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 221249536 + } + }, + "uptime": { + "ms": 361203 + } + }, + "request": { + "disconnects": 0, + "total": 276 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "DFDx510BY87G63mlK39e", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:43.614Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 245, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.51513671875, + "1m": 7.80078125, + "5m": 7.59765625 + }, + "memory": { + "free_in_bytes": 1013063680 + } + }, + "process": { + "event_loop_delay": { + "ms": 35.632229804992676 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 222113792 + } + }, + "uptime": { + "ms": 371210 + } + }, + "request": { + "disconnects": 0, + "total": 278 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "5FDx510BY87G63mloH-P", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:13.640Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 251, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4033203125, + "1m": 6.005859375, + "5m": 7.1875 + }, + "memory": { + "free_in_bytes": 914173952 + } + }, + "process": { + "event_loop_delay": { + "ms": 38.19878959655762 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 223928320 + } + }, + "uptime": { + "ms": 401235 + } + }, + "request": { + "disconnects": 0, + "total": 284 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "UlDx510BY87G63mlUn9i", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:08:53.620Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 247, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4912109375, + "1m": 7.30859375, + "5m": 7.49560546875 + }, + "memory": { + "free_in_bytes": 837443584 + } + }, + "process": { + "event_loop_delay": { + "ms": 36.18871080875397 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 222945280 + } + }, + "uptime": { + "ms": 381215 + } + }, + "request": { + "disconnects": 0, + "total": 280 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "OFDy510BY87G63mlFYDZ", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:43.662Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 265, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.30712890625, + "1m": 5.03173828125, + "5m": 6.84619140625 + }, + "memory": { + "free_in_bytes": 807833600 + } + }, + "process": { + "event_loop_delay": { + "ms": 39.81026566028595 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 205365248 + } + }, + "uptime": { + "ms": 431255 + } + }, + "request": { + "disconnects": 0, + "total": 327 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "WFDy510BY87G63mlPIDv", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:09:53.665Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 271, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.27392578125, + "1m": 4.77978515625, + "5m": 6.73486328125 + }, + "memory": { + "free_in_bytes": 709275648 + } + }, + "process": { + "event_loop_delay": { + "ms": 40.31694269180298 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 206258176 + } + }, + "uptime": { + "ms": 441258 + } + }, + "request": { + "disconnects": 0, + "total": 367 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "eFDy510BY87G63mlZIAG", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:03.671Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 277, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.36962890625, + "1m": 6.28369140625, + "5m": 6.99072265625 + }, + "memory": { + "free_in_bytes": 756252672 + } + }, + "process": { + "event_loop_delay": { + "ms": 40.97571074962616 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 211013632 + } + }, + "uptime": { + "ms": 451264 + } + }, + "request": { + "disconnects": 0, + "total": 400 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "mFDy510BY87G63mli4Bq", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:13.677Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 283, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4638671875, + "1m": 7.54345703125, + "5m": 7.2373046875 + }, + "memory": { + "free_in_bytes": 754343936 + } + }, + "process": { + "event_loop_delay": { + "ms": 41.47187566757202 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 207839232 + } + }, + "uptime": { + "ms": 461269 + } + }, + "request": { + "disconnects": 0, + "total": 402 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "uFDy510BY87G63mlsoA9", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:23.682Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 289, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.4462890625, + "1m": 7.1455078125, + "5m": 7.16259765625 + }, + "memory": { + "free_in_bytes": 659075072 + } + }, + "process": { + "event_loop_delay": { + "ms": 42.15893864631653 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 209608704 + } + }, + "uptime": { + "ms": 471274 + } + }, + "request": { + "disconnects": 0, + "total": 425 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "2FDy510BY87G63ml2YBt", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:33.687Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 295, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.49267578125, + "1m": 7.6064453125, + "5m": 7.26953125 + }, + "memory": { + "free_in_bytes": 427134976 + } + }, + "process": { + "event_loop_delay": { + "ms": 42.660526633262634 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 213233664 + } + }, + "uptime": { + "ms": 481279 + } + }, + "request": { + "disconnects": 0, + "total": 458 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "-FDz510BY87G63mlAIB7", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:43.695Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 301, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.51025390625, + "1m": 7.685546875, + "5m": 7.2939453125 + }, + "memory": { + "free_in_bytes": 262578176 + } + }, + "process": { + "event_loop_delay": { + "ms": 43.412492632865906 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 226197504 + } + }, + "uptime": { + "ms": 491286 + } + }, + "request": { + "disconnects": 0, + "total": 543 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} + +{ + "type": "_doc", + "value": { + "id": "GFDz510BY87G63mlJ4GC", + "index": "metricbeat-8.0.0", + "source": { + "@timestamp": "2017-08-15T22:10:53.699Z", + "elasticsearch": { + "cluster": { + "id": "TkHOX_-1TzWwbROwQJU5IA" + }, + "node": { + "id": "fYjS7QwxT42788axNXnZ1Q", + "name": "clusterone-01" + } + }, + "kibana": { + "kibana": { + "host": "tsullivan.local", + "index": ".kibana", + "name": "tsullivan.local", + "snapshot": false, + "status": "green", + "transport_address": "tsullivan.local:5601", + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9", + "version": "7.0.0-alpha1" + }, + "stats": { + "concurrent_connections": 307, + "kibana": { + "status": "green" + }, + "os": { + "load": { + "15m": 6.58544921875, + "1m": 8.52783203125, + "5m": 7.48291015625 + }, + "memory": { + "free_in_bytes": 112713728 + } + }, + "process": { + "event_loop_delay": { + "ms": 44.02812159061432 + }, + "memory": { + "heap": { + "size_limit": { + "bytes": 1501560832 + } + }, + "resident_set_size": { + "bytes": 231141376 + } + }, + "uptime": { + "ms": 501289 + } + }, + "request": { + "disconnects": 0, + "total": 571 + }, + "response_time": { + "avg": { + "ms": 281 + }, + "max": { + "ms": 1930 + } + }, + "uuid": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "metricset": { + "name": "stats" + }, + "service": { + "id": "de3b8f2a-7bb9-4931-9bf3-997ba7824cf9" + } + }, + "type": "_doc" + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/multicluster_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/multicluster_mb/mappings.json new file mode 100644 index 000000000000..ec7ece68f3b8 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/multicluster_mb/mappings.json @@ -0,0 +1,23825 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-6-2017.08.15", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-6-2017.08.15", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "interval_ms": { + "type": "long" + }, + "logstash_state": { + "properties": { + "ephemeral_id": { + "type": "keyword" + }, + "host": { + "type": "keyword" + }, + "http_address": { + "type": "keyword" + }, + "name": { + "type": "keyword" + }, + "pipeline": { + "properties": { + "batch_size": { + "type": "integer" + }, + "ephemeral_id": { + "type": "keyword" + }, + "format": { + "type": "keyword" + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "representation": { + "enabled": false + }, + "version": { + "type": "keyword" + }, + "workers": { + "type": "short" + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "logstash_stats": { + "properties": { + "batch_size": { + "type": "integer" + }, + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "ephemeral_id": { + "type": "keyword" + }, + "host": { + "type": "keyword" + }, + "http_address": { + "type": "keyword" + }, + "name": { + "type": "keyword" + }, + "pipeline": { + "properties": { + "batch_size": { + "type": "long" + }, + "workers": { + "type": "short" + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "control_group": { + "type": "keyword" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "control_group": { + "type": "keyword" + }, + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "ephemeral_id": { + "type": "keyword" + }, + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "queue_push_duration_in_millis": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "reloads": { + "properties": { + "failures": { + "type": "long" + }, + "successes": { + "type": "long" + } + } + }, + "vertices": { + "properties": { + "double_gauges": { + "properties": { + "name": { + "type": "keyword" + }, + "value": { + "type": "double" + } + }, + "type": "nested" + }, + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "long_counters": { + "properties": { + "name": { + "type": "keyword" + }, + "value": { + "type": "long" + } + }, + "type": "nested" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "long" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + }, + "max_file_descriptors": { + "type": "long" + }, + "open_file_descriptors": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "reloads": { + "properties": { + "failures": { + "type": "long" + }, + "successes": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + }, + "workers": { + "type": "short" + } + }, + "type": "object" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "source_node": { + "properties": { + "host": { + "type": "keyword" + }, + "ip": { + "type": "keyword" + }, + "name": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "transport_address": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-6-2017.08.15", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_management_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_management_mb/data.json.gz new file mode 100644 index 000000000000..dfe8e6a5b095 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_management_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_management_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_management_mb/mappings.json new file mode 100644 index 000000000000..5fa0d9674153 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_management_mb/mappings.json @@ -0,0 +1,22752 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".management-beats", + "mappings": { + "dynamic": "strict", + "properties": { + "beat": { + "properties": { + "access_token": { + "type": "keyword" + }, + "active": { + "type": "boolean" + }, + "enrollment_token": { + "type": "keyword" + }, + "ephemeral_id": { + "type": "keyword" + }, + "host_ip": { + "type": "ip" + }, + "host_name": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "last_checkin": { + "type": "date" + }, + "metadata": { + "dynamic": "true", + "type": "object" + }, + "name": { + "type": "keyword" + }, + "status": { + "properties": { + "event": { + "properties": { + "message": { + "type": "text" + }, + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "timestamp": { + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "tags": { + "type": "keyword" + }, + "type": { + "type": "keyword" + }, + "verified_on": { + "type": "date" + }, + "version": { + "type": "keyword" + } + } + }, + "configuration_block": { + "properties": { + "config": { + "type": "keyword" + }, + "description": { + "type": "text" + }, + "id": { + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "tag": { + "type": "keyword" + }, + "type": { + "type": "keyword" + } + } + }, + "enrollment_token": { + "properties": { + "expires_on": { + "type": "date" + }, + "token": { + "type": "keyword" + } + } + }, + "tag": { + "properties": { + "color": { + "type": "keyword" + }, + "hasConfigurationBlocksTypes": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "name": { + "type": "keyword" + } + } + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_mb/data.json.gz new file mode 100644 index 000000000000..245746f7a0d8 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_mb/mappings.json new file mode 100644 index 000000000000..c9c39865a718 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/detect_beats_mb/mappings.json @@ -0,0 +1,36781 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-mb-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-mb-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + "metricbeat-8.0.1": { + "is_write_index": true + } + }, + "index": "metricbeat-8.0.1-2019.04.09-000001", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.1" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "coredns.stats.dns.request.duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "coredns.stats.dns.request.duration.ns.bucket.*" + } + }, + { + "coredns.stats.dns.request.size.bytes.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "coredns.stats.dns.request.size.bytes.bucket.*" + } + }, + { + "coredns.stats.dns.response.size.bytes.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "coredns.stats.dns.response.size.bytes.bucket.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "coredns": { + "properties": { + "stats": { + "properties": { + "dns": { + "properties": { + "request": { + "properties": { + "count": { + "properties": { + "total": { + "type": "long" + } + } + }, + "do": { + "properties": { + "count": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "type": { + "properties": { + "count": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "rcode": { + "properties": { + "count": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "panic": { + "properties": { + "count": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "proto": { + "ignore_above": 1024, + "type": "keyword" + }, + "rcode": { + "ignore_above": 1024, + "type": "keyword" + }, + "server": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "long" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "long" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "rate": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "rate": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "rate": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "dropwizard": { + "type": "object" + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "follower": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "operations_written": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "leader": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "count": { + "type": "long" + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "primaries": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "master": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "days_until_first_cert_expiring": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "target_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "tasks": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "retried": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "downtime": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "json": { + "type": "object" + }, + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "server": { + "type": "object" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "isr": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "type": "object" + }, + "apiserver": { + "properties": { + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "long" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "long" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "long" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "long" + }, + "free": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "long" + }, + "pagefaults": { + "type": "long" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "ignore_above": 1024, + "type": "keyword" + }, + "metadata": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "nanocores": { + "type": "long" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "long" + }, + "free": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "long" + }, + "pagefaults": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "long" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "page_faults": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "nanocores": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "long" + }, + "pagefaults": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "long" + }, + "free": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "labels": { + "type": "object" + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "type": "long" + }, + "scanned_indexes": { + "type": "long" + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "type": "long" + }, + "passes": { + "type": "long" + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "observer": { + "properties": { + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + } + } + }, + "title": { + "ignore_above": 1024, + "type": "keyword" + }, + "working_directory": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "related": { + "properties": { + "ip": { + "type": "ip" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "activity_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "family": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "ignore_above": 1024, + "type": "keyword" + }, + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "ignore_above": 1024, + "type": "keyword" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "windows": { + "properties": { + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat-8.0.1", + "rollover_alias": "metricbeat-8.0.1" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "client.address", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.user.email", + "client.user.full_name", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "ecs.version", + "error.code", + "error.id", + "error.message", + "event.action", + "event.category", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.timezone", + "event.type", + "file.device", + "file.extension", + "file.gid", + "file.group", + "file.inode", + "file.mode", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.id", + "group.name", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.email", + "host.user.full_name", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.original", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "process.args", + "process.executable", + "process.name", + "process.title", + "process.working_directory", + "server.address", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.user.email", + "server.user.full_name", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.user.email", + "source.user.full_name", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "url.domain", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.scheme", + "url.username", + "user.email", + "user.full_name", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "agent.hostname", + "error.type", + "cloud.project.id", + "host.os.build", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "coredns.stats.type", + "coredns.stats.rcode", + "coredns.stats.family", + "coredns.stats.server", + "coredns.stats.zone", + "coredns.stats.proto", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.partition.isr", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.node.status.ready", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "logstash.node.jvm.version", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "nats.server.id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.activity_state", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "uwsgi.status.worker.status", + "uwsgi.status.worker.rss", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.network_names", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana/data.json.gz new file mode 100644 index 000000000000..87bdb16be60c Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana/mappings.json new file mode 100644 index 000000000000..f8c55c60c498 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana/mappings.json @@ -0,0 +1,1968 @@ +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-beats-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-mb-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-mb-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive/data.json.gz new file mode 100644 index 000000000000..308a7be79068 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive/mappings.json new file mode 100644 index 000000000000..211e253ef83d --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive/mappings.json @@ -0,0 +1,1255 @@ +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-beats-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-mb-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-mb-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/data.json.gz index 308a7be79068..3323da290814 100644 Binary files a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/data.json.gz and b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/mappings.json index 211e253ef83d..be67a66f6ff7 100644 --- a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/mappings.json +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_exclusive_mb/mappings.json @@ -1,3 +1,22613 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + { "type": "index", "value": { diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/data.json.gz index 87bdb16be60c..ce2a8f3f77c5 100644 Binary files a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/data.json.gz and b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/mappings.json index f8c55c60c498..bdc5b8d65405 100644 --- a/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/mappings.json +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/es_and_kibana_mb/mappings.json @@ -1,3 +1,22613 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + { "type": "index", "value": { diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana/data.json.gz new file mode 100644 index 000000000000..52fc5cbf2923 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana/mappings.json new file mode 100644 index 000000000000..03f954f92dd3 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana/mappings.json @@ -0,0 +1,1376 @@ +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-beats-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-mb-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive/data.json.gz new file mode 100644 index 000000000000..acac9851ce00 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive/mappings.json new file mode 100644 index 000000000000..4f388b8834b7 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive/mappings.json @@ -0,0 +1,1847 @@ +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-beats-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-mb-2019.04.09", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-7-mb-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-7-2019.04.09", + "mappings": { + "dynamic": "false", + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/data.json.gz index acac9851ce00..03fb01b89f71 100644 Binary files a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/data.json.gz and b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/mappings.json index 4f388b8834b7..097f95212163 100644 --- a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/mappings.json +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_exclusive_mb/mappings.json @@ -1,3 +1,22613 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + { "type": "index", "value": { diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/data.json.gz index 52fc5cbf2923..e97a04800f28 100644 Binary files a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/data.json.gz and b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/mappings.json index 03f954f92dd3..05cd6a25a5b6 100644 --- a/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/mappings.json +++ b/x-pack/test/functional/es_archives/monitoring/setup/collection/kibana_mb/mappings.json @@ -1,3 +1,22613 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + { "type": "index", "value": { diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-basic-beats/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-basic-beats/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-basic-beats/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-basic-beats/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats_mb/data.json.gz new file mode 100644 index 000000000000..b6e544cf49c6 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats_mb/mappings.json new file mode 100644 index 000000000000..ba4fe9add3fb --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_basic_beats_mb/mappings.json @@ -0,0 +1,23628 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-beats-6-2018.02.20", + "mappings": { + "dynamic": false, + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2018.02.20", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2018.02.20", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-green-gold/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-green-gold/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-green-gold/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-green-gold/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold_mb/data.json.gz new file mode 100644 index 000000000000..59d4a1ee17bf Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold_mb/mappings.json new file mode 100644 index 000000000000..9e42f5d8b20e --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_gold_mb/mappings.json @@ -0,0 +1,23616 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-kibana-6-2017.08.23", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-logstash-6-2017.08.23", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-6-2017.08.23", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-green-platinum/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-green-platinum/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-green-platinum/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-green-platinum/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum_mb/data.json.gz new file mode 100644 index 000000000000..770ad57fbb38 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum_mb/mappings.json new file mode 100644 index 000000000000..41d67d7aef26 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_platinum_mb/mappings.json @@ -0,0 +1,23689 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2018.02.13", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-beats-6-2018.02.13", + "mappings": { + "dynamic": false, + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2018.02.13", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-green-trial-two-nodes-one-cgrouped/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-green-trial-two-nodes-one-cgrouped/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-green-trial-two-nodes-one-cgrouped/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-green-trial-two-nodes-one-cgrouped/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped_mb/data.json.gz new file mode 100644 index 000000000000..04550493263d Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped_mb/mappings.json new file mode 100644 index 000000000000..542fe35002ab --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_green_trial_two_nodes_one_cgrouped_mb/mappings.json @@ -0,0 +1,23318 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2018.02.13", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2018.02.13", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes/data.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes/data.json deleted file mode 100644 index 526399e2ce9d..000000000000 --- a/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes/data.json +++ /dev/null @@ -1,239497 +0,0 @@ -{ - "type": "doc", - "value": { - "id": "DrUkk20Bd_aHqZFwAE9x", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198705089, - "read_kilobytes": 30836341656, - "read_operations": 75132002, - "write_kilobytes": 33955591640, - "write_operations": 123573087 - } - }, - "total": { - "available_in_bytes": 1535157264384, - "free_in_bytes": 1823265103872, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5451958270 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 14892016 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1269, - "hit_count": 10979, - "memory_size_in_bytes": 296976010, - "miss_count": 105191 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4022, - "memory_size_in_bytes": 12576920, - "miss_count": 7673 - }, - "search": { - "query_time_in_millis": 164431464, - "query_total": 138373 - }, - "segments": { - "count": 255, - "doc_values_memory_in_bytes": 10548012, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4201508362, - "norms_memory_in_bytes": 82048, - "points_memory_in_bytes": 476095691, - "stored_fields_memory_in_bytes": 1481395632, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233386979, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3804079420108 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 9574 - }, - "young": { - "collection_count": 247630, - "collection_time_in_millis": 7564942 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 14166888744, - "heap_used_percent": 44 - } - }, - "mlockall": true, - "node_id": "9uYu0U-tSjifvO6YLvNY5Q", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2326594484798618 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60707520512" - } - }, - "cpu": { - "load_average": { - "15m": 0.6, - "1m": 0.6, - "5m": 0.68 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2519 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 42 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:13.131Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "timestamp": "2019-10-03T19:41:13.132Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "DLUjk20Bd_aHqZFw_0_1", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5324395983, - "read_kilobytes": 38350794520, - "read_operations": 3075382782, - "write_kilobytes": 165815083492, - "write_operations": 2249013201 - } - }, - "total": { - "available_in_bytes": 596486742016, - "free_in_bytes": 692522688512, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1630989782 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3672 - }, - "indexing": { - "index_time_in_millis": 25230277754, - "index_total": 28237465794, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 46892, - "hit_count": 4785465, - "memory_size_in_bytes": 499261145, - "miss_count": 1576899 - }, - "request_cache": { - "evictions": 0, - "hit_count": 994409, - "memory_size_in_bytes": 16320, - "miss_count": 62041 - }, - "search": { - "query_time_in_millis": 417060543, - "query_total": 9987068 - }, - "segments": { - "count": 931, - "doc_values_memory_in_bytes": 14260450, - "fixed_bit_set_memory_in_bytes": 38240, - "index_writer_memory_in_bytes": 253466866, - "memory_in_bytes": 1610519258, - "norms_memory_in_bytes": 259776, - "points_memory_in_bytes": 159599760, - "stored_fields_memory_in_bytes": 460787928, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 975611344, - "version_map_memory_in_bytes": 1568987 - }, - "store": { - "size_in_bytes": 1192680542805 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8528, - "collection_time_in_millis": 1245439 - }, - "young": { - "collection_count": 4123754, - "collection_time_in_millis": 316010719 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 20353675464, - "heap_used_percent": 63 - } - }, - "mlockall": true, - "node_id": "4zqr4ku4RrSZJtrZSN5Mlg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 27230762064381090 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61042212864" - } - }, - "cpu": { - "load_average": { - "15m": 11.81, - "1m": 8.98, - "5m": 11.58 - } - } - }, - "process": { - "cpu": { - "percent": 68 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3266 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 50 - }, - "write": { - "queue": 0, - "rejected": 187249, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:13.009Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "timestamp": "2019-10-03T19:41:13.009Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "CrUjk20Bd_aHqZFw_0-l", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 199185903, - "read_kilobytes": 30278726620, - "read_operations": 73204739, - "write_kilobytes": 35078508332, - "write_operations": 125981164 - } - }, - "total": { - "available_in_bytes": 1523450572800, - "free_in_bytes": 1811558412288, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5461213352 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 707, - "hit_count": 7923, - "memory_size_in_bytes": 232220054, - "miss_count": 80041 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2518, - "memory_size_in_bytes": 13178416, - "miss_count": 7697 - }, - "search": { - "query_time_in_millis": 164470331, - "query_total": 130707 - }, - "segments": { - "count": 266, - "doc_values_memory_in_bytes": 10849258, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4207504584, - "norms_memory_in_bytes": 91008, - "points_memory_in_bytes": 476897548, - "stored_fields_memory_in_bytes": 1484482736, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2235184034, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3816095129824 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1785 - }, - "young": { - "collection_count": 260933, - "collection_time_in_millis": 7803844 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 23095774536, - "heap_used_percent": 71 - } - }, - "mlockall": true, - "node_id": "8FwJYnAMT0afpHOfKlA0Sg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2395050477943255 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60741505024" - } - }, - "cpu": { - "load_average": { - "15m": 0.55, - "1m": 0.66, - "5m": 0.66 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2503 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 31 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.931Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "timestamp": "2019-10-03T19:41:12.931Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "BLUjk20Bd_aHqZFw_k-6", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5202321909, - "read_kilobytes": 38052002688, - "read_operations": 3100188994, - "write_kilobytes": 165293041028, - "write_operations": 2102132915 - } - }, - "total": { - "available_in_bytes": 569599381504, - "free_in_bytes": 665635328000, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1633266845 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2912 - }, - "indexing": { - "index_time_in_millis": 30352987585, - "index_total": 27840542792, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 25707, - "hit_count": 1345261, - "memory_size_in_bytes": 498183538, - "miss_count": 1309160 - }, - "request_cache": { - "evictions": 0, - "hit_count": 12202, - "memory_size_in_bytes": 18249, - "miss_count": 440 - }, - "search": { - "query_time_in_millis": 414591336, - "query_total": 11299579 - }, - "segments": { - "count": 965, - "doc_values_memory_in_bytes": 14760656, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 836299818, - "memory_in_bytes": 1606659039, - "norms_memory_in_bytes": 277376, - "points_memory_in_bytes": 159651159, - "stored_fields_memory_in_bytes": 459479424, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 972490424, - "version_map_memory_in_bytes": 1923710 - }, - "store": { - "size_in_bytes": 1219344684401 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8227, - "collection_time_in_millis": 1478412 - }, - "young": { - "collection_count": 3549589, - "collection_time_in_millis": 349718394 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 12326057672, - "heap_used_percent": 38 - } - }, - "mlockall": true, - "node_id": "98npGP6HRPu5OOG4hRYbiA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 30323654400326070 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61044994048" - } - }, - "cpu": { - "load_average": { - "15m": 13.92, - "1m": 13.99, - "5m": 14.66 - } - } - }, - "process": { - "cpu": { - "percent": 67 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3318 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 59, - "rejected": 384958, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.671Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "timestamp": "2019-10-03T19:41:12.672Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "BbUjk20Bd_aHqZFw_k_2", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5059570129, - "read_kilobytes": 35597938972, - "read_operations": 2988324757, - "write_kilobytes": 162476332624, - "write_operations": 2071245372 - } - }, - "total": { - "available_in_bytes": 568909393920, - "free_in_bytes": 664945340416, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1633056571 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 123000 - }, - "indexing": { - "index_time_in_millis": 29608166911, - "index_total": 27225674220, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 25538, - "hit_count": 1792105, - "memory_size_in_bytes": 504542679, - "miss_count": 1280240 - }, - "request_cache": { - "evictions": 0, - "hit_count": 173007, - "memory_size_in_bytes": 3978200, - "miss_count": 10229 - }, - "search": { - "query_time_in_millis": 364715437, - "query_total": 7471608 - }, - "segments": { - "count": 999, - "doc_values_memory_in_bytes": 14797100, - "fixed_bit_set_memory_in_bytes": 39288, - "index_writer_memory_in_bytes": 425719142, - "memory_in_bytes": 1605820040, - "norms_memory_in_bytes": 289408, - "points_memory_in_bytes": 159597344, - "stored_fields_memory_in_bytes": 459165696, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 971970492, - "version_map_memory_in_bytes": 1947200 - }, - "store": { - "size_in_bytes": 1219680157546 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8156, - "collection_time_in_millis": 1412032 - }, - "young": { - "collection_count": 3551395, - "collection_time_in_millis": 369967834 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 15572952112, - "heap_used_percent": 48 - } - }, - "mlockall": true, - "node_id": "4EgMjLR8S0G9aJs7AB-Z0g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 28521568211541876 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61020397568" - } - }, - "cpu": { - "load_average": { - "15m": 13.74, - "1m": 12.46, - "5m": 13.53 - } - } - }, - "process": { - "cpu": { - "percent": 69 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3396 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 16 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 89, - "rejected": 2272214, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.662Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "timestamp": "2019-10-03T19:41:12.662Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "A7Ujk20Bd_aHqZFw_k-P", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 211989927, - "read_kilobytes": 29784129656, - "read_operations": 71056363, - "write_kilobytes": 41750998316, - "write_operations": 140933564 - } - }, - "total": { - "available_in_bytes": 1534230364160, - "free_in_bytes": 1822338203648, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5454783141 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 26656600 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1107, - "hit_count": 11303, - "memory_size_in_bytes": 152401665, - "miss_count": 63759 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5076, - "memory_size_in_bytes": 8641948, - "miss_count": 5723 - }, - "search": { - "query_time_in_millis": 171213448, - "query_total": 140815 - }, - "segments": { - "count": 252, - "doc_values_memory_in_bytes": 10627662, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4203262760, - "norms_memory_in_bytes": 87680, - "points_memory_in_bytes": 476326280, - "stored_fields_memory_in_bytes": 1482170448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2234050690, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3809895954623 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 17, - "collection_time_in_millis": 10146 - }, - "young": { - "collection_count": 280973, - "collection_time_in_millis": 10119815 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 20324661560, - "heap_used_percent": 63 - } - }, - "mlockall": true, - "node_id": "IfVshWgoTqWkfmehFnarzQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2896132614261106 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60675428352" - } - }, - "cpu": { - "load_average": { - "15m": 0.68, - "1m": 0.57, - "5m": 0.71 - } - } - }, - "process": { - "cpu": { - "percent": 10 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2518 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 49 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.649Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "timestamp": "2019-10-03T19:41:12.649Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "_LUjk20Bd_aHqZFw_k44", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 190965161, - "read_kilobytes": 29135040412, - "read_operations": 69051078, - "write_kilobytes": 33108297068, - "write_operations": 121914083 - } - }, - "total": { - "available_in_bytes": 1564675567616, - "free_in_bytes": 1852783407104, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5409466724 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25740096 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1309, - "hit_count": 15181, - "memory_size_in_bytes": 327575645, - "miss_count": 92281 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1763, - "memory_size_in_bytes": 13783923, - "miss_count": 8618 - }, - "search": { - "query_time_in_millis": 160722164, - "query_total": 135223 - }, - "segments": { - "count": 251, - "doc_values_memory_in_bytes": 10460382, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4166460086, - "norms_memory_in_bytes": 83712, - "points_memory_in_bytes": 472525124, - "stored_fields_memory_in_bytes": 1470137864, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2213253004, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3773092310997 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11057 - }, - "young": { - "collection_count": 244717, - "collection_time_in_millis": 7513623 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 10121578056, - "heap_used_percent": 31 - } - }, - "mlockall": true, - "node_id": "BtNzO_LsQpqkgRgGHAhQxg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2251352835839377 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60357500928" - } - }, - "cpu": { - "load_average": { - "15m": 0.63, - "1m": 0.98, - "5m": 0.8 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2512 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.562Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "timestamp": "2019-10-03T19:41:12.563Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "9bUjk20Bd_aHqZFw_k4A", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198975628, - "read_kilobytes": 30555323428, - "read_operations": 73757475, - "write_kilobytes": 34932177932, - "write_operations": 125218153 - } - }, - "total": { - "available_in_bytes": 1545301749760, - "free_in_bytes": 1833409589248, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5426957562 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 731, - "hit_count": 6908, - "memory_size_in_bytes": 237575336, - "miss_count": 49624 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4535, - "memory_size_in_bytes": 10675212, - "miss_count": 6575 - }, - "search": { - "query_time_in_millis": 160844479, - "query_total": 136041 - }, - "segments": { - "count": 281, - "doc_values_memory_in_bytes": 10988294, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4195717568, - "norms_memory_in_bytes": 96768, - "points_memory_in_bytes": 474955784, - "stored_fields_memory_in_bytes": 1475305768, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2234370954, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3795433546683 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1624 - }, - "young": { - "collection_count": 256069, - "collection_time_in_millis": 7639784 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 21301098632, - "heap_used_percent": 66 - } - }, - "mlockall": true, - "node_id": "Zy_SYWxzSxy4lYkPVjcOlA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2336215125539076 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60668043264" - } - }, - "cpu": { - "load_average": { - "15m": 0.56, - "1m": 0.61, - "5m": 0.67 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2552 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.504Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "timestamp": "2019-10-03T19:41:12.505Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "8rUjk20Bd_aHqZFw_U7p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 191907651, - "read_kilobytes": 29611352800, - "read_operations": 70295204, - "write_kilobytes": 33176190180, - "write_operations": 121612447 - } - }, - "total": { - "available_in_bytes": 1535356059648, - "free_in_bytes": 1823463899136, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5449806414 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 660, - "hit_count": 7150, - "memory_size_in_bytes": 293995495, - "miss_count": 56361 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2436, - "memory_size_in_bytes": 12990998, - "miss_count": 7671 - }, - "search": { - "query_time_in_millis": 166859982, - "query_total": 135577 - }, - "segments": { - "count": 251, - "doc_values_memory_in_bytes": 10592726, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4198925518, - "norms_memory_in_bytes": 83776, - "points_memory_in_bytes": 475960716, - "stored_fields_memory_in_bytes": 1481881784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2230406516, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3802081453432 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10140 - }, - "young": { - "collection_count": 246184, - "collection_time_in_millis": 7726997 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 11150894680, - "heap_used_percent": 34 - } - }, - "mlockall": true, - "node_id": "i8xzV9jfRDmiKDVOkpiH1w", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2264297556134148 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60675682304" - } - }, - "cpu": { - "load_average": { - "15m": 0.63, - "1m": 0.96, - "5m": 0.76 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2513 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 35 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.484Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "timestamp": "2019-10-03T19:41:12.485Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "77Ujk20Bd_aHqZFw_U7Z", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 201945071, - "read_kilobytes": 31364073056, - "read_operations": 74033133, - "write_kilobytes": 35482489652, - "write_operations": 127911938 - } - }, - "total": { - "available_in_bytes": 1525833883648, - "free_in_bytes": 1813941723136, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5457596989 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25665416 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1203, - "hit_count": 12633, - "memory_size_in_bytes": 224985724, - "miss_count": 71233 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2319, - "memory_size_in_bytes": 11880616, - "miss_count": 7076 - }, - "search": { - "query_time_in_millis": 168082774, - "query_total": 140343 - }, - "segments": { - "count": 250, - "doc_values_memory_in_bytes": 10482184, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4203765969, - "norms_memory_in_bytes": 81024, - "points_memory_in_bytes": 476489819, - "stored_fields_memory_in_bytes": 1483622080, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233090862, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3813610568200 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 2273 - }, - "young": { - "collection_count": 265531, - "collection_time_in_millis": 7890144 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 22806466512, - "heap_used_percent": 70 - } - }, - "mlockall": true, - "node_id": "AgMbpH0STqKRLxslxMXtIw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2394833901363695 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60824522752" - } - }, - "cpu": { - "load_average": { - "15m": 0.72, - "1m": 0.66, - "5m": 0.68 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2520 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 33 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.469Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "timestamp": "2019-10-03T19:41:12.469Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "3bUjk20Bd_aHqZFw_E7X", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5015327422, - "read_kilobytes": 33962770172, - "read_operations": 2898321687, - "write_kilobytes": 159705467988, - "write_operations": 2117005735 - } - }, - "total": { - "available_in_bytes": 599410245632, - "free_in_bytes": 695446192128, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1636301034 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 24129490877, - "index_total": 27328471328, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 32172, - "hit_count": 2889449, - "memory_size_in_bytes": 503118280, - "miss_count": 1329235 - }, - "request_cache": { - "evictions": 0, - "hit_count": 472440, - "memory_size_in_bytes": 16590, - "miss_count": 29366 - }, - "search": { - "query_time_in_millis": 349027857, - "query_total": 3414080 - }, - "segments": { - "count": 951, - "doc_values_memory_in_bytes": 14968104, - "fixed_bit_set_memory_in_bytes": 37632, - "index_writer_memory_in_bytes": 280252818, - "memory_in_bytes": 1615607603, - "norms_memory_in_bytes": 270400, - "points_memory_in_bytes": 159666214, - "stored_fields_memory_in_bytes": 461256584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 979446301, - "version_map_memory_in_bytes": 1453745 - }, - "store": { - "size_in_bytes": 1190399856142 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7711, - "collection_time_in_millis": 1194444 - }, - "young": { - "collection_count": 3937920, - "collection_time_in_millis": 309792839 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 10014987416, - "heap_used_percent": 31 - } - }, - "mlockall": true, - "node_id": "QDlGTG9SRiatpVkMC42xGA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 25994257230872520 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60728672256" - } - }, - "cpu": { - "load_average": { - "15m": 12.07, - "1m": 11.11, - "5m": 11.81 - } - } - }, - "process": { - "cpu": { - "percent": 64 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3329 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 142815, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.201Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "timestamp": "2019-10-03T19:41:12.201Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "3LUjk20Bd_aHqZFw_E67", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 197080058, - "read_kilobytes": 29758228860, - "read_operations": 70233236, - "write_kilobytes": 35439423384, - "write_operations": 126846822 - } - }, - "total": { - "available_in_bytes": 1531368558592, - "free_in_bytes": 1819476398080, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5447391215 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 594, - "hit_count": 5953, - "memory_size_in_bytes": 210595766, - "miss_count": 43750 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3333, - "memory_size_in_bytes": 10263730, - "miss_count": 6261 - }, - "search": { - "query_time_in_millis": 160988575, - "query_total": 135865 - }, - "segments": { - "count": 280, - "doc_values_memory_in_bytes": 10848800, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4211867894, - "norms_memory_in_bytes": 93376, - "points_memory_in_bytes": 476404250, - "stored_fields_memory_in_bytes": 1480671904, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2243849564, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3808193040476 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1809 - }, - "young": { - "collection_count": 257353, - "collection_time_in_millis": 7655234 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 21122950672, - "heap_used_percent": 65 - } - }, - "mlockall": true, - "node_id": "8c-ntk3fQ4yuDO4SolrmgQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2370880985161890 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60714061824" - } - }, - "cpu": { - "load_average": { - "15m": 0.56, - "1m": 0.84, - "5m": 0.68 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2562 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.173Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "timestamp": "2019-10-03T19:41:12.174Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "2bUjk20Bd_aHqZFw_E6n", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 202417301, - "read_kilobytes": 31819090468, - "read_operations": 75251789, - "write_kilobytes": 35176868736, - "write_operations": 127165512 - } - }, - "total": { - "available_in_bytes": 1554455089152, - "free_in_bytes": 1842562928640, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5417630601 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 15034648 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1025, - "hit_count": 10975, - "memory_size_in_bytes": 223398803, - "miss_count": 58458 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2600, - "memory_size_in_bytes": 12644978, - "miss_count": 7596 - }, - "search": { - "query_time_in_millis": 162020812, - "query_total": 135414 - }, - "segments": { - "count": 275, - "doc_values_memory_in_bytes": 11054456, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4188407930, - "norms_memory_in_bytes": 95808, - "points_memory_in_bytes": 473884795, - "stored_fields_memory_in_bytes": 1473148296, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2230224575, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3785008447314 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1734 - }, - "young": { - "collection_count": 257504, - "collection_time_in_millis": 7613475 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 23123806464, - "heap_used_percent": 71 - } - }, - "mlockall": true, - "node_id": "2B-6sKqQR8y9L52cChtT-A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2387624077923592 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60667850752" - } - }, - "cpu": { - "load_average": { - "15m": 0.62, - "1m": 0.55, - "5m": 0.66 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2550 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 39 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.151Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "timestamp": "2019-10-03T19:41:12.151Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "1rUjk20Bd_aHqZFw_E6a", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198874940, - "read_kilobytes": 31006950548, - "read_operations": 75577005, - "write_kilobytes": 33663611948, - "write_operations": 123297935 - } - }, - "total": { - "available_in_bytes": 1513794871296, - "free_in_bytes": 1801902710784, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5462871310 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 819, - "hit_count": 7510, - "memory_size_in_bytes": 232707420, - "miss_count": 53105 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1403, - "memory_size_in_bytes": 9020186, - "miss_count": 6350 - }, - "search": { - "query_time_in_millis": 160489489, - "query_total": 133079 - }, - "segments": { - "count": 283, - "doc_values_memory_in_bytes": 10937166, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4222594687, - "norms_memory_in_bytes": 84864, - "points_memory_in_bytes": 477607711, - "stored_fields_memory_in_bytes": 1484971520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2248993426, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3824758821481 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1604 - }, - "young": { - "collection_count": 252436, - "collection_time_in_millis": 7558555 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 14170228360, - "heap_used_percent": 44 - } - }, - "mlockall": true, - "node_id": "F3SDHWgTTSSCRpFLRuTd7A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2299126950257791 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60093640704" - } - }, - "cpu": { - "load_average": { - "15m": 0.58, - "1m": 0.72, - "5m": 0.67 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2548 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.147Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "timestamp": "2019-10-03T19:41:12.147Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "1LUjk20Bd_aHqZFw_E6G", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 191084679, - "read_kilobytes": 29713017856, - "read_operations": 71234089, - "write_kilobytes": 32015825092, - "write_operations": 119850590 - } - }, - "total": { - "available_in_bytes": 1521778831360, - "free_in_bytes": 1809886670848, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5455485095 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 28392424 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1977, - "hit_count": 19042, - "memory_size_in_bytes": 390789754, - "miss_count": 114242 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3921, - "memory_size_in_bytes": 19979736, - "miss_count": 11401 - }, - "search": { - "query_time_in_millis": 162779169, - "query_total": 136233 - }, - "segments": { - "count": 310, - "doc_values_memory_in_bytes": 11415920, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4233869635, - "norms_memory_in_bytes": 102336, - "points_memory_in_bytes": 477750892, - "stored_fields_memory_in_bytes": 1483625016, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2260975471, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3816654132427 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10048 - }, - "young": { - "collection_count": 240976, - "collection_time_in_millis": 7492100 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 7651657336, - "heap_used_percent": 23 - } - }, - "mlockall": true, - "node_id": "IbXa_L0vS0mePhKF9Uu-IA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2251380470153090 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60631281664" - } - }, - "cpu": { - "load_average": { - "15m": 0.58, - "1m": 0.74, - "5m": 0.64 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2583 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 47 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:12.126Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "timestamp": "2019-10-03T19:41:12.126Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "yrUjk20Bd_aHqZFw-06i", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 196195090, - "read_kilobytes": 30031324472, - "read_operations": 70490922, - "write_kilobytes": 34786468376, - "write_operations": 125704168 - } - }, - "total": { - "available_in_bytes": 1522970877952, - "free_in_bytes": 1811078717440, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5453465104 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 680, - "hit_count": 7120, - "memory_size_in_bytes": 247592140, - "miss_count": 60701 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3093, - "memory_size_in_bytes": 11159601, - "miss_count": 7079 - }, - "search": { - "query_time_in_millis": 158938713, - "query_total": 132757 - }, - "segments": { - "count": 271, - "doc_values_memory_in_bytes": 11061078, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4211962962, - "norms_memory_in_bytes": 97280, - "points_memory_in_bytes": 477095127, - "stored_fields_memory_in_bytes": 1482145168, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2241564309, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3818106530621 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1746 - }, - "young": { - "collection_count": 254453, - "collection_time_in_millis": 7673762 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 23039684200, - "heap_used_percent": 71 - } - }, - "mlockall": true, - "node_id": "sZG2ItuSQHOOhGuVlbbgGQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2337196219265381 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60755156992" - } - }, - "cpu": { - "load_average": { - "15m": 0.54, - "1m": 0.77, - "5m": 0.64 - } - } - }, - "process": { - "cpu": { - "percent": 5 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2554 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 34 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:11.898Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "timestamp": "2019-10-03T19:41:11.898Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ubUjk20Bd_aHqZFw-k4l", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198506253, - "read_kilobytes": 30557435852, - "read_operations": 73846324, - "write_kilobytes": 33953389916, - "write_operations": 124659929 - } - }, - "total": { - "available_in_bytes": 1518496034816, - "free_in_bytes": 1806603874304, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5461370083 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 968, - "hit_count": 9643, - "memory_size_in_bytes": 223183700, - "miss_count": 55959 - }, - "request_cache": { - "evictions": 0, - "hit_count": 6243, - "memory_size_in_bytes": 14781646, - "miss_count": 8783 - }, - "search": { - "query_time_in_millis": 161425839, - "query_total": 139919 - }, - "segments": { - "count": 252, - "doc_values_memory_in_bytes": 10672322, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4207899042, - "norms_memory_in_bytes": 88704, - "points_memory_in_bytes": 476879579, - "stored_fields_memory_in_bytes": 1484604552, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2235653885, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3821070517062 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11410 - }, - "young": { - "collection_count": 250725, - "collection_time_in_millis": 7689556 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 9106255344, - "heap_used_percent": 28 - } - }, - "mlockall": true, - "node_id": "JCvzxsoFQ5KMUCNycmdzig", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2316523496958216 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60711665664" - } - }, - "cpu": { - "load_average": { - "15m": 0.59, - "1m": 0.5, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2512 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 38 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:11.502Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "timestamp": "2019-10-03T19:41:11.502Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "FbUjk20Bd_aHqZFw-U7J", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5129534525, - "read_kilobytes": 35191186136, - "read_operations": 2905804048, - "write_kilobytes": 162615013860, - "write_operations": 2223730477 - } - }, - "total": { - "available_in_bytes": 600543141888, - "free_in_bytes": 696578859008, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1635906696 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1600 - }, - "indexing": { - "index_time_in_millis": 23495928168, - "index_total": 27749077646, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 23738, - "hit_count": 1284191, - "memory_size_in_bytes": 504874639, - "miss_count": 1267914 - }, - "request_cache": { - "evictions": 0, - "hit_count": 185580, - "memory_size_in_bytes": 14705, - "miss_count": 2914 - }, - "search": { - "query_time_in_millis": 334108188, - "query_total": 5199229 - }, - "segments": { - "count": 971, - "doc_values_memory_in_bytes": 14645368, - "fixed_bit_set_memory_in_bytes": 4528, - "index_writer_memory_in_bytes": 284244404, - "memory_in_bytes": 1613519348, - "norms_memory_in_bytes": 299712, - "points_memory_in_bytes": 159613875, - "stored_fields_memory_in_bytes": 461612632, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 977347761, - "version_map_memory_in_bytes": 1156882 - }, - "store": { - "size_in_bytes": 1190500759956 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7685, - "collection_time_in_millis": 1101133 - }, - "young": { - "collection_count": 4051758, - "collection_time_in_millis": 297929517 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 18947521952, - "heap_used_percent": 58 - } - }, - "mlockall": true, - "node_id": "qdDv_MrWRPqL-9t_fjSk1A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 25663127183932036 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "59158540288" - } - }, - "cpu": { - "load_average": { - "15m": 11.04, - "1m": 10.78, - "5m": 11.2 - } - } - }, - "process": { - "cpu": { - "percent": 66 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3269 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 28 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 50 - }, - "write": { - "queue": 4, - "rejected": 131702, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:11.371Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "timestamp": "2019-10-03T19:41:11.387Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "nrUjk20Bd_aHqZFw-E33", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 191228663, - "read_kilobytes": 29633657300, - "read_operations": 70699017, - "write_kilobytes": 32330822296, - "write_operations": 120529646 - } - }, - "total": { - "available_in_bytes": 1524414738432, - "free_in_bytes": 1812522577920, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5456282187 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 46881672 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 3379, - "hit_count": 31965, - "memory_size_in_bytes": 561448165, - "miss_count": 223011 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7155, - "memory_size_in_bytes": 27967397, - "miss_count": 14805 - }, - "search": { - "query_time_in_millis": 172545713, - "query_total": 139698 - }, - "segments": { - "count": 279, - "doc_values_memory_in_bytes": 10957196, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4216888851, - "norms_memory_in_bytes": 92544, - "points_memory_in_bytes": 477227129, - "stored_fields_memory_in_bytes": 1483683304, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2244928678, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3812309138526 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10495 - }, - "young": { - "collection_count": 248644, - "collection_time_in_millis": 7726011 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 19157562216, - "heap_used_percent": 59 - } - }, - "mlockall": true, - "node_id": "tdFhsZDUS3OMXKKSgB31iA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2261138982643581 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60678574080" - } - }, - "cpu": { - "load_average": { - "15m": 0.58, - "1m": 0.52, - "5m": 0.66 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2527 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:11.208Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "timestamp": "2019-10-03T19:41:11.208Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "lbUjk20Bd_aHqZFw903K", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200007645, - "read_kilobytes": 31178716036, - "read_operations": 74079170, - "write_kilobytes": 34644276124, - "write_operations": 125928475 - } - }, - "total": { - "available_in_bytes": 1554554789888, - "free_in_bytes": 1842662629376, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5443966955 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 219, - "hit_count": 2238, - "memory_size_in_bytes": 101908102, - "miss_count": 20222 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1053, - "memory_size_in_bytes": 3206879, - "miss_count": 2972 - }, - "search": { - "query_time_in_millis": 162475128, - "query_total": 135796 - }, - "segments": { - "count": 286, - "doc_values_memory_in_bytes": 11268336, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4209132126, - "norms_memory_in_bytes": 100416, - "points_memory_in_bytes": 476291160, - "stored_fields_memory_in_bytes": 1479668520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2241803694, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3804536410271 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10133 - }, - "young": { - "collection_count": 254546, - "collection_time_in_millis": 7851018 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 16487366696, - "heap_used_percent": 51 - } - }, - "mlockall": true, - "node_id": "z29jmIBjT0atD5RMcz07Bw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2330281871116282 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60689686528" - } - }, - "cpu": { - "load_average": { - "15m": 0.3, - "1m": 0.2, - "5m": 0.32 - } - } - }, - "process": { - "cpu": { - "percent": 5 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2562 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 32 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:10.905Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "timestamp": "2019-10-03T19:41:10.905Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "kLUjk20Bd_aHqZFw9k3D", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 203109362, - "read_kilobytes": 31413971592, - "read_operations": 75904561, - "write_kilobytes": 35377315856, - "write_operations": 127204801 - } - }, - "total": { - "available_in_bytes": 1537263710208, - "free_in_bytes": 1825371549696, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5439117459 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 400, - "hit_count": 3968, - "memory_size_in_bytes": 110789194, - "miss_count": 25827 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1364, - "memory_size_in_bytes": 6779835, - "miss_count": 4824 - }, - "search": { - "query_time_in_millis": 170385949, - "query_total": 136743 - }, - "segments": { - "count": 293, - "doc_values_memory_in_bytes": 11053650, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4206804117, - "norms_memory_in_bytes": 92416, - "points_memory_in_bytes": 476104865, - "stored_fields_memory_in_bytes": 1479581664, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2239971522, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3802216804838 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11551 - }, - "young": { - "collection_count": 260983, - "collection_time_in_millis": 7970818 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 21643170280, - "heap_used_percent": 67 - } - }, - "mlockall": true, - "node_id": "l01mdpHKTIycD8YpHgstOQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2366315943043574 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60690976768" - } - }, - "cpu": { - "load_average": { - "15m": 0.51, - "1m": 0.4, - "5m": 0.56 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2569 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:10.644Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "timestamp": "2019-10-03T19:41:10.644Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "j7Ujk20Bd_aHqZFw9k2k", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200932015, - "read_kilobytes": 30212741692, - "read_operations": 71546654, - "write_kilobytes": 36435378040, - "write_operations": 129385361 - } - }, - "total": { - "available_in_bytes": 1522022866944, - "free_in_bytes": 1810130706432, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5451894500 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25413272 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1041, - "hit_count": 10789, - "memory_size_in_bytes": 149272980, - "miss_count": 82030 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1722, - "memory_size_in_bytes": 9146932, - "miss_count": 6001 - }, - "search": { - "query_time_in_millis": 171232470, - "query_total": 136242 - }, - "segments": { - "count": 345, - "doc_values_memory_in_bytes": 11984982, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4248441313, - "norms_memory_in_bytes": 110656, - "points_memory_in_bytes": 478529673, - "stored_fields_memory_in_bytes": 1483028088, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2274787914, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3818071996700 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 9601 - }, - "young": { - "collection_count": 261033, - "collection_time_in_millis": 7905205 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 15941364880, - "heap_used_percent": 49 - } - }, - "mlockall": true, - "node_id": "VXzx30rRR1GjnRBYLIi5gQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2375491142852947 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60684722176" - } - }, - "cpu": { - "load_average": { - "15m": 0.64, - "1m": 0.45, - "5m": 0.68 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2651 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 40 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:10.570Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "timestamp": "2019-10-03T19:41:10.570Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "p7Ujk20Bd_aHqZFw9Ey5", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 202828554, - "read_kilobytes": 31812121620, - "read_operations": 75710421, - "write_kilobytes": 35642089588, - "write_operations": 127118133 - } - }, - "total": { - "available_in_bytes": 1553051389952, - "free_in_bytes": 1841159229440, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5414849734 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 14818968 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1101, - "hit_count": 10213, - "memory_size_in_bytes": 181936378, - "miss_count": 82012 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3457, - "memory_size_in_bytes": 10289919, - "miss_count": 6795 - }, - "search": { - "query_time_in_millis": 164715836, - "query_total": 130991 - }, - "segments": { - "count": 283, - "doc_values_memory_in_bytes": 10819906, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4189955692, - "norms_memory_in_bytes": 90880, - "points_memory_in_bytes": 474031932, - "stored_fields_memory_in_bytes": 1471852360, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233160614, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3783687616628 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 1770 - }, - "young": { - "collection_count": 256429, - "collection_time_in_millis": 7853175 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 7969668264, - "heap_used_percent": 24 - } - }, - "mlockall": true, - "node_id": "KmYYNfYtTlKatZljOJheqQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2442257294934448 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60668686336" - } - }, - "cpu": { - "load_average": { - "15m": 0.59, - "1m": 0.56, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2559 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 48 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:10.116Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "timestamp": "2019-10-03T19:41:10.117Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "-bUjk20Bd_aHqZFw80tb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5020352299, - "read_kilobytes": 34600210212, - "read_operations": 2888909629, - "write_kilobytes": 158998113204, - "write_operations": 2131442670 - } - }, - "total": { - "available_in_bytes": 601787740160, - "free_in_bytes": 697823686656, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1630909180 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 23165653195, - "index_total": 27200127797, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 39630, - "hit_count": 4538044, - "memory_size_in_bytes": 530369008, - "miss_count": 1474271 - }, - "request_cache": { - "evictions": 0, - "hit_count": 972260, - "memory_size_in_bytes": 14403, - "miss_count": 57975 - }, - "search": { - "query_time_in_millis": 347318044, - "query_total": 3391490 - }, - "segments": { - "count": 984, - "doc_values_memory_in_bytes": 14841944, - "fixed_bit_set_memory_in_bytes": 37432, - "index_writer_memory_in_bytes": 350659886, - "memory_in_bytes": 1615543811, - "norms_memory_in_bytes": 269376, - "points_memory_in_bytes": 159154369, - "stored_fields_memory_in_bytes": 461047824, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 980230298, - "version_map_memory_in_bytes": 1527390 - }, - "store": { - "size_in_bytes": 1187317760772 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7608, - "collection_time_in_millis": 1162105 - }, - "young": { - "collection_count": 3972387, - "collection_time_in_millis": 305062723 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 17961674808, - "heap_used_percent": 55 - } - }, - "mlockall": true, - "node_id": "LtCntqP6QjSpGIWEDnBaGQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 25431660844407330 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60987486208" - } - }, - "cpu": { - "load_average": { - "15m": 12.07, - "1m": 11.93, - "5m": 11.63 - } - } - }, - "process": { - "cpu": { - "percent": 74 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3342 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 475, - "rejected": 92585, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:09.750Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "timestamp": "2019-10-03T19:41:09.750Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "67Ujk20Bd_aHqZFw8Uun", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198379573, - "read_kilobytes": 30408217308, - "read_operations": 74679835, - "write_kilobytes": 33678019536, - "write_operations": 123699738 - } - }, - "total": { - "available_in_bytes": 1541744402432, - "free_in_bytes": 1829852241920, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5458068049 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 14481048 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1279, - "hit_count": 12518, - "memory_size_in_bytes": 343651930, - "miss_count": 105259 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1960, - "memory_size_in_bytes": 12812939, - "miss_count": 8055 - }, - "search": { - "query_time_in_millis": 165351310, - "query_total": 136570 - }, - "segments": { - "count": 287, - "doc_values_memory_in_bytes": 11103124, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4219378997, - "norms_memory_in_bytes": 94592, - "points_memory_in_bytes": 477392206, - "stored_fields_memory_in_bytes": 1484006672, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2246782403, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3816272121768 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11112 - }, - "young": { - "collection_count": 251097, - "collection_time_in_millis": 7812687 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 11474766496, - "heap_used_percent": 35 - } - }, - "mlockall": true, - "node_id": "T5YTkUVTQIeK_uxA2QHQ9A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2324376120507907 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60654411776" - } - }, - "cpu": { - "load_average": { - "15m": 0.31, - "1m": 0.2, - "5m": 0.31 - } - } - }, - "process": { - "cpu": { - "percent": 6 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2538 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:09.331Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "timestamp": "2019-10-03T19:41:09.332Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "A7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1527108364409, - "index": ".triggered_watches", - "primaries": { - "docs": { - "count": 254 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 182096, - "index_total": 422438, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 267281 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 152 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1461, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 3 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 2184, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 400352293, - "memory_in_bytes": 3952, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 2, - "stored_fields_memory_in_bytes": 592, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1174, - "version_map_memory_in_bytes": 94430119 - }, - "store": { - "size_in_bytes": 24048648 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 508 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 353056, - "index_total": 827087, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 267281 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 290 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3, - "memory_size_in_bytes": 2922, - "miss_count": 4 - }, - "search": { - "query_time_in_millis": 4, - "query_total": 7 - }, - "segments": { - "count": 3, - "doc_values_memory_in_bytes": 4300, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 801263430, - "memory_in_bytes": 6952, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 3, - "stored_fields_memory_in_bytes": 888, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1761, - "version_map_memory_in_bytes": 188860238 - }, - "store": { - "size_in_bytes": 48073432 - } - }, - "uuid": "i4wKqjsfS9uBWLqw6rA-gg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "BLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569542418893, - "index": ".watcher-history-9-2019.09.27", - "primaries": { - "docs": { - "count": 9594 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 61282, - "index_total": 9594, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1470666856 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 333984 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 2 - }, - "segments": { - "count": 9, - "doc_values_memory_in_bytes": 2660, - "fixed_bit_set_memory_in_bytes": 1624, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 142899, - "norms_memory_in_bytes": 11200, - "points_memory_in_bytes": 484, - "stored_fields_memory_in_bytes": 10336, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 118219, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 11513781 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 19188 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 61282, - "index_total": 9594, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1470666856 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 333990 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 2 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 5320, - "fixed_bit_set_memory_in_bytes": 3248, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 285798, - "norms_memory_in_bytes": 22400, - "points_memory_in_bytes": 968, - "stored_fields_memory_in_bytes": 20672, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 236438, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 23027562 - } - }, - "uuid": "fvrbjr9qRR-vyMW0fPu7sQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "BbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569628808498, - "index": ".watcher-history-9-2019.09.28", - "primaries": { - "docs": { - "count": 9586 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 39851, - "index_total": 9586, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 991079422 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 205849 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 2 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 1536, - "fixed_bit_set_memory_in_bytes": 1288, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 43111, - "norms_memory_in_bytes": 2624, - "points_memory_in_bytes": 392, - "stored_fields_memory_in_bytes": 8416, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 30143, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 11439044 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 19172 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 77745, - "index_total": 19172, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1978960706 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 402537 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 1, - "query_total": 11 - }, - "segments": { - "count": 10, - "doc_values_memory_in_bytes": 4248, - "fixed_bit_set_memory_in_bytes": 2864, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 163430, - "norms_memory_in_bytes": 11584, - "points_memory_in_bytes": 858, - "stored_fields_memory_in_bytes": 18616, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 128124, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 23011492 - } - }, - "uuid": "ZquSR-2ORj-RfT7VoLREHA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "BrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569791501896, - "index": "om-iu-bro-2019.09.29-000999", - "primaries": { - "docs": { - "count": 1333821474 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1808471445785 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 63208, - "miss_count": 520 - }, - "refresh": { - "total_time_in_millis": 890 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "search": { - "query_time_in_millis": 701890, - "query_total": 394 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1958488, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 990142678, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116343477, - "stored_fields_memory_in_bytes": 363563464, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 508268033, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 931838389563 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2667642948 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3616942891570 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 146201, - "miss_count": 1048 - }, - "refresh": { - "total_time_in_millis": 1758 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1455345, - "query_total": 797 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3916976, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1980285356, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 232686954, - "stored_fields_memory_in_bytes": 727126928, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1016536066, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1863676779126 - } - }, - "uuid": "7gRCyCW_QKyWdIUuCZK4oA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "B7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569714092320, - "index": "om-iu-bro-2019.09.28-000996", - "primaries": { - "docs": { - "count": 1317248829 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1808869550235 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 95457, - "miss_count": 589 - }, - "refresh": { - "total_time_in_millis": 538 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 398 - }, - "search": { - "query_time_in_millis": 874930, - "query_total": 452 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1948024, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 948524543, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114517526, - "stored_fields_memory_in_bytes": 354114416, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 477935361, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 892371640737 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2634497658 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3517370755867 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 143095, - "miss_count": 1139 - }, - "refresh": { - "total_time_in_millis": 1068 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 774 - }, - "search": { - "query_time_in_millis": 1550941, - "query_total": 882 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3896048, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1897049086, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229035052, - "stored_fields_memory_in_bytes": 708228832, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 955870722, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1784743281474 - } - }, - "uuid": "AXrhkQrMTlaubJwwS9u-yQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "CLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569742294132, - "index": "om-iu-bro-2019.09.29-000997", - "primaries": { - "docs": { - "count": 1303171448 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1404884056984 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 66786, - "miss_count": 574 - }, - "refresh": { - "total_time_in_millis": 607 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 394 - }, - "search": { - "query_time_in_millis": 763904, - "query_total": 448 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1894232, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 934246073, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 112961230, - "stored_fields_memory_in_bytes": 349905816, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 469475579, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 860955721653 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2606342896 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2809768113968 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 161091, - "miss_count": 1141 - }, - "refresh": { - "total_time_in_millis": 1161 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 774 - }, - "search": { - "query_time_in_millis": 1558320, - "query_total": 882 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3788464, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1868492146, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 225922460, - "stored_fields_memory_in_bytes": 699811632, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 938951158, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1721911443306 - } - }, - "uuid": "KWuDMa8bSVyR6MWg3E-oPQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "CbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569770497980, - "index": "om-iu-bro-2019.09.29-000998", - "primaries": { - "docs": { - "count": 1335617917 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1485051261280 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 68155, - "miss_count": 531 - }, - "refresh": { - "total_time_in_millis": 513 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 350 - }, - "search": { - "query_time_in_millis": 743252, - "query_total": 404 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1967464, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 986135418, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115784718, - "stored_fields_memory_in_bytes": 361755392, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 506618628, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 926442071477 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2671235834 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2970102522560 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 155909, - "miss_count": 1052 - }, - "refresh": { - "total_time_in_millis": 989 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1473562, - "query_total": 792 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3934928, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1972270836, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231569436, - "stored_fields_memory_in_bytes": 723510784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1013237256, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1852884142954 - } - }, - "uuid": "rSV3O5-XTtysK8uJaBCm6w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "CrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569605492739, - "index": "om-iu-bro-2019.09.27-000991", - "primaries": { - "docs": { - "count": 1335311470 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 529648, - "miss_count": 3431 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 396 - }, - "search": { - "query_time_in_millis": 958608, - "query_total": 480 - }, - "segments": { - "count": 675, - "doc_values_memory_in_bytes": 10519794, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1309581857, - "norms_memory_in_bytes": 180544, - "points_memory_in_bytes": 131684177, - "stored_fields_memory_in_bytes": 387850104, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 779347238, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1001639450614 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2670622940 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1045755, - "miss_count": 6701 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 774 - }, - "search": { - "query_time_in_millis": 1916993, - "query_total": 937 - }, - "segments": { - "count": 1350, - "doc_values_memory_in_bytes": 21039588, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2619163714, - "norms_memory_in_bytes": 361088, - "points_memory_in_bytes": 263368354, - "stored_fields_memory_in_bytes": 775700208, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1558694476, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2003278901228 - } - }, - "uuid": "kE4aahqrRPeNFoM-sy0k6A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "C7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569642694017, - "index": "om-iu-bro-2019.09.28-000993", - "primaries": { - "docs": { - "count": 1303843341 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 317719, - "miss_count": 2502 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 389 - }, - "search": { - "query_time_in_millis": 897055, - "query_total": 453 - }, - "segments": { - "count": 670, - "doc_values_memory_in_bytes": 11023642, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1265407476, - "norms_memory_in_bytes": 189248, - "points_memory_in_bytes": 133917045, - "stored_fields_memory_in_bytes": 367472112, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 752805429, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 926286663019 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2607686682 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 715435, - "miss_count": 5259 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 779 - }, - "search": { - "query_time_in_millis": 1754859, - "query_total": 917 - }, - "segments": { - "count": 1340, - "doc_values_memory_in_bytes": 22047284, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2530814952, - "norms_memory_in_bytes": 378496, - "points_memory_in_bytes": 267834090, - "stored_fields_memory_in_bytes": 734944224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1505610858, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1852573326038 - } - }, - "uuid": "y-MQgiZ1QR6T6UUHdhCDeA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "DLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569623495656, - "index": "om-iu-bro-2019.09.27-000992", - "primaries": { - "docs": { - "count": 1324245493 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 525602, - "miss_count": 3308 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 394 - }, - "search": { - "query_time_in_millis": 1008731, - "query_total": 473 - }, - "segments": { - "count": 634, - "doc_values_memory_in_bytes": 9446828, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1326607288, - "norms_memory_in_bytes": 168128, - "points_memory_in_bytes": 136198668, - "stored_fields_memory_in_bytes": 392706928, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 788086736, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 988865285812 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2648490986 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 981575, - "miss_count": 6531 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 780 - }, - "search": { - "query_time_in_millis": 1885069, - "query_total": 938 - }, - "segments": { - "count": 1268, - "doc_values_memory_in_bytes": 18893656, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2653214576, - "norms_memory_in_bytes": 336256, - "points_memory_in_bytes": 272397336, - "stored_fields_memory_in_bytes": 785413856, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1576173472, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1977730571624 - } - }, - "uuid": "fC0m_TLJS62eVsNAfQfHTQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "DbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569688896969, - "index": "om-iu-bro-2019.09.28-000995", - "primaries": { - "docs": { - "count": 1304980010 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1827030146166 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 57367, - "miss_count": 561 - }, - "refresh": { - "total_time_in_millis": 638 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 382 - }, - "search": { - "query_time_in_millis": 677506, - "query_total": 436 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1969704, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 956818879, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113712733, - "stored_fields_memory_in_bytes": 353510200, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 487617026, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 897091982417 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2609960020 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3654060292332 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 151177, - "miss_count": 1142 - }, - "refresh": { - "total_time_in_millis": 1190 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 774 - }, - "search": { - "query_time_in_millis": 1550261, - "query_total": 882 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3939408, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1913637758, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 227425466, - "stored_fields_memory_in_bytes": 707020400, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 975234052, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1794183964834 - } - }, - "uuid": "X8q3b1KHT_6IGXc9UUM7Jw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "DrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569661290938, - "index": "om-iu-bro-2019.09.28-000994", - "primaries": { - "docs": { - "count": 1328351070 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1494442175845 - }, - "query_cache": { - "evictions": 63, - "hit_count": 0, - "memory_size_in_bytes": 67958, - "miss_count": 1343 - }, - "refresh": { - "total_time_in_millis": 495 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 395 - }, - "search": { - "query_time_in_millis": 795535, - "query_total": 463 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1940384, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 971587111, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115060055, - "stored_fields_memory_in_bytes": 357209808, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 497367648, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 885275161343 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2656702140 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2989076027986 - }, - "query_cache": { - "evictions": 117, - "hit_count": 0, - "memory_size_in_bytes": 154153, - "miss_count": 2572 - }, - "refresh": { - "total_time_in_millis": 1169 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 786 - }, - "search": { - "query_time_in_millis": 1585247, - "query_total": 920 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3880768, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1943174222, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 230120110, - "stored_fields_memory_in_bytes": 714419616, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 994735296, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1770550322686 - } - }, - "uuid": "CqqF2EnjQ4ygVMZ83JpF_Q" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "D7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569715202669, - "index": ".watcher-history-9-2019.09.29", - "primaries": { - "docs": { - "count": 9588 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 43223, - "index_total": 9588, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1090094588 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 198976 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 2 - }, - "segments": { - "count": 9, - "doc_values_memory_in_bytes": 2748, - "fixed_bit_set_memory_in_bytes": 1616, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 134774, - "norms_memory_in_bytes": 10240, - "points_memory_in_bytes": 477, - "stored_fields_memory_in_bytes": 10496, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 110813, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 11564004 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 19176 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 82219, - "index_total": 19176, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2199143711 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 396590 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 516, - "query_total": 11 - }, - "segments": { - "count": 17, - "doc_values_memory_in_bytes": 9692, - "fixed_bit_set_memory_in_bytes": 3192, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 259531, - "norms_memory_in_bytes": 19264, - "points_memory_in_bytes": 937, - "stored_fields_memory_in_bytes": 20600, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 209038, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 23103081 - } - }, - "uuid": "9xXao5kdQp2KjILJD-_mAw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ELUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568810341490, - "index": ".reporting-2019.09.15", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1408 - }, - "indexing": { - "index_time_in_millis": 43, - "index_total": 6, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 125 - }, - "request_cache": { - "evictions": 0, - "hit_count": 43, - "memory_size_in_bytes": 4633, - "miss_count": 6 - }, - "search": { - "query_time_in_millis": 278157, - "query_total": 1277356 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 7654, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 36, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 6602, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 148623 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2816 - }, - "indexing": { - "index_time_in_millis": 144, - "index_total": 12, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 579 - }, - "request_cache": { - "evictions": 0, - "hit_count": 93, - "memory_size_in_bytes": 9266, - "miss_count": 12 - }, - "search": { - "query_time_in_millis": 461906, - "query_total": 2554707 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 15308, - "norms_memory_in_bytes": 512, - "points_memory_in_bytes": 72, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 13204, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 297266 - } - }, - "uuid": "x-9Py2RaQkaee3ClQnJuhw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "EbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569589297855, - "index": "om-iu-bro-2019.09.27-000990", - "primaries": { - "docs": { - "count": 1305888660 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 399951, - "miss_count": 2844 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 384 - }, - "search": { - "query_time_in_millis": 884748, - "query_total": 458 - }, - "segments": { - "count": 662, - "doc_values_memory_in_bytes": 11332376, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1302686305, - "norms_memory_in_bytes": 194176, - "points_memory_in_bytes": 124926058, - "stored_fields_memory_in_bytes": 361403520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 804830175, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 943316913936 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2611777320 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1041644, - "miss_count": 6314 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 782 - }, - "search": { - "query_time_in_millis": 1931221, - "query_total": 945 - }, - "segments": { - "count": 1324, - "doc_values_memory_in_bytes": 22664752, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2605372610, - "norms_memory_in_bytes": 388352, - "points_memory_in_bytes": 249852116, - "stored_fields_memory_in_bytes": 722807040, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1609660350, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1886633827872 - } - }, - "uuid": "MQxZFVrvTVCGtUjX-hwsEg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ErUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569940293632, - "index": "om-iu-bro-2019.10.01-001007", - "primaries": { - "docs": { - "count": 1322382640 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1446526766, - "index_total": 1392699549, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3102925551901 - }, - "query_cache": { - "evictions": 23335, - "hit_count": 831591, - "memory_size_in_bytes": 418223435, - "miss_count": 806486 - }, - "refresh": { - "total_time_in_millis": 22829969 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 393 - }, - "search": { - "query_time_in_millis": 7385420, - "query_total": 40522 - }, - "segments": { - "count": 592, - "doc_values_memory_in_bytes": 9273644, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1324407327, - "norms_memory_in_bytes": 166592, - "points_memory_in_bytes": 127587181, - "stored_fields_memory_in_bytes": 363616912, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 823762998, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 958103304471 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 36, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2644765280 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 2796142336, - "index_total": 2785399098, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6224219547144 - }, - "query_cache": { - "evictions": 45240, - "hit_count": 1642383, - "memory_size_in_bytes": 805300026, - "miss_count": 1591452 - }, - "refresh": { - "total_time_in_millis": 44943888 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 774 - }, - "search": { - "query_time_in_millis": 14735530, - "query_total": 80854 - }, - "segments": { - "count": 1178, - "doc_values_memory_in_bytes": 18567498, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2649115567, - "norms_memory_in_bytes": 337152, - "points_memory_in_bytes": 255295968, - "stored_fields_memory_in_bytes": 728382784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1646532165, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1917077369524 - } - }, - "uuid": "btAfOsaQRt-FqDdjEJOPGg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "E7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569923493730, - "index": "om-iu-bro-2019.10.01-001006", - "primaries": { - "docs": { - "count": 1314980317 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1666878695639 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 170 - }, - "refresh": { - "total_time_in_millis": 425 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 171 - }, - "search": { - "query_time_in_millis": 216948, - "query_total": 171 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2009456, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 974463773, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114596757, - "stored_fields_memory_in_bytes": 354471840, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 503376504, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 917781474667 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2629960634 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3333757391278 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "refresh": { - "total_time_in_millis": 892 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 342 - }, - "search": { - "query_time_in_millis": 432911, - "query_total": 342 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4018912, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1948927546, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229193514, - "stored_fields_memory_in_bytes": 708943680, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1006753008, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1835562949334 - } - }, - "uuid": "lYDbizGyTzeZigE0qPEqfA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "FLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569974494270, - "index": "om-iu-bro-2019.10.02-001009", - "primaries": { - "docs": { - "count": 1318666331 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1616324681, - "index_total": 1466690134, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3317264521824 - }, - "query_cache": { - "evictions": 31836, - "hit_count": 1520756, - "memory_size_in_bytes": 427121733, - "miss_count": 1354300 - }, - "refresh": { - "total_time_in_millis": 29517500 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 334 - }, - "search": { - "query_time_in_millis": 8696404, - "query_total": 95292 - }, - "segments": { - "count": 666, - "doc_values_memory_in_bytes": 10267320, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1315220446, - "norms_memory_in_bytes": 175680, - "points_memory_in_bytes": 131495351, - "stored_fields_memory_in_bytes": 384407160, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 788874935, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1002752397730 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2637332662 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3085255790, - "index_total": 2933380268, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6657534498282 - }, - "query_cache": { - "evictions": 64415, - "hit_count": 3048805, - "memory_size_in_bytes": 858060217, - "miss_count": 2712772 - }, - "refresh": { - "total_time_in_millis": 57606186 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 17363663, - "query_total": 190620 - }, - "segments": { - "count": 1328, - "doc_values_memory_in_bytes": 20781462, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2636640487, - "norms_memory_in_bytes": 363904, - "points_memory_in_bytes": 262926377, - "stored_fields_memory_in_bytes": 769511784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1583056960, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2001898381309 - } - }, - "uuid": "nkeIrjZ-QxqvzK5J51kmwg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "FbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1554254553234, - "index": ".reporting-2019.03.31", - "primaries": { - "docs": { - "count": 96 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2264 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 146, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 1570598, - "query_total": 3692330 - }, - "segments": { - "count": 13, - "doc_values_memory_in_bytes": 4476, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 43878, - "norms_memory_in_bytes": 1664, - "points_memory_in_bytes": 213, - "stored_fields_memory_in_bytes": 4312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 33213, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 138208391 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 192 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 4528 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 4 - }, - "request_cache": { - "evictions": 0, - "hit_count": 271, - "memory_size_in_bytes": 8612, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 3458836, - "query_total": 6343700 - }, - "segments": { - "count": 26, - "doc_values_memory_in_bytes": 8952, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 87756, - "norms_memory_in_bytes": 3328, - "points_memory_in_bytes": 426, - "stored_fields_memory_in_bytes": 8624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 66426, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 276416782 - } - }, - "uuid": "5BNHhZbWRyOHmjnw-aYnVg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "FrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1548826602038, - "index": ".ml-anomalies-.write-bro-eps-low-mean", - "primaries": { - "docs": { - "count": 1 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 15 - }, - "request_cache": { - "evictions": 0, - "hit_count": 6, - "memory_size_in_bytes": 4497, - "miss_count": 6 - }, - "search": { - "query_time_in_millis": 2, - "query_total": 12 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 68, - "fixed_bit_set_memory_in_bytes": 48, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1765, - "norms_memory_in_bytes": 64, - "points_memory_in_bytes": 12, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1309, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 7038 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 24 - }, - "request_cache": { - "evictions": 0, - "hit_count": 8, - "memory_size_in_bytes": 10493, - "miss_count": 14 - }, - "search": { - "query_time_in_millis": 2, - "query_total": 22 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 96, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 3530, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 24, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2618, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 14076 - } - }, - "uuid": "h78nkWiBRkC-n46rcWb4Fw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "F7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569905498612, - "index": "om-iu-bro-2019.10.01-001005", - "primaries": { - "docs": { - "count": 1321086123 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1759469849521 - }, - "query_cache": { - "evictions": 12, - "hit_count": 0, - "memory_size_in_bytes": 19346, - "miss_count": 526 - }, - "refresh": { - "total_time_in_millis": 517 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "search": { - "query_time_in_millis": 770144, - "query_total": 394 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1959344, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 976482895, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113066827, - "stored_fields_memory_in_bytes": 369346472, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 492101036, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 930334177230 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2642172246 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3518939699042 - }, - "query_cache": { - "evictions": 25, - "hit_count": 0, - "memory_size_in_bytes": 28711, - "miss_count": 1054 - }, - "refresh": { - "total_time_in_millis": 1020 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1477954, - "query_total": 792 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3918688, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1952965790, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226133654, - "stored_fields_memory_in_bytes": 738692944, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 984202072, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1860668354460 - } - }, - "uuid": "2O3M6uugQkOn3C01_Jisbw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "GLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569856892784, - "index": "om-iu-suricata-2019.09.30-000119", - "primaries": { - "docs": { - "count": 345007 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1285380079 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 2 - }, - "refresh": { - "total_time_in_millis": 14 - }, - "request_cache": { - "evictions": 0, - "hit_count": 38, - "memory_size_in_bytes": 1530, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 5, - "query_total": 40 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 25440, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 772384, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 41181, - "stored_fields_memory_in_bytes": 496376, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 209259, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1274231414 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 690014 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2570760158 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 4 - }, - "refresh": { - "total_time_in_millis": 29 - }, - "request_cache": { - "evictions": 0, - "hit_count": 76, - "memory_size_in_bytes": 3060, - "miss_count": 4 - }, - "search": { - "query_time_in_millis": 8, - "query_total": 80 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 50880, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1544768, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 82362, - "stored_fields_memory_in_bytes": 992752, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 418518, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2548462828 - } - }, - "uuid": "GEvZatNfTQCfoJS-x47sNw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "GbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1535566104880, - "index": "eb-sensor-eps", - "primaries": { - "docs": { - "count": 13604117 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 74 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 98805, - "memory_size_in_bytes": 11180, - "miss_count": 15 - }, - "search": { - "query_time_in_millis": 38812, - "query_total": 98820 - }, - "segments": { - "count": 99, - "doc_values_memory_in_bytes": 84540, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 9402737, - "norms_memory_in_bytes": 38016, - "points_memory_in_bytes": 449964, - "stored_fields_memory_in_bytes": 1343304, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 7486913, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2943429028 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 27208234 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 133 - }, - "refresh": { - "total_time_in_millis": 31 - }, - "request_cache": { - "evictions": 0, - "hit_count": 174182, - "memory_size_in_bytes": 19458, - "miss_count": 26 - }, - "search": { - "query_time_in_millis": 66502, - "query_total": 174208 - }, - "segments": { - "count": 198, - "doc_values_memory_in_bytes": 169080, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 18805474, - "norms_memory_in_bytes": 76032, - "points_memory_in_bytes": 899928, - "stored_fields_memory_in_bytes": 2686608, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 14973826, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 5886858052 - } - }, - "uuid": "GL62usYHQKiofr1skVWkeg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "GrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569956497769, - "index": "om-iu-bro-2019.10.01-001008", - "primaries": { - "docs": { - "count": 1335813974 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1663920654, - "index_total": 1495926190, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3366980959223 - }, - "query_cache": { - "evictions": 31675, - "hit_count": 1550573, - "memory_size_in_bytes": 448270233, - "miss_count": 1370065 - }, - "refresh": { - "total_time_in_millis": 30293047 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 362 - }, - "search": { - "query_time_in_millis": 8899958, - "query_total": 93534 - }, - "segments": { - "count": 660, - "doc_values_memory_in_bytes": 10291230, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1370358866, - "norms_memory_in_bytes": 168704, - "points_memory_in_bytes": 134394209, - "stored_fields_memory_in_bytes": 379780704, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 845724019, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1012641125447 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2671627948 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3170209637, - "index_total": 2991852380, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6748796120809 - }, - "query_cache": { - "evictions": 63222, - "hit_count": 3097431, - "memory_size_in_bytes": 910657144, - "miss_count": 2735807 - }, - "refresh": { - "total_time_in_millis": 59754082 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 738 - }, - "search": { - "query_time_in_millis": 17740216, - "query_total": 187200 - }, - "segments": { - "count": 1310, - "doc_values_memory_in_bytes": 20594908, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2745303573, - "norms_memory_in_bytes": 349056, - "points_memory_in_bytes": 268799620, - "stored_fields_memory_in_bytes": 761781992, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1693777997, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2021006766242 - } - }, - "uuid": "yTMjnxalR2OmJluWDxvvvA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "G7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569421895687, - "index": "om-iu-suricata-2019.09.25-000114", - "primaries": { - "docs": { - "count": 312306 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1618, - "miss_count": 26 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 617, - "memory_size_in_bytes": 1530, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 176, - "query_total": 625 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 25808, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 712217, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 37050, - "stored_fields_memory_in_bytes": 458712, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 190519, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1260643880 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 624612 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 635098609 - }, - "query_cache": { - "evictions": 0, - "hit_count": 201, - "memory_size_in_bytes": 127816, - "miss_count": 331 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1515, - "memory_size_in_bytes": 858274, - "miss_count": 183 - }, - "search": { - "query_time_in_millis": 9484, - "query_total": 1760 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 51616, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1424434, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 74100, - "stored_fields_memory_in_bytes": 917424, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 381038, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2521287760 - } - }, - "uuid": "OOXPLRflSmOJb5RXLon9Lg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "HLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556203579922, - "index": ".kibana_task_manager", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 443, - "index_total": 128, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1811491 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 17119 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 3 - }, - "search": { - "query_time_in_millis": 81640, - "query_total": 793083 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 68, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2076, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 10, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1558, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 8061 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 4138, - "index_total": 264, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1811491 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 27564 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 0, - "miss_count": 6 - }, - "search": { - "query_time_in_millis": 153594, - "query_total": 1643285 - }, - "segments": { - "count": 3, - "doc_values_memory_in_bytes": 204, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 6242, - "norms_memory_in_bytes": 384, - "points_memory_in_bytes": 30, - "stored_fields_memory_in_bytes": 936, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 4688, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 22071 - } - }, - "uuid": "qO__jWtFQLCEoR8kAHCZNA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "HbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1548869595568, - "index": ".reporting-2019.01.27", - "primaries": { - "docs": { - "count": 7 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1976 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 142, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 1053794, - "query_total": 3535785 - }, - "segments": { - "count": 7, - "doc_values_memory_in_bytes": 476, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 19803, - "norms_memory_in_bytes": 896, - "points_memory_in_bytes": 112, - "stored_fields_memory_in_bytes": 2184, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 16135, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2587447 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 14 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3952 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 179, - "memory_size_in_bytes": 6324, - "miss_count": 7 - }, - "search": { - "query_time_in_millis": 1461943, - "query_total": 4635173 - }, - "segments": { - "count": 14, - "doc_values_memory_in_bytes": 952, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 39606, - "norms_memory_in_bytes": 1792, - "points_memory_in_bytes": 224, - "stored_fields_memory_in_bytes": 4368, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 32270, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 5174894 - } - }, - "uuid": "_PdkqnIUTF6hajEkNZhw0w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "HrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569247893850, - "index": "om-iu-suricata-2019.09.23-000112", - "primaries": { - "docs": { - "count": 370595 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 727621691 - }, - "query_cache": { - "evictions": 0, - "hit_count": 57, - "memory_size_in_bytes": 121848, - "miss_count": 127 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1345, - "memory_size_in_bytes": 764228, - "miss_count": 62 - }, - "search": { - "query_time_in_millis": 10836, - "query_total": 1428 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 24672, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 838255, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 43804, - "stored_fields_memory_in_bytes": 550520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 219131, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1453366083 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 741190 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 727621691 - }, - "query_cache": { - "evictions": 0, - "hit_count": 260, - "memory_size_in_bytes": 273725, - "miss_count": 445 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2347, - "memory_size_in_bytes": 1654076, - "miss_count": 242 - }, - "search": { - "query_time_in_millis": 20660, - "query_total": 2666 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 49344, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1676510, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 87608, - "stored_fields_memory_in_bytes": 1101040, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 438262, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2906732166 - } - }, - "uuid": "f8AyCbTYQkWGr9kf8jzVsQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "H7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569801606871, - "index": ".watcher-history-9-2019.09.30", - "primaries": { - "docs": { - "count": 9587 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 79660, - "index_total": 9587, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1434631920 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 364848 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 37, - "query_total": 2 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 1736, - "fixed_bit_set_memory_in_bytes": 1288, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 42885, - "norms_memory_in_bytes": 2688, - "points_memory_in_bytes": 395, - "stored_fields_memory_in_bytes": 7752, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 30314, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 11211489 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 19174 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 172111, - "index_total": 19174, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2892188417 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 757790 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 49, - "query_total": 11 - }, - "segments": { - "count": 11, - "doc_values_memory_in_bytes": 9220, - "fixed_bit_set_memory_in_bytes": 2912, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 191908, - "norms_memory_in_bytes": 13952, - "points_memory_in_bytes": 874, - "stored_fields_memory_in_bytes": 18056, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 149806, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 22615533 - } - }, - "uuid": "xVMwSHWTR1e2ZQQC7eB5Vw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ILUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556201822328, - "index": ".ml-annotations-6", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1459, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 2, - "query_total": 3 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4034, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 16, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 3130, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 12416 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1459, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 2, - "query_total": 3 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 8068, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 32, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 6260, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 24832 - } - }, - "uuid": "0ZfwgGi2SH66cRVgCvSNXQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "IbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569769890609, - "index": "om-iu-suricata-2019.09.29-000118", - "primaries": { - "docs": { - "count": 319527 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1208852133 - }, - "query_cache": { - "evictions": 0, - "hit_count": 193, - "memory_size_in_bytes": 89204, - "miss_count": 239 - }, - "refresh": { - "total_time_in_millis": 14 - }, - "request_cache": { - "evictions": 0, - "hit_count": 377, - "memory_size_in_bytes": 463289, - "miss_count": 146 - }, - "search": { - "query_time_in_millis": 9748, - "query_total": 554 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 28536, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 724852, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 37898, - "stored_fields_memory_in_bytes": 468784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 189506, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1200394227 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 639054 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2417704266 - }, - "query_cache": { - "evictions": 12, - "hit_count": 417, - "memory_size_in_bytes": 178190, - "miss_count": 542 - }, - "refresh": { - "total_time_in_millis": 29 - }, - "request_cache": { - "evictions": 0, - "hit_count": 746, - "memory_size_in_bytes": 926594, - "miss_count": 300 - }, - "search": { - "query_time_in_millis": 15405, - "query_total": 1108 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 57072, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1449704, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 75796, - "stored_fields_memory_in_bytes": 937568, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 379012, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2400788454 - } - }, - "uuid": "ds1i6epbRwuecxjv2svKgg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "IrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569595893647, - "index": "om-iu-suricata-2019.09.27-000116", - "primaries": { - "docs": { - "count": 215826 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 988885098 - }, - "query_cache": { - "evictions": 0, - "hit_count": 180, - "memory_size_in_bytes": 259917, - "miss_count": 518 - }, - "refresh": { - "total_time_in_millis": 13 - }, - "request_cache": { - "evictions": 0, - "hit_count": 794, - "memory_size_in_bytes": 3127208, - "miss_count": 223 - }, - "search": { - "query_time_in_millis": 10793, - "query_total": 1052 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 21384, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 517468, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 25788, - "stored_fields_memory_in_bytes": 333752, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 136416, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 982230661 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 431652 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1977770196 - }, - "query_cache": { - "evictions": 0, - "hit_count": 365, - "memory_size_in_bytes": 507597, - "miss_count": 1016 - }, - "refresh": { - "total_time_in_millis": 32 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1588, - "memory_size_in_bytes": 6253488, - "miss_count": 446 - }, - "search": { - "query_time_in_millis": 21567, - "query_total": 2104 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 42768, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1034936, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 51576, - "stored_fields_memory_in_bytes": 667504, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 272832, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1964461322 - } - }, - "uuid": "3GjTPv_xRHu10Bg7gCLc3w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "I7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569501692699, - "index": "om-iu-bro-2019.09.26-000985", - "primaries": { - "docs": { - "count": 1336049953 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 840883893350 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 102855, - "miss_count": 611 - }, - "refresh": { - "total_time_in_millis": 242 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 385 - }, - "search": { - "query_time_in_millis": 996423, - "query_total": 453 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2022768, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1030603004, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114630026, - "stored_fields_memory_in_bytes": 358454696, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 555486298, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 932959463908 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2672099906 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 998879366820 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 171858, - "miss_count": 1215 - }, - "refresh": { - "total_time_in_millis": 289 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 782 - }, - "search": { - "query_time_in_millis": 1843803, - "query_total": 914 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4045536, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2061206008, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229260052, - "stored_fields_memory_in_bytes": 716909392, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1110972596, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1865918927816 - } - }, - "uuid": "IAsCEhBBQAaTu2mtsq-7AQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "JLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569518494026, - "index": "om-iu-bro-2019.09.26-000986", - "primaries": { - "docs": { - "count": 1319683447 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 585047219347 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 67754, - "miss_count": 596 - }, - "refresh": { - "total_time_in_millis": 145 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 389 - }, - "search": { - "query_time_in_millis": 893902, - "query_total": 453 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2126280, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1004319258, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114241192, - "stored_fields_memory_in_bytes": 355467808, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 532474762, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 933987459380 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2639366894 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 961095262272 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 155235, - "miss_count": 1206 - }, - "refresh": { - "total_time_in_millis": 262 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 787 - }, - "search": { - "query_time_in_millis": 1889692, - "query_total": 917 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4252560, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2008638516, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 228482384, - "stored_fields_memory_in_bytes": 710935616, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1064949524, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1867974918760 - } - }, - "uuid": "BeYpyF_5TGmUl5cEC3ys5A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "JbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569466296166, - "index": "om-iu-bro-2019.09.26-000983", - "primaries": { - "docs": { - "count": 1309197774 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 645186302767 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 445 - }, - "refresh": { - "total_time_in_millis": 137 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 391 - }, - "search": { - "query_time_in_millis": 591092, - "query_total": 411 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1988504, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1006652191, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 112214152, - "stored_fields_memory_in_bytes": 362964520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 529475799, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 940957032899 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2618395548 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1076953713509 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 942 - }, - "refresh": { - "total_time_in_millis": 232 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 786 - }, - "search": { - "query_time_in_millis": 1354568, - "query_total": 846 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3977008, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2013304382, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 224428304, - "stored_fields_memory_in_bytes": 725929040, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1058951598, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1881914065798 - } - }, - "uuid": "vnubJGEOQ5SnuYf7KYPQDg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "JrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569484292359, - "index": "om-iu-bro-2019.09.26-000984", - "primaries": { - "docs": { - "count": 1314873722 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 824939410583 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 478 - }, - "refresh": { - "total_time_in_millis": 243 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 392 - }, - "search": { - "query_time_in_millis": 752875, - "query_total": 426 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1958224, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 963754762, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113388980, - "stored_fields_memory_in_bytes": 360106792, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 488291550, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 908915333408 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2629747444 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1086027376623 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 950 - }, - "refresh": { - "total_time_in_millis": 404 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 760, - "miss_count": 784 - }, - "search": { - "query_time_in_millis": 1468561, - "query_total": 850 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3916448, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1927509524, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226777960, - "stored_fields_memory_in_bytes": 720213584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 976583100, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1817830666816 - } - }, - "uuid": "EYEGfa2_Ra-8-oac36ke2g" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "J7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569073891937, - "index": "om-iu-suricata-2019.09.21-000110", - "primaries": { - "docs": { - "count": 192200 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 366264631 - }, - "query_cache": { - "evictions": 19, - "hit_count": 195, - "memory_size_in_bytes": 99758, - "miss_count": 283 - }, - "refresh": { - "total_time_in_millis": 4 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1397, - "memory_size_in_bytes": 396150, - "miss_count": 125 - }, - "search": { - "query_time_in_millis": 1615, - "query_total": 1595 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 20208, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 387048, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 23252, - "stored_fields_memory_in_bytes": 231064, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 112396, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 731512908 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 384400 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 366264631 - }, - "query_cache": { - "evictions": 19, - "hit_count": 317, - "memory_size_in_bytes": 213675, - "miss_count": 460 - }, - "refresh": { - "total_time_in_millis": 4 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2707, - "memory_size_in_bytes": 999729, - "miss_count": 226 - }, - "search": { - "query_time_in_millis": 10236, - "query_total": 3040 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 40416, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 774096, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 46504, - "stored_fields_memory_in_bytes": 462128, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 224792, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1463025816 - } - }, - "uuid": "jpfBGwUXQNSl_xFpItDC3w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "KLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569535892807, - "index": "om-iu-bro-2019.09.26-000987", - "primaries": { - "docs": { - "count": 1306221236 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 700106610449 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 76352, - "miss_count": 596 - }, - "refresh": { - "total_time_in_millis": 163 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 398 - }, - "search": { - "query_time_in_millis": 946214, - "query_total": 460 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1986864, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 980993250, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 112890303, - "stored_fields_memory_in_bytes": 356101920, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 510004947, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 935765263956 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2612442472 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1293846934459 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 148115, - "miss_count": 1204 - }, - "refresh": { - "total_time_in_millis": 306 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 785 - }, - "search": { - "query_time_in_millis": 1924776, - "query_total": 917 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3973728, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1961986500, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 225780606, - "stored_fields_memory_in_bytes": 712203840, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1020009894, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1871530527912 - } - }, - "uuid": "Sls8o2FdQuegIQtjOsn_2A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "KbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556203587074, - "index": ".tasks", - "primaries": { - "docs": { - "count": 1 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1437, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 3 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 68, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2264, - "norms_memory_in_bytes": 64, - "points_memory_in_bytes": 6, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1814, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 6408 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1437, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 3 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4528, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 12, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 3628, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 12816 - } - }, - "uuid": "ymTMhFbIS8ynsBVITJlPuQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "KrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570042897981, - "index": "om-iu-bro-2019.10.02-001013", - "primaries": { - "docs": { - "count": 1330645856 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1599305810, - "index_total": 1488143992, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3343123628440 - }, - "query_cache": { - "evictions": 35115, - "hit_count": 1522142, - "memory_size_in_bytes": 498085629, - "miss_count": 1436954 - }, - "refresh": { - "total_time_in_millis": 30566340 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "search": { - "query_time_in_millis": 7893249, - "query_total": 88450 - }, - "segments": { - "count": 652, - "doc_values_memory_in_bytes": 10983402, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1333542481, - "norms_memory_in_bytes": 184704, - "points_memory_in_bytes": 133844830, - "stored_fields_memory_in_bytes": 375179160, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 813350385, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 996118362228 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2661291712 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3052918416, - "index_total": 2976287984, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6702619882391 - }, - "query_cache": { - "evictions": 70459, - "hit_count": 3038107, - "memory_size_in_bytes": 974414479, - "miss_count": 2868258 - }, - "refresh": { - "total_time_in_millis": 60106538 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 15752121, - "query_total": 176718 - }, - "segments": { - "count": 1275, - "doc_values_memory_in_bytes": 21652670, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2674211144, - "norms_memory_in_bytes": 367936, - "points_memory_in_bytes": 267485280, - "stored_fields_memory_in_bytes": 752904880, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1631800378, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1987372480662 - } - }, - "uuid": "oiNyk3qOSnaAGaL-L7O3dg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "K7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570026696850, - "index": "om-iu-bro-2019.10.02-001012", - "primaries": { - "docs": { - "count": 1327113172 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1489758478, - "index_total": 1401712349, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3124321514422 - }, - "query_cache": { - "evictions": 3147, - "hit_count": 893711, - "memory_size_in_bytes": 443309720, - "miss_count": 947709 - }, - "refresh": { - "total_time_in_millis": 25128306 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 342 - }, - "search": { - "query_time_in_millis": 7371983, - "query_total": 45291 - }, - "segments": { - "count": 631, - "doc_values_memory_in_bytes": 10413764, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1293995695, - "norms_memory_in_bytes": 166592, - "points_memory_in_bytes": 127919143, - "stored_fields_memory_in_bytes": 366784648, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 788711548, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 955339884880 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2654226344 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 2848770127, - "index_total": 2803424698, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6258250359960 - }, - "query_cache": { - "evictions": 6395, - "hit_count": 1791701, - "memory_size_in_bytes": 871086984, - "miss_count": 1891345 - }, - "refresh": { - "total_time_in_millis": 49395552 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 14666839, - "query_total": 90810 - }, - "segments": { - "count": 1241, - "doc_values_memory_in_bytes": 20717148, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2591837749, - "norms_memory_in_bytes": 333184, - "points_memory_in_bytes": 255748959, - "stored_fields_memory_in_bytes": 734715776, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1580322682, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1907972395799 - } - }, - "uuid": "OgZdKX-iRoKntvih2hmQJQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "LLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570009892663, - "index": "om-iu-bro-2019.10.02-001011", - "primaries": { - "docs": { - "count": 1332743307 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1504989593, - "index_total": 1416276585, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3099656096969 - }, - "query_cache": { - "evictions": 19405, - "hit_count": 906547, - "memory_size_in_bytes": 359063365, - "miss_count": 913788 - }, - "refresh": { - "total_time_in_millis": 24695391 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 342 - }, - "search": { - "query_time_in_millis": 7481016, - "query_total": 50197 - }, - "segments": { - "count": 629, - "doc_values_memory_in_bytes": 10959902, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1268159840, - "norms_memory_in_bytes": 181440, - "points_memory_in_bytes": 128000699, - "stored_fields_memory_in_bytes": 368122568, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 760895231, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 948257552623 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2665486614 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 2886476003, - "index_total": 2832553170, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6201240438704 - }, - "query_cache": { - "evictions": 39447, - "hit_count": 1818063, - "memory_size_in_bytes": 711384790, - "miss_count": 1831534 - }, - "refresh": { - "total_time_in_millis": 48374534 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 14967732, - "query_total": 100455 - }, - "segments": { - "count": 1280, - "doc_values_memory_in_bytes": 22365632, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2539071135, - "norms_memory_in_bytes": 370688, - "points_memory_in_bytes": 256060947, - "stored_fields_memory_in_bytes": 737150904, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1523122964, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1894989206101 - } - }, - "uuid": "3nztYuj_RBmYtiUlNuoU4A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "LbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569992496207, - "index": "om-iu-bro-2019.10.02-001010", - "primaries": { - "docs": { - "count": 1304211577 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1549997325, - "index_total": 1440521524, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3163028522692 - }, - "query_cache": { - "evictions": 29232, - "hit_count": 1290768, - "memory_size_in_bytes": 404941085, - "miss_count": 1227792 - }, - "refresh": { - "total_time_in_millis": 26846023 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 346 - }, - "search": { - "query_time_in_millis": 7760153, - "query_total": 74885 - }, - "segments": { - "count": 621, - "doc_values_memory_in_bytes": 9774046, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1227730902, - "norms_memory_in_bytes": 174592, - "points_memory_in_bytes": 126094986, - "stored_fields_memory_in_bytes": 381808552, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 709878726, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 958769975883 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2608423154 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 2964173095, - "index_total": 2881043048, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6338997706875 - }, - "query_cache": { - "evictions": 60137, - "hit_count": 2604428, - "memory_size_in_bytes": 812184845, - "miss_count": 2475985 - }, - "refresh": { - "total_time_in_millis": 52440478 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 15615473, - "query_total": 150173 - }, - "segments": { - "count": 1254, - "doc_values_memory_in_bytes": 19572174, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2454431296, - "norms_memory_in_bytes": 348672, - "points_memory_in_bytes": 252291858, - "stored_fields_memory_in_bytes": 764434520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1417784072, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1914797936331 - } - }, - "uuid": "UM3UpLP0T-yOkd6c9-getQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "LrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1567942891831, - "index": "om-iu-suricata-2019.09.08-000097", - "primaries": { - "docs": { - "count": 278042 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 571185507 - }, - "query_cache": { - "evictions": 36, - "hit_count": 352, - "memory_size_in_bytes": 120229, - "miss_count": 974 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4715, - "memory_size_in_bytes": 1276269, - "miss_count": 348 - }, - "search": { - "query_time_in_millis": 5606, - "query_total": 5531 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 21520, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 571401, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 33203, - "stored_fields_memory_in_bytes": 353528, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 163022, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1135636142 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 556084 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1140366926 - }, - "query_cache": { - "evictions": 116, - "hit_count": 882, - "memory_size_in_bytes": 193225, - "miss_count": 2547 - }, - "refresh": { - "total_time_in_millis": 12 - }, - "request_cache": { - "evictions": 0, - "hit_count": 8129, - "memory_size_in_bytes": 2609103, - "miss_count": 740 - }, - "search": { - "query_time_in_millis": 16236, - "query_total": 9579 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 43040, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1142802, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 66406, - "stored_fields_memory_in_bytes": 707056, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 326044, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2271272284 - } - }, - "uuid": "oa6GSDrmQVy3v7HjxRCewQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "L7Ujk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1567768894793, - "index": "om-iu-suricata-2019.09.06-000095", - "primaries": { - "docs": { - "count": 342686 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 38, - "hit_count": 484, - "memory_size_in_bytes": 138579, - "miss_count": 1522 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2284, - "memory_size_in_bytes": 1081918, - "miss_count": 361 - }, - "search": { - "query_time_in_millis": 16502, - "query_total": 2810 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 22760, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 735729, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 39903, - "stored_fields_memory_in_bytes": 477472, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 195466, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1428553528 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 685372 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 38, - "hit_count": 491, - "memory_size_in_bytes": 225497, - "miss_count": 1585 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3132, - "memory_size_in_bytes": 1726728, - "miss_count": 383 - }, - "search": { - "query_time_in_millis": 30289, - "query_total": 3688 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 45520, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1471458, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 79806, - "stored_fields_memory_in_bytes": 954944, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 390932, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2857107056 - } - }, - "uuid": "vW1PY_CvQQa9z9fzGLB3Rg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "MLUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568899892779, - "index": "om-iu-suricata-2019.09.19-000108", - "primaries": { - "docs": { - "count": 377760 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 733851386 - }, - "query_cache": { - "evictions": 46, - "hit_count": 667, - "memory_size_in_bytes": 157395, - "miss_count": 879 - }, - "refresh": { - "total_time_in_millis": 49 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1990, - "memory_size_in_bytes": 1233025, - "miss_count": 439 - }, - "search": { - "query_time_in_millis": 8383, - "query_total": 2558 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 24192, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 825325, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 44589, - "stored_fields_memory_in_bytes": 537568, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 218848, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1459975500 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 755520 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 733851386 - }, - "query_cache": { - "evictions": 46, - "hit_count": 674, - "memory_size_in_bytes": 205259, - "miss_count": 914 - }, - "refresh": { - "total_time_in_millis": 49 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2630, - "memory_size_in_bytes": 1573021, - "miss_count": 451 - }, - "search": { - "query_time_in_millis": 15874, - "query_total": 3214 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 48384, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1650650, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 89178, - "stored_fields_memory_in_bytes": 1075136, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 437696, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2919951000 - } - }, - "uuid": "X4JrLxLeRKK4-Vtrlqnl_g" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "MbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568812900261, - "index": "om-iu-suricata-2019.09.18-000107", - "primaries": { - "docs": { - "count": 309724 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 101, - "memory_size_in_bytes": 64365, - "miss_count": 165 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 689, - "memory_size_in_bytes": 445593, - "miss_count": 91 - }, - "search": { - "query_time_in_millis": 2584, - "query_total": 808 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 22200, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 691988, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 36859, - "stored_fields_memory_in_bytes": 438536, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 194265, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1232008776 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 619448 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 620734553 - }, - "query_cache": { - "evictions": 8, - "hit_count": 246, - "memory_size_in_bytes": 193815, - "miss_count": 471 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2377, - "memory_size_in_bytes": 1248918, - "miss_count": 217 - }, - "search": { - "query_time_in_millis": 15441, - "query_total": 2691 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 44400, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1383976, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 73718, - "stored_fields_memory_in_bytes": 877072, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 388530, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2464017552 - } - }, - "uuid": "tMStVeTiTquAEA07CUQUIg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "MrUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569265895133, - "index": "om-iu-bro-2019.09.23-000972", - "primaries": { - "docs": { - "count": 1309677560 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1396984126615 - }, - "query_cache": { - "evictions": 174, - "hit_count": 3403, - "memory_size_in_bytes": 292494032, - "miss_count": 22709 - }, - "refresh": { - "total_time_in_millis": 458 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1050, - "memory_size_in_bytes": 6616320, - "miss_count": 3307 - }, - "search": { - "query_time_in_millis": 2539349, - "query_total": 4732 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2015976, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1021307768, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 108942354, - "stored_fields_memory_in_bytes": 353987104, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 556353118, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 915460038424 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2619355120 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1812054492795 - }, - "query_cache": { - "evictions": 240, - "hit_count": 4369, - "memory_size_in_bytes": 384518822, - "miss_count": 30750 - }, - "refresh": { - "total_time_in_millis": 575 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1406, - "memory_size_in_bytes": 8603428, - "miss_count": 4490 - }, - "search": { - "query_time_in_millis": 3714043, - "query_total": 6392 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4031952, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2042615536, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 217884708, - "stored_fields_memory_in_bytes": 707974208, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1112706236, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1830920076848 - } - }, - "uuid": "ADDQ97YoRJ6K9aWmF1VglQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "M7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569248499784, - "index": "om-iu-bro-2019.09.23-000971", - "primaries": { - "docs": { - "count": 1321909255 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 856413585929 - }, - "query_cache": { - "evictions": 107, - "hit_count": 1836, - "memory_size_in_bytes": 101293499, - "miss_count": 14346 - }, - "refresh": { - "total_time_in_millis": 364 - }, - "request_cache": { - "evictions": 0, - "hit_count": 544, - "memory_size_in_bytes": 3031658, - "miss_count": 1719 - }, - "search": { - "query_time_in_millis": 1917783, - "query_total": 2441 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2023736, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1020945305, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115727419, - "stored_fields_memory_in_bytes": 353566312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 549618622, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 941397119181 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2643818510 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1450182842041 - }, - "query_cache": { - "evictions": 198, - "hit_count": 3172, - "memory_size_in_bytes": 174849293, - "miss_count": 23231 - }, - "refresh": { - "total_time_in_millis": 538 - }, - "request_cache": { - "evictions": 0, - "hit_count": 938, - "memory_size_in_bytes": 5265313, - "miss_count": 3127 - }, - "search": { - "query_time_in_millis": 3782973, - "query_total": 4375 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4047472, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2041890610, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231454838, - "stored_fields_memory_in_bytes": 707132624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1099237244, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1882794238362 - } - }, - "uuid": "R8oWSXsXQsuwDjVhr5ANFA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "NLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569231696861, - "index": "om-iu-bro-2019.09.23-000970", - "primaries": { - "docs": { - "count": 1340297803 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 834319238400 - }, - "query_cache": { - "evictions": 149, - "hit_count": 2004, - "memory_size_in_bytes": 167924114, - "miss_count": 17666 - }, - "refresh": { - "total_time_in_millis": 288 - }, - "request_cache": { - "evictions": 0, - "hit_count": 918, - "memory_size_in_bytes": 3680422, - "miss_count": 1946 - }, - "search": { - "query_time_in_millis": 2508920, - "query_total": 3122 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1986216, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1017654900, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116297994, - "stored_fields_memory_in_bytes": 359731168, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 539630306, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 919527171404 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2680595606 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1200175731289 - }, - "query_cache": { - "evictions": 200, - "hit_count": 2880, - "memory_size_in_bytes": 233276708, - "miss_count": 25830 - }, - "refresh": { - "total_time_in_millis": 397 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1218, - "memory_size_in_bytes": 5111822, - "miss_count": 3002 - }, - "search": { - "query_time_in_millis": 3866181, - "query_total": 4588 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3972432, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2035309800, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 232595988, - "stored_fields_memory_in_bytes": 719462336, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1079260612, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1839054342808 - } - }, - "uuid": "Tk8QZbvZRfC5BaE6OAsQ4w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "NbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568933494216, - "index": "om-iu-bro-2019.09.19-000954", - "primaries": { - "docs": { - "count": 1315220004 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1074253660040 - }, - "query_cache": { - "evictions": 497, - "hit_count": 4950, - "memory_size_in_bytes": 182402019, - "miss_count": 15274 - }, - "refresh": { - "total_time_in_millis": 276 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1146, - "memory_size_in_bytes": 8451580, - "miss_count": 4430 - }, - "search": { - "query_time_in_millis": 4338146, - "query_total": 6168 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2048616, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1029516379, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114913208, - "stored_fields_memory_in_bytes": 353383632, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 559161707, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 934428394964 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2630440008 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1721403713552 - }, - "query_cache": { - "evictions": 753, - "hit_count": 7452, - "memory_size_in_bytes": 265117024, - "miss_count": 23406 - }, - "refresh": { - "total_time_in_millis": 409 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1727, - "memory_size_in_bytes": 12683641, - "miss_count": 6919 - }, - "search": { - "query_time_in_millis": 6798300, - "query_total": 9556 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4097232, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2059032758, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229826416, - "stored_fields_memory_in_bytes": 706767264, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1118323414, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1868856789928 - } - }, - "uuid": "374rF6dNQ6ioQZC2nydluw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "NrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568203891724, - "index": "om-iu-suricata-2019.09.11-000100", - "primaries": { - "docs": { - "count": 312448 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 619146916 - }, - "query_cache": { - "evictions": 32, - "hit_count": 207, - "memory_size_in_bytes": 99360, - "miss_count": 410 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2944, - "memory_size_in_bytes": 1134022, - "miss_count": 177 - }, - "search": { - "query_time_in_millis": 9896, - "query_total": 3339 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 24128, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 683525, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 37108, - "stored_fields_memory_in_bytes": 423760, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 198401, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1225829310 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 624896 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 619146916 - }, - "query_cache": { - "evictions": 32, - "hit_count": 406, - "memory_size_in_bytes": 230050, - "miss_count": 726 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3910, - "memory_size_in_bytes": 2040070, - "miss_count": 357 - }, - "search": { - "query_time_in_millis": 16235, - "query_total": 4541 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 48256, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1367050, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 74216, - "stored_fields_memory_in_bytes": 847520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 396802, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2451658620 - } - }, - "uuid": "9-NMml6rRtKjlWTn6VuPAA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "N7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568551892055, - "index": "om-iu-suricata-2019.09.15-000104", - "primaries": { - "docs": { - "count": 210479 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 8, - "memory_size_in_bytes": 54028, - "miss_count": 49 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 826, - "memory_size_in_bytes": 644738, - "miss_count": 22 - }, - "search": { - "query_time_in_millis": 9389, - "query_total": 856 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 23984, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 458405, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 25012, - "stored_fields_memory_in_bytes": 268928, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 140353, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 904684098 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 420958 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 47, - "hit_count": 537, - "memory_size_in_bytes": 151337, - "miss_count": 902 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3233, - "memory_size_in_bytes": 1789081, - "miss_count": 416 - }, - "search": { - "query_time_in_millis": 15944, - "query_total": 3903 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 47968, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 916810, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 50024, - "stored_fields_memory_in_bytes": 537856, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 280706, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1809368196 - } - }, - "uuid": "EnYEbk3-TaS66D1Ub9xUvg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "OLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568464897872, - "index": "om-iu-suricata-2019.09.14-000103", - "primaries": { - "docs": { - "count": 223491 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 449817972 - }, - "query_cache": { - "evictions": 27, - "hit_count": 121, - "memory_size_in_bytes": 44945, - "miss_count": 358 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2295, - "memory_size_in_bytes": 394381, - "miss_count": 100 - }, - "search": { - "query_time_in_millis": 2007, - "query_total": 2610 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 21384, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 470450, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 26023, - "stored_fields_memory_in_bytes": 279600, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 143315, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 889746913 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 446982 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 449817972 - }, - "query_cache": { - "evictions": 27, - "hit_count": 319, - "memory_size_in_bytes": 140296, - "miss_count": 688 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3057, - "memory_size_in_bytes": 1120053, - "miss_count": 280 - }, - "search": { - "query_time_in_millis": 12800, - "query_total": 3608 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 42768, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 940900, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 52046, - "stored_fields_memory_in_bytes": 559200, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 286630, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1779493826 - } - }, - "uuid": "hY9ycl6XTl-ATRHqPOPOqA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ObUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568893903968, - "index": "om-iu-bro-2019.09.19-000952", - "primaries": { - "docs": { - "count": 1323601224 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 702316479530 - }, - "query_cache": { - "evictions": 339, - "hit_count": 3531, - "memory_size_in_bytes": 121224412, - "miss_count": 10847 - }, - "refresh": { - "total_time_in_millis": 312 - }, - "request_cache": { - "evictions": 0, - "hit_count": 775, - "memory_size_in_bytes": 5394680, - "miss_count": 3174 - }, - "search": { - "query_time_in_millis": 3028294, - "query_total": 4315 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1983048, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 991573574, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114809512, - "stored_fields_memory_in_bytes": 358653936, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 516117862, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 899838358392 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2647202448 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1039505994781 - }, - "query_cache": { - "evictions": 534, - "hit_count": 5423, - "memory_size_in_bytes": 185257591, - "miss_count": 17689 - }, - "refresh": { - "total_time_in_millis": 498 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1244, - "memory_size_in_bytes": 8627653, - "miss_count": 5251 - }, - "search": { - "query_time_in_millis": 4846599, - "query_total": 7090 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3966096, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1983147148, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229619024, - "stored_fields_memory_in_bytes": 717307872, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1032235724, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1799676716784 - } - }, - "uuid": "Le_LJOy3RaqBM8M-Ca08aw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "OrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568915492741, - "index": "om-iu-bro-2019.09.19-000953", - "primaries": { - "docs": { - "count": 1331845136 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 978657954666 - }, - "query_cache": { - "evictions": 361, - "hit_count": 3646, - "memory_size_in_bytes": 121035724, - "miss_count": 7421 - }, - "refresh": { - "total_time_in_millis": 226 - }, - "request_cache": { - "evictions": 0, - "hit_count": 857, - "memory_size_in_bytes": 6019885, - "miss_count": 3473 - }, - "search": { - "query_time_in_millis": 3056461, - "query_total": 4729 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2034768, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1040901005, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116098147, - "stored_fields_memory_in_bytes": 358465888, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 564292986, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 943762572126 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2663690272 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1738261767586 - }, - "query_cache": { - "evictions": 654, - "hit_count": 6638, - "memory_size_in_bytes": 214128717, - "miss_count": 13740 - }, - "refresh": { - "total_time_in_millis": 458 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1520, - "memory_size_in_bytes": 10733371, - "miss_count": 6249 - }, - "search": { - "query_time_in_millis": 5861656, - "query_total": 8484 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4069536, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2081802010, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 232196294, - "stored_fields_memory_in_bytes": 716931776, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1128585972, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1887525144252 - } - }, - "uuid": "GmA1AiCPS0WhAowWSWjzng" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "O7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568858493244, - "index": "om-iu-bro-2019.09.19-000950", - "primaries": { - "docs": { - "count": 1307302764 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 638002948749 - }, - "query_cache": { - "evictions": 377, - "hit_count": 3860, - "memory_size_in_bytes": 161257902, - "miss_count": 28886 - }, - "refresh": { - "total_time_in_millis": 150 - }, - "request_cache": { - "evictions": 0, - "hit_count": 154, - "memory_size_in_bytes": 6574675, - "miss_count": 3788 - }, - "search": { - "query_time_in_millis": 3145207, - "query_total": 4308 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2013424, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1027298274, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113803462, - "stored_fields_memory_in_bytes": 357701288, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 553770884, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 931873592347 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2614605528 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1064560099393 - }, - "query_cache": { - "evictions": 608, - "hit_count": 6117, - "memory_size_in_bytes": 225086981, - "miss_count": 40847 - }, - "refresh": { - "total_time_in_millis": 265 - }, - "request_cache": { - "evictions": 0, - "hit_count": 256, - "memory_size_in_bytes": 10608812, - "miss_count": 6274 - }, - "search": { - "query_time_in_millis": 5345443, - "query_total": 7124 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4026848, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2054596548, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 227606924, - "stored_fields_memory_in_bytes": 715402576, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1107541768, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1863747184694 - } - }, - "uuid": "27Hne3lmRsu0NPHDDo3hdg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "PLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1559752245094, - "index": ".reporting-2019.06.02", - "primaries": { - "docs": { - "count": 5 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1504 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 139, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 714417, - "query_total": 3535782 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 15308, - "norms_memory_in_bytes": 512, - "points_memory_in_bytes": 72, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 13204, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 497448 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 10 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3008 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 208, - "memory_size_in_bytes": 8612, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 1155690, - "query_total": 5300336 - }, - "segments": { - "count": 8, - "doc_values_memory_in_bytes": 544, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 30616, - "norms_memory_in_bytes": 1024, - "points_memory_in_bytes": 144, - "stored_fields_memory_in_bytes": 2496, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 26408, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 994896 - } - }, - "uuid": "cS9L_Fr5SQm3MjldIH8FoQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "PbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568876499216, - "index": "om-iu-bro-2019.09.19-000951", - "primaries": { - "docs": { - "count": 1327480986 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 631414041622 - }, - "query_cache": { - "evictions": 364, - "hit_count": 3246, - "memory_size_in_bytes": 119743610, - "miss_count": 30686 - }, - "refresh": { - "total_time_in_millis": 169 - }, - "request_cache": { - "evictions": 0, - "hit_count": 727, - "memory_size_in_bytes": 4823877, - "miss_count": 2928 - }, - "search": { - "query_time_in_millis": 3323617, - "query_total": 4010 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2014848, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1018590106, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114652616, - "stored_fields_memory_in_bytes": 359456680, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 542456746, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 926490845166 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2654961972 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1109877540331 - }, - "query_cache": { - "evictions": 633, - "hit_count": 5705, - "memory_size_in_bytes": 203131070, - "miss_count": 51311 - }, - "refresh": { - "total_time_in_millis": 293 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1260, - "memory_size_in_bytes": 8373514, - "miss_count": 5155 - }, - "search": { - "query_time_in_millis": 5762254, - "query_total": 7030 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4029696, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2037180212, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229305232, - "stored_fields_memory_in_bytes": 718913360, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1084913492, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1852981690332 - } - }, - "uuid": "dmcyiaMaQwOUbl3yOrL8wQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "PrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1552505403255, - "index": ".reporting-2019.03.10", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1408 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 85, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 412946, - "query_total": 2364548 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 5658, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 32, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 4610, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 180469 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2816 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 198, - "memory_size_in_bytes": 8612, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 1035185, - "query_total": 4982219 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 11316, - "norms_memory_in_bytes": 512, - "points_memory_in_bytes": 64, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 9220, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 360938 - } - }, - "uuid": "0vw-OPCWQjmTp3Gq---iww" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "P7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570030895186, - "index": "om-iu-suricata-2019.10.02-000121", - "primaries": { - "docs": { - "count": 305191 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 930902, - "index_total": 305191, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 9772512541 - }, - "query_cache": { - "evictions": 0, - "hit_count": 872, - "memory_size_in_bytes": 68974, - "miss_count": 447 - }, - "refresh": { - "total_time_in_millis": 2849270 - }, - "request_cache": { - "evictions": 0, - "hit_count": 9, - "memory_size_in_bytes": 0, - "miss_count": 481 - }, - "search": { - "query_time_in_millis": 58100, - "query_total": 562 - }, - "segments": { - "count": 35, - "doc_values_memory_in_bytes": 129012, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1192700, - "norms_memory_in_bytes": 2240, - "points_memory_in_bytes": 41464, - "stored_fields_memory_in_bytes": 424960, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 595024, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1182397813 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 610382 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1773852, - "index_total": 610382, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 20044578154 - }, - "query_cache": { - "evictions": 37, - "hit_count": 1673, - "memory_size_in_bytes": 113247, - "miss_count": 796 - }, - "refresh": { - "total_time_in_millis": 5445733 - }, - "request_cache": { - "evictions": 0, - "hit_count": 9, - "memory_size_in_bytes": 0, - "miss_count": 971 - }, - "search": { - "query_time_in_millis": 123525, - "query_total": 1124 - }, - "segments": { - "count": 76, - "doc_values_memory_in_bytes": 272504, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2464879, - "norms_memory_in_bytes": 4864, - "points_memory_in_bytes": 81509, - "stored_fields_memory_in_bytes": 852272, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1253730, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2363917816 - } - }, - "uuid": "PzgdSUOhQPmrtdhkxDPTpg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "QLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569943893630, - "index": "om-iu-suricata-2019.10.01-000120", - "primaries": { - "docs": { - "count": 361952 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1037962, - "index_total": 361952, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 10325350021 - }, - "query_cache": { - "evictions": 6, - "hit_count": 447, - "memory_size_in_bytes": 36791, - "miss_count": 1511 - }, - "refresh": { - "total_time_in_millis": 2751174 - }, - "request_cache": { - "evictions": 0, - "hit_count": 39, - "memory_size_in_bytes": 765, - "miss_count": 242 - }, - "search": { - "query_time_in_millis": 67694, - "query_total": 571 - }, - "segments": { - "count": 35, - "doc_values_memory_in_bytes": 134732, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1274689, - "norms_memory_in_bytes": 2240, - "points_memory_in_bytes": 47600, - "stored_fields_memory_in_bytes": 485288, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 604829, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1348950820 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 723904 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 242856 - }, - "indexing": { - "index_time_in_millis": 1917953, - "index_total": 723904, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 20385789351 - }, - "query_cache": { - "evictions": 10, - "hit_count": 3075, - "memory_size_in_bytes": 1288463, - "miss_count": 6151 - }, - "refresh": { - "total_time_in_millis": 5451979 - }, - "request_cache": { - "evictions": 0, - "hit_count": 142, - "memory_size_in_bytes": 7935706, - "miss_count": 868 - }, - "search": { - "query_time_in_millis": 227887, - "query_total": 1632 - }, - "segments": { - "count": 76, - "doc_values_memory_in_bytes": 273048, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2629313, - "norms_memory_in_bytes": 4864, - "points_memory_in_bytes": 95335, - "stored_fields_memory_in_bytes": 971616, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1284450, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2701323832 - } - }, - "uuid": "hIXPC_wZQsWZxt3AbNxlWg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "QbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1527108303525, - "index": ".watches", - "primaries": { - "docs": { - "count": 10 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1745781, - "index_total": 414600, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3424505531 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 7180704 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 3 - }, - "search": { - "query_time_in_millis": 45, - "query_total": 21 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 532, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 5098, - "norms_memory_in_bytes": 448, - "points_memory_in_bytes": 7, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 3799, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 77532 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 20 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3034873, - "index_total": 820956, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6692847427 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 14113886 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 7 - }, - "search": { - "query_time_in_millis": 86, - "query_total": 41 - }, - "segments": { - "count": 3, - "doc_values_memory_in_bytes": 1132, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 14286, - "norms_memory_in_bytes": 1280, - "points_memory_in_bytes": 18, - "stored_fields_memory_in_bytes": 936, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 10920, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 160964 - } - }, - "uuid": "_58LuSshRPCyqWUjCNyCVg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "QrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569111694859, - "index": "om-iu-bro-2019.09.22-000963", - "primaries": { - "docs": { - "count": 1345319215 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 638705656030 - }, - "query_cache": { - "evictions": 391, - "hit_count": 3995, - "memory_size_in_bytes": 131099427, - "miss_count": 22739 - }, - "refresh": { - "total_time_in_millis": 292 - }, - "request_cache": { - "evictions": 0, - "hit_count": 726, - "memory_size_in_bytes": 5944384, - "miss_count": 3324 - }, - "search": { - "query_time_in_millis": 3117988, - "query_total": 4454 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2030104, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1006548780, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115734027, - "stored_fields_memory_in_bytes": 361895752, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 526879681, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 936888874471 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2690638430 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1384489853459 - }, - "query_cache": { - "evictions": 703, - "hit_count": 7420, - "memory_size_in_bytes": 215592308, - "miss_count": 43230 - }, - "refresh": { - "total_time_in_millis": 537 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1355, - "memory_size_in_bytes": 10675522, - "miss_count": 6223 - }, - "search": { - "query_time_in_millis": 5752200, - "query_total": 8363 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4060208, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2013097560, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231468054, - "stored_fields_memory_in_bytes": 723791504, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1053759362, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1873777748942 - } - }, - "uuid": "NINDlRRPT-qeKzpK1CrATw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "Q7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569129092614, - "index": "om-iu-bro-2019.09.22-000964", - "primaries": { - "docs": { - "count": 1347152747 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 990396189360 - }, - "query_cache": { - "evictions": 513, - "hit_count": 5360, - "memory_size_in_bytes": 159615545, - "miss_count": 27850 - }, - "refresh": { - "total_time_in_millis": 306 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1048, - "memory_size_in_bytes": 8204954, - "miss_count": 4570 - }, - "search": { - "query_time_in_millis": 4012813, - "query_total": 6212 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1946936, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 990997739, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116879427, - "stored_fields_memory_in_bytes": 363848856, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 508313304, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 914409808820 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2694305494 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1507900646197 - }, - "query_cache": { - "evictions": 728, - "hit_count": 7830, - "memory_size_in_bytes": 215982609, - "miss_count": 42176 - }, - "refresh": { - "total_time_in_millis": 454 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1484, - "memory_size_in_bytes": 11426226, - "miss_count": 6693 - }, - "search": { - "query_time_in_millis": 5979576, - "query_total": 9051 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3893872, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1981995478, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 233758854, - "stored_fields_memory_in_bytes": 727697712, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1016626608, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1828819617640 - } - }, - "uuid": "oH-UuEzFQZGdzHdk0G1nZw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "RLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569508894125, - "index": "om-iu-suricata-2019.09.26-000115", - "primaries": { - "docs": { - "count": 395050 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 7, - "memory_size_in_bytes": 51069, - "miss_count": 56 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 541, - "memory_size_in_bytes": 372692, - "miss_count": 12 - }, - "search": { - "query_time_in_millis": 9037, - "query_total": 563 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 25600, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 890106, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 46046, - "stored_fields_memory_in_bytes": 590696, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 227636, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1498817127 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 790100 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 211, - "memory_size_in_bytes": 212195, - "miss_count": 368 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1507, - "memory_size_in_bytes": 1264268, - "miss_count": 192 - }, - "search": { - "query_time_in_millis": 23676, - "query_total": 1765 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 51200, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1780212, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 92092, - "stored_fields_memory_in_bytes": 1181392, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 455272, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2997634254 - } - }, - "uuid": "blAp4FLbSt23PLYEugLEmw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "RbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1534793310368, - "index": ".ml-anomalies-shared", - "primaries": { - "docs": { - "count": 1377162 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1737551, - "index_total": 352314, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 18546637173 - }, - "query_cache": { - "evictions": 48523, - "hit_count": 12778546, - "memory_size_in_bytes": 898901, - "miss_count": 275437 - }, - "refresh": { - "total_time_in_millis": 4777731 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3941415, - "memory_size_in_bytes": 15423, - "miss_count": 242659 - }, - "search": { - "query_time_in_millis": 3213968, - "query_total": 7599155 - }, - "segments": { - "count": 53, - "doc_values_memory_in_bytes": 97500, - "fixed_bit_set_memory_in_bytes": 189008, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 781063, - "norms_memory_in_bytes": 4736, - "points_memory_in_bytes": 63301, - "stored_fields_memory_in_bytes": 139112, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 476414, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 297395005 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2754324 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3214147, - "index_total": 654646, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 37083190011 - }, - "query_cache": { - "evictions": 96516, - "hit_count": 24402946, - "memory_size_in_bytes": 1947160, - "miss_count": 546029 - }, - "refresh": { - "total_time_in_millis": 9229949 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7547444, - "memory_size_in_bytes": 30834, - "miss_count": 462984 - }, - "search": { - "query_time_in_millis": 5980614, - "query_total": 14547021 - }, - "segments": { - "count": 87, - "doc_values_memory_in_bytes": 181804, - "fixed_bit_set_memory_in_bytes": 377000, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1493328, - "norms_memory_in_bytes": 8192, - "points_memory_in_bytes": 126171, - "stored_fields_memory_in_bytes": 271800, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 905361, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 603206123 - } - }, - "uuid": "qRr6vnoORDmRq2Xuk_AkSg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "RrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569553898003, - "index": "om-iu-bro-2019.09.27-000988", - "primaries": { - "docs": { - "count": 1328609679 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 859789228399 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 38499, - "miss_count": 607 - }, - "refresh": { - "total_time_in_millis": 209 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 388 - }, - "search": { - "query_time_in_millis": 976204, - "query_total": 466 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2044144, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1028470030, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113069150, - "stored_fields_memory_in_bytes": 367793144, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 545554376, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 937430119270 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2657219358 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1501676927550 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 154301, - "miss_count": 1217 - }, - "refresh": { - "total_time_in_millis": 353 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 786 - }, - "search": { - "query_time_in_millis": 2005308, - "query_total": 924 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4088288, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2056940060, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226138300, - "stored_fields_memory_in_bytes": 735586288, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1091108752, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1874860238540 - } - }, - "uuid": "b72v2fhVRb6n-Rt2O-RTGw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "R7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569571894171, - "index": "om-iu-bro-2019.09.27-000989", - "primaries": { - "docs": { - "count": 1324442820 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 974501829656 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 709124, - "miss_count": 1269 - }, - "refresh": { - "total_time_in_millis": 259 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 394 - }, - "search": { - "query_time_in_millis": 925985, - "query_total": 488 - }, - "segments": { - "count": 138, - "doc_values_memory_in_bytes": 3801634, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1032859551, - "norms_memory_in_bytes": 49792, - "points_memory_in_bytes": 117159428, - "stored_fields_memory_in_bytes": 361818032, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 550030665, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 912575288507 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2648885640 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1281569969668 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1253852, - "miss_count": 3093 - }, - "refresh": { - "total_time_in_millis": 336 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 786 - }, - "search": { - "query_time_in_millis": 1947152, - "query_total": 959 - }, - "segments": { - "count": 426, - "doc_values_memory_in_bytes": 9862204, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2144686453, - "norms_memory_in_bytes": 149440, - "points_memory_in_bytes": 238191092, - "stored_fields_memory_in_bytes": 727565000, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1168918717, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1836264681763 - } - }, - "uuid": "qp-gW8g6T_KGbchU0RkXfg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "SLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1560866842765, - "index": ".reporting-2019.06.16", - "primaries": { - "docs": { - "count": 8 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1696 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 150, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 1228936, - "query_total": 3691739 - }, - "segments": { - "count": 8, - "doc_values_memory_in_bytes": 544, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 30616, - "norms_memory_in_bytes": 1024, - "points_memory_in_bytes": 144, - "stored_fields_memory_in_bytes": 2496, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 26408, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 571435 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 16 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3392 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 3 - }, - "request_cache": { - "evictions": 0, - "hit_count": 184, - "memory_size_in_bytes": 6324, - "miss_count": 7 - }, - "search": { - "query_time_in_millis": 1605208, - "query_total": 4791147 - }, - "segments": { - "count": 16, - "doc_values_memory_in_bytes": 1088, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 61232, - "norms_memory_in_bytes": 2048, - "points_memory_in_bytes": 288, - "stored_fields_memory_in_bytes": 4992, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 52816, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1142870 - } - }, - "uuid": "vVlgEpENTn-y0fZsw7ZX7w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "SbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568769697103, - "index": "om-iu-bro-2019.09.18-000945", - "primaries": { - "docs": { - "count": 1339574891 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 970346786797 - }, - "query_cache": { - "evictions": 611, - "hit_count": 5991, - "memory_size_in_bytes": 196145184, - "miss_count": 55096 - }, - "refresh": { - "total_time_in_millis": 313 - }, - "request_cache": { - "evictions": 0, - "hit_count": 283, - "memory_size_in_bytes": 8856171, - "miss_count": 4988 - }, - "search": { - "query_time_in_millis": 4845674, - "query_total": 5765 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2049512, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1010524294, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116395191, - "stored_fields_memory_in_bytes": 358414272, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 533656103, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 941970181741 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2679149782 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1511906512837 - }, - "query_cache": { - "evictions": 910, - "hit_count": 9728, - "memory_size_in_bytes": 373926104, - "miss_count": 87313 - }, - "refresh": { - "total_time_in_millis": 447 - }, - "request_cache": { - "evictions": 0, - "hit_count": 456, - "memory_size_in_bytes": 14493586, - "miss_count": 8218 - }, - "search": { - "query_time_in_millis": 7638697, - "query_total": 9494 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4099024, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2021048588, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 232790382, - "stored_fields_memory_in_bytes": 716828544, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1067312206, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1883940363482 - } - }, - "uuid": "MMCAArqZTl-Df-gRcqTI8A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "SrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568787694170, - "index": "om-iu-bro-2019.09.18-000946", - "primaries": { - "docs": { - "count": 1340164415 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 801565763924 - }, - "query_cache": { - "evictions": 527, - "hit_count": 5680, - "memory_size_in_bytes": 251794123, - "miss_count": 65072 - }, - "refresh": { - "total_time_in_millis": 245 - }, - "request_cache": { - "evictions": 0, - "hit_count": 249, - "memory_size_in_bytes": 8433119, - "miss_count": 4788 - }, - "search": { - "query_time_in_millis": 4569130, - "query_total": 5522 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1983072, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1005765180, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115796196, - "stored_fields_memory_in_bytes": 364536288, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 523440408, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 932319371127 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2680328830 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1329385581322 - }, - "query_cache": { - "evictions": 848, - "hit_count": 9651, - "memory_size_in_bytes": 436264704, - "miss_count": 110496 - }, - "refresh": { - "total_time_in_millis": 438 - }, - "request_cache": { - "evictions": 0, - "hit_count": 410, - "memory_size_in_bytes": 13665202, - "miss_count": 7900 - }, - "search": { - "query_time_in_millis": 7716794, - "query_total": 9111 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3966144, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2011530360, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231592392, - "stored_fields_memory_in_bytes": 729072576, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1046880816, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1864638742254 - } - }, - "uuid": "yzaBfAjASWenkdnFj-jBlw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "S7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569180097039, - "index": "om-iu-bro-2019.09.22-000967", - "primaries": { - "docs": { - "count": 1316735249 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 640933859768 - }, - "query_cache": { - "evictions": 162, - "hit_count": 2083, - "memory_size_in_bytes": 91575882, - "miss_count": 18817 - }, - "refresh": { - "total_time_in_millis": 296 - }, - "request_cache": { - "evictions": 0, - "hit_count": 472, - "memory_size_in_bytes": 2946807, - "miss_count": 1891 - }, - "search": { - "query_time_in_millis": 2409034, - "query_total": 2637 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1985032, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 974461725, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114409004, - "stored_fields_memory_in_bytes": 355421832, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 502636641, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 925870697097 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2633470498 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1016241990023 - }, - "query_cache": { - "evictions": 249, - "hit_count": 3339, - "memory_size_in_bytes": 155894701, - "miss_count": 30380 - }, - "refresh": { - "total_time_in_millis": 417 - }, - "request_cache": { - "evictions": 0, - "hit_count": 800, - "memory_size_in_bytes": 4834778, - "miss_count": 3196 - }, - "search": { - "query_time_in_millis": 4106024, - "query_total": 4454 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3970064, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1948923450, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 228818008, - "stored_fields_memory_in_bytes": 710843664, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1005273282, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1851741394194 - } - }, - "uuid": "6Ziuvi20TAKglmouSXV2DQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "TLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1534793312279, - "index": ".ml-notifications", - "primaries": { - "docs": { - "count": 1577 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1459, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 2 - }, - "segments": { - "count": 6, - "doc_values_memory_in_bytes": 1656, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 13900, - "norms_memory_in_bytes": 384, - "points_memory_in_bytes": 37, - "stored_fields_memory_in_bytes": 1912, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 9911, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 504503 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 3154 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 4 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1459, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 2 - }, - "segments": { - "count": 12, - "doc_values_memory_in_bytes": 3240, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 27727, - "norms_memory_in_bytes": 768, - "points_memory_in_bytes": 73, - "stored_fields_memory_in_bytes": 3824, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 19822, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1004731 - } - }, - "uuid": "1Y7P_xpUQX-huF6gwCx6vw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "TbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568805695187, - "index": "om-iu-bro-2019.09.18-000947", - "primaries": { - "docs": { - "count": 1326245659 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 925358008177 - }, - "query_cache": { - "evictions": 473, - "hit_count": 5576, - "memory_size_in_bytes": 212860480, - "miss_count": 33021 - }, - "refresh": { - "total_time_in_millis": 228 - }, - "request_cache": { - "evictions": 0, - "hit_count": 372, - "memory_size_in_bytes": 8286960, - "miss_count": 4720 - }, - "search": { - "query_time_in_millis": 4098258, - "query_total": 5562 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1993152, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 995136534, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115651587, - "stored_fields_memory_in_bytes": 357663952, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 519818627, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 910668079462 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2652491318 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1643785564652 - }, - "query_cache": { - "evictions": 836, - "hit_count": 10038, - "memory_size_in_bytes": 397957167, - "miss_count": 61226 - }, - "refresh": { - "total_time_in_millis": 411 - }, - "request_cache": { - "evictions": 0, - "hit_count": 639, - "memory_size_in_bytes": 15172970, - "miss_count": 8671 - }, - "search": { - "query_time_in_millis": 7439585, - "query_total": 10176 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3986304, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1990273068, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231303174, - "stored_fields_memory_in_bytes": 715327904, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1039637254, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1821336158924 - } - }, - "uuid": "7TcNVBPwSxWMqtw22sRYag" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "TrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569160894969, - "index": "om-iu-suricata-2019.09.22-000111", - "primaries": { - "docs": { - "count": 240827 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1065802989 - }, - "query_cache": { - "evictions": 17, - "hit_count": 166, - "memory_size_in_bytes": 98920, - "miss_count": 276 - }, - "refresh": { - "total_time_in_millis": 12 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2046, - "memory_size_in_bytes": 723538, - "miss_count": 124 - }, - "search": { - "query_time_in_millis": 1994, - "query_total": 2220 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 22272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 556525, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 28242, - "stored_fields_memory_in_bytes": 353240, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 152643, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1055338150 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 481654 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1595042779 - }, - "query_cache": { - "evictions": 26, - "hit_count": 424, - "memory_size_in_bytes": 220679, - "miss_count": 658 - }, - "refresh": { - "total_time_in_millis": 20 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3614, - "memory_size_in_bytes": 1511641, - "miss_count": 321 - }, - "search": { - "query_time_in_millis": 6537, - "query_total": 4063 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 44544, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1113050, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 56484, - "stored_fields_memory_in_bytes": 706480, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 305286, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2110676300 - } - }, - "uuid": "jlwLzy6-RUeai0VxoNhtiw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "T7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569146490896, - "index": "om-iu-bro-2019.09.22-000965", - "primaries": { - "docs": { - "count": 1333016884 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 608678368670 - }, - "query_cache": { - "evictions": 255, - "hit_count": 2534, - "memory_size_in_bytes": 74154793, - "miss_count": 15238 - }, - "refresh": { - "total_time_in_millis": 195 - }, - "request_cache": { - "evictions": 0, - "hit_count": 559, - "memory_size_in_bytes": 3078545, - "miss_count": 2242 - }, - "search": { - "query_time_in_millis": 2429029, - "query_total": 3107 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1898520, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 965560536, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116553467, - "stored_fields_memory_in_bytes": 357789480, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 489309853, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 896594934485 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2666033768 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1221106170335 - }, - "query_cache": { - "evictions": 483, - "hit_count": 5033, - "memory_size_in_bytes": 176272982, - "miss_count": 29651 - }, - "refresh": { - "total_time_in_millis": 344 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1160, - "memory_size_in_bytes": 6496031, - "miss_count": 4508 - }, - "search": { - "query_time_in_millis": 4911761, - "query_total": 6262 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3797040, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1931121072, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 233106934, - "stored_fields_memory_in_bytes": 715578960, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 978619706, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1793189868970 - } - }, - "uuid": "WUN0oqxBRhOQVnXUPI1jaQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ULUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568822497100, - "index": "om-iu-bro-2019.09.18-000948", - "primaries": { - "docs": { - "count": 1333818334 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 747046292698 - }, - "query_cache": { - "evictions": 395, - "hit_count": 4613, - "memory_size_in_bytes": 102401505, - "miss_count": 17791 - }, - "refresh": { - "total_time_in_millis": 203 - }, - "request_cache": { - "evictions": 0, - "hit_count": 570, - "memory_size_in_bytes": 6543930, - "miss_count": 3793 - }, - "search": { - "query_time_in_millis": 3409224, - "query_total": 4746 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2064904, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1002533380, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115975087, - "stored_fields_memory_in_bytes": 359871496, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 524612677, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 930545203474 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2667636668 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 958597286295 - }, - "query_cache": { - "evictions": 474, - "hit_count": 5459, - "memory_size_in_bytes": 121029909, - "miss_count": 21720 - }, - "refresh": { - "total_time_in_millis": 264 - }, - "request_cache": { - "evictions": 0, - "hit_count": 732, - "memory_size_in_bytes": 7727708, - "miss_count": 4843 - }, - "search": { - "query_time_in_millis": 4346303, - "query_total": 6048 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4129808, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2005066760, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231950174, - "stored_fields_memory_in_bytes": 719742992, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1049225354, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1861090406948 - } - }, - "uuid": "8fa64tQhQRWfQQB9x3epRw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "UbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569163291892, - "index": "om-iu-bro-2019.09.22-000966", - "primaries": { - "docs": { - "count": 1325608047 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 845751503506 - }, - "query_cache": { - "evictions": 1329, - "hit_count": 10163, - "memory_size_in_bytes": 147588059, - "miss_count": 32397 - }, - "refresh": { - "total_time_in_millis": 291 - }, - "request_cache": { - "evictions": 0, - "hit_count": 777, - "memory_size_in_bytes": 3907510, - "miss_count": 2966 - }, - "search": { - "query_time_in_millis": 4110116, - "query_total": 4149 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1932488, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 988097972, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115179231, - "stored_fields_memory_in_bytes": 355325440, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 515651597, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 923929755403 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2651216094 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 950848563685 - }, - "query_cache": { - "evictions": 1491, - "hit_count": 11284, - "memory_size_in_bytes": 166113482, - "miss_count": 35989 - }, - "refresh": { - "total_time_in_millis": 310 - }, - "request_cache": { - "evictions": 0, - "hit_count": 869, - "memory_size_in_bytes": 4326622, - "miss_count": 3604 - }, - "search": { - "query_time_in_millis": 4984225, - "query_total": 4937 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3864976, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1976195944, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 230358462, - "stored_fields_memory_in_bytes": 710650880, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1031303194, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1847859510806 - } - }, - "uuid": "vm7upCm6SmSVPB07u8CY2g" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "UrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568840494503, - "index": "om-iu-bro-2019.09.18-000949", - "primaries": { - "docs": { - "count": 1303238951 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 585209736910 - }, - "query_cache": { - "evictions": 292, - "hit_count": 3072, - "memory_size_in_bytes": 81951512, - "miss_count": 12121 - }, - "refresh": { - "total_time_in_millis": 181 - }, - "request_cache": { - "evictions": 0, - "hit_count": 340, - "memory_size_in_bytes": 5400052, - "miss_count": 3154 - }, - "search": { - "query_time_in_millis": 2665281, - "query_total": 3805 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2035248, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 968094946, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114110938, - "stored_fields_memory_in_bytes": 350949432, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 500990112, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 917688974530 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2606477902 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 960003183563 - }, - "query_cache": { - "evictions": 588, - "hit_count": 5965, - "memory_size_in_bytes": 163554259, - "miss_count": 25620 - }, - "refresh": { - "total_time_in_millis": 330 - }, - "request_cache": { - "evictions": 0, - "hit_count": 665, - "memory_size_in_bytes": 10632209, - "miss_count": 6182 - }, - "search": { - "query_time_in_millis": 5138491, - "query_total": 7478 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4070496, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1936189892, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 228221876, - "stored_fields_memory_in_bytes": 701898864, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1001980224, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1835377949060 - } - }, - "uuid": "Obw21XLGSny-NsNJsv_v3g" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "U7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1543344509304, - "index": "alertmon-iu-data-feeds", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 704, - "miss_count": 1 - }, - "search": { - "query_time_in_millis": 390, - "query_total": 4245 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1398, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 12, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 626, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 6855 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 5, - "active_total": 6, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 5, - "total": 6, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 12 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 230, - "index_total": 90, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 389601 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1423 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 3703, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 1909, - "query_total": 23960 - }, - "segments": { - "count": 10, - "doc_values_memory_in_bytes": 680, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 6990, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 60, - "stored_fields_memory_in_bytes": 3120, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 3130, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 34649 - } - }, - "uuid": "QmfocOfERIaaT8YOzoUZkg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "VLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1567622179319, - "index": ".reporting-2019.09.01", - "primaries": { - "docs": { - "count": 1 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 88, - "index_total": 3, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 564 - }, - "request_cache": { - "evictions": 0, - "hit_count": 107, - "memory_size_in_bytes": 5336, - "miss_count": 6 - }, - "search": { - "query_time_in_millis": 431160, - "query_total": 2421855 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 68, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 3827, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 18, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 3301, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 980423 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 88, - "index_total": 3, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 565 - }, - "request_cache": { - "evictions": 0, - "hit_count": 141, - "memory_size_in_bytes": 7354, - "miss_count": 8 - }, - "search": { - "query_time_in_millis": 580932, - "query_total": 3474356 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 7654, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 36, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 6602, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1960846 - } - }, - "uuid": "3lOqhts0TOOJaqoX32RE8g" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "VbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1534793504411, - "index": ".ml-anomalies-custom-eb-bro-1", - "primaries": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 10 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5, - "memory_size_in_bytes": 5932, - "miss_count": 8 - }, - "search": { - "query_time_in_millis": 1, - "query_total": 13 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1310 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 30 - }, - "request_cache": { - "evictions": 0, - "hit_count": 8, - "memory_size_in_bytes": 10381, - "miss_count": 14 - }, - "search": { - "query_time_in_millis": 2, - "query_total": 22 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2620 - } - }, - "uuid": "RSyAScFVRg2XuhoFR8_hYA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "VrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568029892898, - "index": "om-iu-suricata-2019.09.09-000098", - "primaries": { - "docs": { - "count": 407544 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1588919634 - }, - "query_cache": { - "evictions": 161, - "hit_count": 1040, - "memory_size_in_bytes": 107844, - "miss_count": 2883 - }, - "refresh": { - "total_time_in_millis": 23 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5547, - "memory_size_in_bytes": 2126701, - "miss_count": 695 - }, - "search": { - "query_time_in_millis": 14660, - "query_total": 6662 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 21408, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 915557, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 47254, - "stored_fields_memory_in_bytes": 606872, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 239895, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1583216030 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 815088 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1588919634 - }, - "query_cache": { - "evictions": 172, - "hit_count": 1285, - "memory_size_in_bytes": 275168, - "miss_count": 3300 - }, - "refresh": { - "total_time_in_millis": 23 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7631, - "memory_size_in_bytes": 3106889, - "miss_count": 911 - }, - "search": { - "query_time_in_millis": 22268, - "query_total": 9060 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 42816, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1831114, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 94508, - "stored_fields_memory_in_bytes": 1213744, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 479790, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3166432060 - } - }, - "uuid": "luEp7Ab4REudw2OOIlcplQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "V7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1567681894296, - "index": "om-iu-suricata-2019.09.05-000094", - "primaries": { - "docs": { - "count": 386145 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 766638451 - }, - "query_cache": { - "evictions": 84, - "hit_count": 579, - "memory_size_in_bytes": 153170, - "miss_count": 1274 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4808, - "memory_size_in_bytes": 3262056, - "miss_count": 512 - }, - "search": { - "query_time_in_millis": 13012, - "query_total": 5666 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 23352, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 840334, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 45253, - "stored_fields_memory_in_bytes": 544072, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 227529, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1521777384 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 772290 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 766638451 - }, - "query_cache": { - "evictions": 84, - "hit_count": 689, - "memory_size_in_bytes": 231397, - "miss_count": 1427 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5498, - "memory_size_in_bytes": 3677041, - "miss_count": 603 - }, - "search": { - "query_time_in_millis": 24989, - "query_total": 6475 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 46704, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1680668, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 90506, - "stored_fields_memory_in_bytes": 1088144, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 455058, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3043554768 - } - }, - "uuid": "o6rdy7Z6SSCwUcnUiJAUSg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "WLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1527108361077, - "index": ".security-6", - "primaries": { - "docs": { - "count": 119 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 15580, - "index_total": 929, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 15072009 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 68036 - }, - "request_cache": { - "evictions": 0, - "hit_count": 261046, - "memory_size_in_bytes": 3040, - "miss_count": 3862 - }, - "search": { - "query_time_in_millis": 84183, - "query_total": 336895 - }, - "segments": { - "count": 5, - "doc_values_memory_in_bytes": 3332, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 39972, - "norms_memory_in_bytes": 2176, - "points_memory_in_bytes": 32, - "stored_fields_memory_in_bytes": 1568, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 32864, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 181548 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 3, - "active_total": 4, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 3, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 476 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 48476, - "index_total": 3367, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 54274652 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 217747 - }, - "request_cache": { - "evictions": 0, - "hit_count": 945766, - "memory_size_in_bytes": 12160, - "miss_count": 14047 - }, - "search": { - "query_time_in_millis": 329046, - "query_total": 1220344 - }, - "segments": { - "count": 20, - "doc_values_memory_in_bytes": 13328, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 159888, - "norms_memory_in_bytes": 8704, - "points_memory_in_bytes": 128, - "stored_fields_memory_in_bytes": 6272, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 131456, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 726175 - } - }, - "uuid": "JpNP7K75S2iQ0a5uYOVhGA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "WbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568604696675, - "index": "om-iu-bro-2019.09.16-000936", - "primaries": { - "docs": { - "count": 1323573503 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 804803529620 - }, - "query_cache": { - "evictions": 562, - "hit_count": 5563, - "memory_size_in_bytes": 202673747, - "miss_count": 58949 - }, - "refresh": { - "total_time_in_millis": 199 - }, - "request_cache": { - "evictions": 0, - "hit_count": 425, - "memory_size_in_bytes": 9002661, - "miss_count": 5474 - }, - "search": { - "query_time_in_millis": 7073262, - "query_total": 6490 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1938928, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 947204947, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115209406, - "stored_fields_memory_in_bytes": 357678136, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 472369261, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 889973489659 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2647147006 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1108427480694 - }, - "query_cache": { - "evictions": 757, - "hit_count": 7477, - "memory_size_in_bytes": 285520585, - "miss_count": 80367 - }, - "refresh": { - "total_time_in_millis": 275 - }, - "request_cache": { - "evictions": 0, - "hit_count": 563, - "memory_size_in_bytes": 12122924, - "miss_count": 7635 - }, - "search": { - "query_time_in_millis": 9831864, - "query_total": 9016 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3877856, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1894409894, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 230418812, - "stored_fields_memory_in_bytes": 715356272, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 944738522, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1779946979318 - } - }, - "uuid": "reQD7OZGQkCpi7TJIs8kpg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "WrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568586692826, - "index": "om-iu-bro-2019.09.15-000935", - "primaries": { - "docs": { - "count": 1339565643 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 963359907949 - }, - "query_cache": { - "evictions": 618, - "hit_count": 6668, - "memory_size_in_bytes": 205110129, - "miss_count": 76743 - }, - "refresh": { - "total_time_in_millis": 270 - }, - "request_cache": { - "evictions": 0, - "hit_count": 453, - "memory_size_in_bytes": 9731320, - "miss_count": 5886 - }, - "search": { - "query_time_in_millis": 7486282, - "query_total": 6976 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1997056, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 987422026, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115611318, - "stored_fields_memory_in_bytes": 363819792, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 505984644, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 936274578513 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2679131286 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1179105774048 - }, - "query_cache": { - "evictions": 1123, - "hit_count": 11827, - "memory_size_in_bytes": 353290947, - "miss_count": 131742 - }, - "refresh": { - "total_time_in_millis": 378 - }, - "request_cache": { - "evictions": 0, - "hit_count": 809, - "memory_size_in_bytes": 17521446, - "miss_count": 10413 - }, - "search": { - "query_time_in_millis": 12919784, - "query_total": 12296 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3994112, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1974844052, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231222636, - "stored_fields_memory_in_bytes": 727639584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1011969288, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1872549157026 - } - }, - "uuid": "7OHW5ccfQo6-f7wbIs7cSw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "W7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568568691480, - "index": "om-iu-bro-2019.09.15-000934", - "primaries": { - "docs": { - "count": 1335921509 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 752998120163 - }, - "query_cache": { - "evictions": 1005, - "hit_count": 10819, - "memory_size_in_bytes": 203974546, - "miss_count": 108743 - }, - "refresh": { - "total_time_in_millis": 187 - }, - "request_cache": { - "evictions": 0, - "hit_count": 756, - "memory_size_in_bytes": 15551598, - "miss_count": 8800 - }, - "search": { - "query_time_in_millis": 10065184, - "query_total": 10485 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1999144, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 967409428, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115521892, - "stored_fields_memory_in_bytes": 361644616, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 488234560, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 932704260525 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2671843018 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 967176330270 - }, - "query_cache": { - "evictions": 1234, - "hit_count": 13549, - "memory_size_in_bytes": 250604186, - "miss_count": 132120 - }, - "refresh": { - "total_time_in_millis": 272 - }, - "request_cache": { - "evictions": 0, - "hit_count": 957, - "memory_size_in_bytes": 19071156, - "miss_count": 11086 - }, - "search": { - "query_time_in_millis": 12629848, - "query_total": 13205 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3998288, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1934818856, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231043784, - "stored_fields_memory_in_bytes": 723289232, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 976469120, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1865408521050 - } - }, - "uuid": "pnj2sHjKSwWaUe3fccwRjg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "XLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1551284851124, - "index": ".reporting-2019.02.24", - "primaries": { - "docs": { - "count": 1 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 34, - "memory_size_in_bytes": 2018, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 150196, - "query_total": 1053795 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 68, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 3078, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 16, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2554, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 21174 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 3 - }, - "request_cache": { - "evictions": 0, - "hit_count": 94, - "memory_size_in_bytes": 6324, - "miss_count": 7 - }, - "search": { - "query_time_in_millis": 378887, - "query_total": 2790848 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 6156, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 32, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 5108, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 42348 - } - }, - "uuid": "3uTmzOXZQJKXwXVq-2f3-w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "XbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568508093535, - "index": "om-iu-bro-2019.09.15-000931", - "primaries": { - "docs": { - "count": 1317655749 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 403357208249 - }, - "query_cache": { - "evictions": 521, - "hit_count": 5239, - "memory_size_in_bytes": 165201964, - "miss_count": 54778 - }, - "refresh": { - "total_time_in_millis": 112 - }, - "request_cache": { - "evictions": 0, - "hit_count": 497, - "memory_size_in_bytes": 7180787, - "miss_count": 4339 - }, - "search": { - "query_time_in_millis": 5960240, - "query_total": 5397 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1964720, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 954790471, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114588824, - "stored_fields_memory_in_bytes": 355860576, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 482367135, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 888848404992 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2635311498 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 19737808 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 704612918671 - }, - "query_cache": { - "evictions": 1814, - "hit_count": 16636, - "memory_size_in_bytes": 256689512, - "miss_count": 172001 - }, - "refresh": { - "total_time_in_millis": 253 - }, - "request_cache": { - "evictions": 0, - "hit_count": 893, - "memory_size_in_bytes": 12910492, - "miss_count": 7947 - }, - "search": { - "query_time_in_millis": 11470332, - "query_total": 9889 - }, - "segments": { - "count": 66, - "doc_values_memory_in_bytes": 4332632, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1925743943, - "norms_memory_in_bytes": 25408, - "points_memory_in_bytes": 229921018, - "stored_fields_memory_in_bytes": 712331920, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 979132965, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1779650525815 - } - }, - "uuid": "a59ENjsoT2KslFCsZr0xTA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "XrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568951494427, - "index": "om-iu-bro-2019.09.20-000955", - "primaries": { - "docs": { - "count": 1321929628 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1227361340405 - }, - "query_cache": { - "evictions": 542, - "hit_count": 5411, - "memory_size_in_bytes": 211099481, - "miss_count": 24006 - }, - "refresh": { - "total_time_in_millis": 339 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1258, - "memory_size_in_bytes": 8594055, - "miss_count": 4745 - }, - "search": { - "query_time_in_millis": 4641365, - "query_total": 6642 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1994856, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1023991771, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114540870, - "stored_fields_memory_in_bytes": 359914360, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 547532469, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 933978950174 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2643859256 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1547819891163 - }, - "query_cache": { - "evictions": 670, - "hit_count": 6822, - "memory_size_in_bytes": 248106409, - "miss_count": 32556 - }, - "refresh": { - "total_time_in_millis": 431 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1533, - "memory_size_in_bytes": 10504192, - "miss_count": 6155 - }, - "search": { - "query_time_in_millis": 6114364, - "query_total": 8489 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3989712, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2047983542, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229081740, - "stored_fields_memory_in_bytes": 719828720, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1095064938, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1867957900348 - } - }, - "uuid": "l4J4bTBURb6Aza2Pudp1ow" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "X7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569042090498, - "index": "om-iu-bro-2019.09.21-000959", - "primaries": { - "docs": { - "count": 1354362934 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 958884750445 - }, - "query_cache": { - "evictions": 551, - "hit_count": 5776, - "memory_size_in_bytes": 161852926, - "miss_count": 27554 - }, - "refresh": { - "total_time_in_millis": 293 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1132, - "memory_size_in_bytes": 7857204, - "miss_count": 4528 - }, - "search": { - "query_time_in_millis": 4447281, - "query_total": 6298 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2034872, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1000392024, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116531985, - "stored_fields_memory_in_bytes": 364223224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 517592727, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 925778824050 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2708725868 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1066087399483 - }, - "query_cache": { - "evictions": 592, - "hit_count": 6155, - "memory_size_in_bytes": 171373007, - "miss_count": 30581 - }, - "refresh": { - "total_time_in_millis": 316 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1213, - "memory_size_in_bytes": 8422692, - "miss_count": 5230 - }, - "search": { - "query_time_in_millis": 5206341, - "query_total": 7146 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4069744, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2000784048, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 233063970, - "stored_fields_memory_in_bytes": 728446448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1035185454, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1851557648100 - } - }, - "uuid": "362V1dGnRRquypV2CJ86Og" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "YLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568663495682, - "index": "om-iu-bro-2019.09.16-000939", - "primaries": { - "docs": { - "count": 1333395739 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 325576418039 - }, - "query_cache": { - "evictions": 336, - "hit_count": 3234, - "memory_size_in_bytes": 102403174, - "miss_count": 40823 - }, - "refresh": { - "total_time_in_millis": 77 - }, - "request_cache": { - "evictions": 0, - "hit_count": 269, - "memory_size_in_bytes": 5162655, - "miss_count": 3059 - }, - "search": { - "query_time_in_millis": 3792553, - "query_total": 3630 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2062488, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1005325876, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116293754, - "stored_fields_memory_in_bytes": 357290320, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 529670098, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 944574478597 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2666791478 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 544790322204 - }, - "query_cache": { - "evictions": 955, - "hit_count": 9985, - "memory_size_in_bytes": 287810775, - "miss_count": 96074 - }, - "refresh": { - "total_time_in_millis": 124 - }, - "request_cache": { - "evictions": 0, - "hit_count": 869, - "memory_size_in_bytes": 15670632, - "miss_count": 8657 - }, - "search": { - "query_time_in_millis": 9406749, - "query_total": 10396 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4124976, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2010651752, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 232587508, - "stored_fields_memory_in_bytes": 714580640, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1059340196, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1889148957194 - } - }, - "uuid": "A7v4PqY_RgOQ3HOp82wuqQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "YbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569006095046, - "index": "om-iu-bro-2019.09.20-000958", - "primaries": { - "docs": { - "count": 1316058534 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 785192391064 - }, - "query_cache": { - "evictions": 388, - "hit_count": 3830, - "memory_size_in_bytes": 163793804, - "miss_count": 17041 - }, - "refresh": { - "total_time_in_millis": 221 - }, - "request_cache": { - "evictions": 0, - "hit_count": 840, - "memory_size_in_bytes": 5900610, - "miss_count": 3334 - }, - "search": { - "query_time_in_millis": 3837958, - "query_total": 4614 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2091688, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 992691446, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113351782, - "stored_fields_memory_in_bytes": 360663160, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 516575600, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 882018116545 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2632117068 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1074589931398 - }, - "query_cache": { - "evictions": 580, - "hit_count": 5728, - "memory_size_in_bytes": 207076297, - "miss_count": 24140 - }, - "refresh": { - "total_time_in_millis": 323 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1228, - "memory_size_in_bytes": 8616928, - "miss_count": 5138 - }, - "search": { - "query_time_in_millis": 5563201, - "query_total": 7038 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4183376, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1985382892, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226703564, - "stored_fields_memory_in_bytes": 721326320, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1033151200, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1764036233090 - } - }, - "uuid": "f4sRCPjjSpSWOc5gsXiSXQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "YrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568626295397, - "index": "om-iu-bro-2019.09.16-000937", - "primaries": { - "docs": { - "count": 1305133550 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 722694790790 - }, - "query_cache": { - "evictions": 545, - "hit_count": 5430, - "memory_size_in_bytes": 163963573, - "miss_count": 69832 - }, - "refresh": { - "total_time_in_millis": 184 - }, - "request_cache": { - "evictions": 0, - "hit_count": 444, - "memory_size_in_bytes": 8741340, - "miss_count": 5224 - }, - "search": { - "query_time_in_millis": 6040081, - "query_total": 6255 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2050776, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 950788584, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113448340, - "stored_fields_memory_in_bytes": 350611944, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 484668308, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 903512641938 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2610267100 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 878750471771 - }, - "query_cache": { - "evictions": 882, - "hit_count": 9053, - "memory_size_in_bytes": 263971475, - "miss_count": 101668 - }, - "refresh": { - "total_time_in_millis": 260 - }, - "request_cache": { - "evictions": 0, - "hit_count": 720, - "memory_size_in_bytes": 14152468, - "miss_count": 8452 - }, - "search": { - "query_time_in_millis": 9238425, - "query_total": 10080 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4101552, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1901577168, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226896680, - "stored_fields_memory_in_bytes": 701223888, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 969336616, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1807025283876 - } - }, - "uuid": "eMSjW-sPRcKax-k7N7sENA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "Y7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568986895153, - "index": "om-iu-bro-2019.09.20-000957", - "primaries": { - "docs": { - "count": 1309715947 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 881807985713 - }, - "query_cache": { - "evictions": 506, - "hit_count": 4825, - "memory_size_in_bytes": 182946524, - "miss_count": 17277 - }, - "refresh": { - "total_time_in_millis": 340 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1115, - "memory_size_in_bytes": 7952623, - "miss_count": 4363 - }, - "search": { - "query_time_in_millis": 4191172, - "query_total": 6058 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1999096, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1009970031, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114152092, - "stored_fields_memory_in_bytes": 353619680, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 540189947, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 914136558275 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2619431894 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1135371692204 - }, - "query_cache": { - "evictions": 629, - "hit_count": 6101, - "memory_size_in_bytes": 219000523, - "miss_count": 23121 - }, - "refresh": { - "total_time_in_millis": 479 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1389, - "memory_size_in_bytes": 9900750, - "miss_count": 5766 - }, - "search": { - "query_time_in_millis": 5575393, - "query_total": 7905 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3998192, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2019940062, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 228304184, - "stored_fields_memory_in_bytes": 707239360, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1080379894, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1828273116550 - } - }, - "uuid": "Fgk7S5G4QAqxts0YwdZWnQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ZLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568969499467, - "index": "om-iu-bro-2019.09.20-000956", - "primaries": { - "docs": { - "count": 1306202009 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 670942045386 - }, - "query_cache": { - "evictions": 346, - "hit_count": 3786, - "memory_size_in_bytes": 82077849, - "miss_count": 18726 - }, - "refresh": { - "total_time_in_millis": 368 - }, - "request_cache": { - "evictions": 0, - "hit_count": 678, - "memory_size_in_bytes": 4892511, - "miss_count": 3061 - }, - "search": { - "query_time_in_millis": 3015033, - "query_total": 4148 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1954280, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1024592643, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113268856, - "stored_fields_memory_in_bytes": 355125224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 554235067, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 904983344740 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2612404018 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 878118507948 - }, - "query_cache": { - "evictions": 482, - "hit_count": 5298, - "memory_size_in_bytes": 118606950, - "miss_count": 26166 - }, - "refresh": { - "total_time_in_millis": 419 - }, - "request_cache": { - "evictions": 0, - "hit_count": 952, - "memory_size_in_bytes": 6783962, - "miss_count": 4472 - }, - "search": { - "query_time_in_millis": 4673104, - "query_total": 6001 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3908560, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2049185286, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226537712, - "stored_fields_memory_in_bytes": 710250448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1108470134, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1809966689480 - } - }, - "uuid": "nW3yYw8BSSGDaU70Kf1CsQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ZbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568645492415, - "index": "om-iu-bro-2019.09.16-000938", - "primaries": { - "docs": { - "count": 1337207245 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 537964431269 - }, - "query_cache": { - "evictions": 556, - "hit_count": 5261, - "memory_size_in_bytes": 157949985, - "miss_count": 44003 - }, - "refresh": { - "total_time_in_millis": 444 - }, - "request_cache": { - "evictions": 0, - "hit_count": 386, - "memory_size_in_bytes": 7316948, - "miss_count": 4196 - }, - "search": { - "query_time_in_millis": 4215483, - "query_total": 4991 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2074704, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 992678823, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116756788, - "stored_fields_memory_in_bytes": 358310768, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 515527347, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 945617198692 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2674414490 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 862018724426 - }, - "query_cache": { - "evictions": 883, - "hit_count": 8605, - "memory_size_in_bytes": 223241246, - "miss_count": 79537 - }, - "refresh": { - "total_time_in_millis": 631 - }, - "request_cache": { - "evictions": 0, - "hit_count": 604, - "memory_size_in_bytes": 12343915, - "miss_count": 7239 - }, - "search": { - "query_time_in_millis": 7547013, - "query_total": 8529 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4149408, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1985357646, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 233513576, - "stored_fields_memory_in_bytes": 716621536, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1031054694, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1891234397384 - } - }, - "uuid": "LBU5qWVwTfqJrjy22oKkCg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ZrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1557777743743, - "index": ".reporting-2019.05.12", - "primaries": { - "docs": { - "count": 22 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1840 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 5 - }, - "request_cache": { - "evictions": 0, - "hit_count": 131, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 1113705, - "query_total": 3617800 - }, - "segments": { - "count": 7, - "doc_values_memory_in_bytes": 1196, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 27048, - "norms_memory_in_bytes": 896, - "points_memory_in_bytes": 123, - "stored_fields_memory_in_bytes": 2224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 22609, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1054032 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 44 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3680 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 12 - }, - "request_cache": { - "evictions": 0, - "hit_count": 171, - "memory_size_in_bytes": 6324, - "miss_count": 7 - }, - "search": { - "query_time_in_millis": 1624560, - "query_total": 4717186 - }, - "segments": { - "count": 14, - "doc_values_memory_in_bytes": 2392, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 54096, - "norms_memory_in_bytes": 1792, - "points_memory_in_bytes": 246, - "stored_fields_memory_in_bytes": 4448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 45218, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2108064 - } - }, - "uuid": "DJdHC2K_ToyxJFAMizH2cA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "Z7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1535654933723, - "index": "eb-bro-sensor-stats", - "primaries": { - "docs": { - "count": 13493933 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 45 - }, - "refresh": { - "total_time_in_millis": 20 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7, - "memory_size_in_bytes": 7315, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 414, - "query_total": 17 - }, - "segments": { - "count": 81, - "doc_values_memory_in_bytes": 49556, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2971156, - "norms_memory_in_bytes": 15552, - "points_memory_in_bytes": 288462, - "stored_fields_memory_in_bytes": 434992, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2182594, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1193256243 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 26987866 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 89 - }, - "refresh": { - "total_time_in_millis": 43 - }, - "request_cache": { - "evictions": 0, - "hit_count": 13, - "memory_size_in_bytes": 14630, - "miss_count": 20 - }, - "search": { - "query_time_in_millis": 879, - "query_total": 33 - }, - "segments": { - "count": 162, - "doc_values_memory_in_bytes": 99112, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 5942312, - "norms_memory_in_bytes": 31104, - "points_memory_in_bytes": 576924, - "stored_fields_memory_in_bytes": 869984, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 4365188, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2386512494 - } - }, - "uuid": "nMzZfQZdS7WfnalQo1KoQg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "aLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1534858865620, - "index": "om-iu-agg-bro-sensor-epm", - "primaries": { - "docs": { - "count": 378669 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 5 - }, - "refresh": { - "total_time_in_millis": 48 - }, - "request_cache": { - "evictions": 0, - "hit_count": 21, - "memory_size_in_bytes": 7365, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 93, - "query_total": 31 - }, - "segments": { - "count": 22, - "doc_values_memory_in_bytes": 12928, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 112619, - "norms_memory_in_bytes": 1408, - "points_memory_in_bytes": 6518, - "stored_fields_memory_in_bytes": 17208, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 74557, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 26542312 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 757338 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 9 - }, - "refresh": { - "total_time_in_millis": 57 - }, - "request_cache": { - "evictions": 0, - "hit_count": 38, - "memory_size_in_bytes": 13257, - "miss_count": 18 - }, - "search": { - "query_time_in_millis": 159, - "query_total": 56 - }, - "segments": { - "count": 44, - "doc_values_memory_in_bytes": 25856, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 225238, - "norms_memory_in_bytes": 2816, - "points_memory_in_bytes": 13036, - "stored_fields_memory_in_bytes": 34416, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 149114, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 53084624 - } - }, - "uuid": "A6dV09VtTyKMiccxkLy3WQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "abUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569078092418, - "index": "om-iu-bro-2019.09.21-000961", - "primaries": { - "docs": { - "count": 1315423344 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 813763539365 - }, - "query_cache": { - "evictions": 450, - "hit_count": 4455, - "memory_size_in_bytes": 137105242, - "miss_count": 27594 - }, - "refresh": { - "total_time_in_millis": 202 - }, - "request_cache": { - "evictions": 0, - "hit_count": 857, - "memory_size_in_bytes": 7070235, - "miss_count": 3964 - }, - "search": { - "query_time_in_millis": 3476971, - "query_total": 5330 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1952120, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 967437387, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113091459, - "stored_fields_memory_in_bytes": 354039720, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 498344872, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 899771984078 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2630846688 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1320222976865 - }, - "query_cache": { - "evictions": 686, - "hit_count": 6978, - "memory_size_in_bytes": 201013647, - "miss_count": 42668 - }, - "refresh": { - "total_time_in_millis": 340 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1326, - "memory_size_in_bytes": 10721681, - "miss_count": 6225 - }, - "search": { - "query_time_in_millis": 5655412, - "query_total": 8345 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3904240, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1934874774, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226182918, - "stored_fields_memory_in_bytes": 708079440, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 996689744, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1799543968156 - } - }, - "uuid": "miO7ltn-RvWv82hh2r_8IA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "arUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1535114506460, - "index": "om-iu-agg-bro-sensor-eps", - "primaries": { - "docs": { - "count": 1553678 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 8 - }, - "refresh": { - "total_time_in_millis": 14 - }, - "request_cache": { - "evictions": 0, - "hit_count": 18, - "memory_size_in_bytes": 5892, - "miss_count": 8 - }, - "search": { - "query_time_in_millis": 79, - "query_total": 26 - }, - "segments": { - "count": 46, - "doc_values_memory_in_bytes": 36928, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 409671, - "norms_memory_in_bytes": 2944, - "points_memory_in_bytes": 34511, - "stored_fields_memory_in_bytes": 61224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 274064, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 127084533 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 3107356 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 18 - }, - "refresh": { - "total_time_in_millis": 24 - }, - "request_cache": { - "evictions": 0, - "hit_count": 38, - "memory_size_in_bytes": 13257, - "miss_count": 18 - }, - "search": { - "query_time_in_millis": 214, - "query_total": 56 - }, - "segments": { - "count": 92, - "doc_values_memory_in_bytes": 73856, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 819342, - "norms_memory_in_bytes": 5888, - "points_memory_in_bytes": 69022, - "stored_fields_memory_in_bytes": 122448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 548128, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 254169066 - } - }, - "uuid": "Rv8zod-XS7m_eAabUyOGbg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "a7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569060693096, - "index": "om-iu-bro-2019.09.21-000960", - "primaries": { - "docs": { - "count": 1307942138 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 989537166626 - }, - "query_cache": { - "evictions": 1015, - "hit_count": 7881, - "memory_size_in_bytes": 145422591, - "miss_count": 33303 - }, - "refresh": { - "total_time_in_millis": 372 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1005, - "memory_size_in_bytes": 7594866, - "miss_count": 4615 - }, - "search": { - "query_time_in_millis": 3633503, - "query_total": 6226 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1982664, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 951106548, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 112722131, - "stored_fields_memory_in_bytes": 352298768, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 484093769, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 880834906967 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2615884276 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1186818841469 - }, - "query_cache": { - "evictions": 1228, - "hit_count": 9575, - "memory_size_in_bytes": 181824011, - "miss_count": 40710 - }, - "refresh": { - "total_time_in_millis": 427 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1199, - "memory_size_in_bytes": 9140338, - "miss_count": 5863 - }, - "search": { - "query_time_in_millis": 4827513, - "query_total": 7804 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3965328, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1902213096, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 225444262, - "stored_fields_memory_in_bytes": 704597536, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 968187538, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1761669813934 - } - }, - "uuid": "9Wwtq6pWT_i31IVAZ9AXqQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "bLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569094892382, - "index": "om-iu-bro-2019.09.21-000962", - "primaries": { - "docs": { - "count": 1307462540 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 624415914605 - }, - "query_cache": { - "evictions": 376, - "hit_count": 3752, - "memory_size_in_bytes": 109405707, - "miss_count": 22289 - }, - "refresh": { - "total_time_in_millis": 162 - }, - "request_cache": { - "evictions": 0, - "hit_count": 726, - "memory_size_in_bytes": 5946072, - "miss_count": 3339 - }, - "search": { - "query_time_in_millis": 2865137, - "query_total": 4467 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1972208, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 969668191, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113072032, - "stored_fields_memory_in_bytes": 351362632, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 503252103, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 911710664091 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2614925080 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1194972007051 - }, - "query_cache": { - "evictions": 680, - "hit_count": 7001, - "memory_size_in_bytes": 200581525, - "miss_count": 40886 - }, - "refresh": { - "total_time_in_millis": 318 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1307, - "memory_size_in_bytes": 10533456, - "miss_count": 6053 - }, - "search": { - "query_time_in_millis": 5337942, - "query_total": 8105 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3944416, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1939336382, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226144064, - "stored_fields_memory_in_bytes": 702725264, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1006504206, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1823421328182 - } - }, - "uuid": "jpTbmrODRW6Hr_KaDsF2wg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "bbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568751698576, - "index": "om-iu-bro-2019.09.17-000944", - "primaries": { - "docs": { - "count": 1324388062 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 862759320736 - }, - "query_cache": { - "evictions": 497, - "hit_count": 5068, - "memory_size_in_bytes": 157333519, - "miss_count": 61511 - }, - "refresh": { - "total_time_in_millis": 257 - }, - "request_cache": { - "evictions": 0, - "hit_count": 291, - "memory_size_in_bytes": 8679966, - "miss_count": 4750 - }, - "search": { - "query_time_in_millis": 4635240, - "query_total": 5538 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2039096, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1015823536, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115764134, - "stored_fields_memory_in_bytes": 354822120, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 543188970, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 940725954219 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2648776124 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1401531817197 - }, - "query_cache": { - "evictions": 857, - "hit_count": 8632, - "memory_size_in_bytes": 268146023, - "miss_count": 139908 - }, - "refresh": { - "total_time_in_millis": 405 - }, - "request_cache": { - "evictions": 0, - "hit_count": 558, - "memory_size_in_bytes": 14463490, - "miss_count": 8143 - }, - "search": { - "query_time_in_millis": 8554553, - "query_total": 9546 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4078192, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2031647072, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231528268, - "stored_fields_memory_in_bytes": 709644240, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1086377940, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1881451908438 - } - }, - "uuid": "QPO9-9U_S-GuD3DbKUEvxg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "brUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568734297637, - "index": "om-iu-bro-2019.09.17-000943", - "primaries": { - "docs": { - "count": 1304593322 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 838795038545 - }, - "query_cache": { - "evictions": 664, - "hit_count": 7147, - "memory_size_in_bytes": 217389973, - "miss_count": 47413 - }, - "refresh": { - "total_time_in_millis": 292 - }, - "request_cache": { - "evictions": 0, - "hit_count": 372, - "memory_size_in_bytes": 11685928, - "miss_count": 6125 - }, - "search": { - "query_time_in_millis": 5741376, - "query_total": 7140 - }, - "segments": { - "count": 73, - "doc_values_memory_in_bytes": 2712358, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1011251699, - "norms_memory_in_bytes": 24896, - "points_memory_in_bytes": 115861001, - "stored_fields_memory_in_bytes": 351891464, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 540761980, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 921546166025 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2609186644 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1254625268671 - }, - "query_cache": { - "evictions": 1066, - "hit_count": 10686, - "memory_size_in_bytes": 353657264, - "miss_count": 81440 - }, - "refresh": { - "total_time_in_millis": 424 - }, - "request_cache": { - "evictions": 0, - "hit_count": 588, - "memory_size_in_bytes": 18138805, - "miss_count": 9820 - }, - "search": { - "query_time_in_millis": 9671083, - "query_total": 11423 - }, - "segments": { - "count": 116, - "doc_values_memory_in_bytes": 5085866, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2005414350, - "norms_memory_in_bytes": 43584, - "points_memory_in_bytes": 230827475, - "stored_fields_memory_in_bytes": 703018512, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1066438913, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1840386511625 - } - }, - "uuid": "w1mOiysHQ2iq1XUyh-TiYQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "b7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568717493311, - "index": "om-iu-bro-2019.09.17-000942", - "primaries": { - "docs": { - "count": 1308337260 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 27739592 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 409440398181 - }, - "query_cache": { - "evictions": 1067, - "hit_count": 11095, - "memory_size_in_bytes": 161260716, - "miss_count": 70510 - }, - "refresh": { - "total_time_in_millis": 185 - }, - "request_cache": { - "evictions": 0, - "hit_count": 315, - "memory_size_in_bytes": 7816312, - "miss_count": 4448 - }, - "search": { - "query_time_in_millis": 5262851, - "query_total": 5184 - }, - "segments": { - "count": 193, - "doc_values_memory_in_bytes": 4430540, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1046593198, - "norms_memory_in_bytes": 52480, - "points_memory_in_bytes": 117750271, - "stored_fields_memory_in_bytes": 355029520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 569330387, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 906468630476 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2616674520 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 56132016 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 917120262184 - }, - "query_cache": { - "evictions": 1960, - "hit_count": 20425, - "memory_size_in_bytes": 299110990, - "miss_count": 131802 - }, - "refresh": { - "total_time_in_millis": 430 - }, - "request_cache": { - "evictions": 0, - "hit_count": 602, - "memory_size_in_bytes": 14350733, - "miss_count": 8241 - }, - "search": { - "query_time_in_millis": 9817207, - "query_total": 9638 - }, - "segments": { - "count": 346, - "doc_values_memory_in_bytes": 8267432, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2076965710, - "norms_memory_in_bytes": 94272, - "points_memory_in_bytes": 234800221, - "stored_fields_memory_in_bytes": 709545304, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1124258481, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1811375521159 - } - }, - "uuid": "FGLmsUiTR3Gf7wenvSn4ig" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "cLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568699497882, - "index": "om-iu-bro-2019.09.17-000941", - "primaries": { - "docs": { - "count": 1330122504 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 232390840 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 5599, - "hit_count": 57070, - "memory_size_in_bytes": 173105623, - "miss_count": 372839 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 403, - "memory_size_in_bytes": 9975932, - "miss_count": 5522 - }, - "search": { - "query_time_in_millis": 7136714, - "query_total": 6466 - }, - "segments": { - "count": 597, - "doc_values_memory_in_bytes": 9486716, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1308950032, - "norms_memory_in_bytes": 165248, - "points_memory_in_bytes": 132083621, - "stored_fields_memory_in_bytes": 378300128, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 788914319, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 976792567911 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2660245008 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 350157880 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 8381, - "hit_count": 87177, - "memory_size_in_bytes": 271949423, - "miss_count": 545332 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 664, - "memory_size_in_bytes": 15136073, - "miss_count": 8559 - }, - "search": { - "query_time_in_millis": 11261202, - "query_total": 10062 - }, - "segments": { - "count": 1194, - "doc_values_memory_in_bytes": 18973432, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2617900064, - "norms_memory_in_bytes": 330496, - "points_memory_in_bytes": 264167242, - "stored_fields_memory_in_bytes": 756600256, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1577828638, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1953585135822 - } - }, - "uuid": "heY-fu4nS1SmuAJzd10sCA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "cbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1534867405490, - "index": "om-iu-agg-bro-stream-epm", - "primaries": { - "docs": { - "count": 16900 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 53 - }, - "request_cache": { - "evictions": 0, - "hit_count": 21, - "memory_size_in_bytes": 7365, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 3, - "query_total": 31 - }, - "segments": { - "count": 34, - "doc_values_memory_in_bytes": 2704, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 43732, - "norms_memory_in_bytes": 2176, - "points_memory_in_bytes": 481, - "stored_fields_memory_in_bytes": 10752, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 27619, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1399267 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 33800 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 75 - }, - "request_cache": { - "evictions": 0, - "hit_count": 37, - "memory_size_in_bytes": 13257, - "miss_count": 18 - }, - "search": { - "query_time_in_millis": 11, - "query_total": 55 - }, - "segments": { - "count": 68, - "doc_values_memory_in_bytes": 5408, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 87464, - "norms_memory_in_bytes": 4352, - "points_memory_in_bytes": 962, - "stored_fields_memory_in_bytes": 21504, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 55238, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2798534 - } - }, - "uuid": "Fa_G5aNpR0ym9vpT0B_Pxg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "crUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1559239027386, - "index": ".reporting-2019.05.26", - "primaries": { - "docs": { - "count": 1 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 3 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 1835, - "query_total": 14068 - }, - "segments": { - "count": 1, - "doc_values_memory_in_bytes": 68, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 3827, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 18, - "stored_fields_memory_in_bytes": 312, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 3301, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 33579 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 22 - }, - "request_cache": { - "evictions": 0, - "hit_count": 137, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 472267, - "query_total": 3549780 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 7654, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 36, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 6602, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 67158 - } - }, - "uuid": "aCBOgvgjS_mazemiACbQhQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "c7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569214292104, - "index": "om-iu-bro-2019.09.23-000969", - "primaries": { - "docs": { - "count": 1337809198 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 677830943802 - }, - "query_cache": { - "evictions": 151, - "hit_count": 1711, - "memory_size_in_bytes": 130585011, - "miss_count": 14909 - }, - "refresh": { - "total_time_in_millis": 517 - }, - "request_cache": { - "evictions": 0, - "hit_count": 712, - "memory_size_in_bytes": 2884842, - "miss_count": 1686 - }, - "search": { - "query_time_in_millis": 2607497, - "query_total": 2634 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1905432, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1001403641, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115591412, - "stored_fields_memory_in_bytes": 360285472, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 523612109, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 911878034008 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2675618396 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 938387137947 - }, - "query_cache": { - "evictions": 196, - "hit_count": 2439, - "memory_size_in_bytes": 158605396, - "miss_count": 21097 - }, - "refresh": { - "total_time_in_millis": 594 - }, - "request_cache": { - "evictions": 0, - "hit_count": 853, - "memory_size_in_bytes": 3902711, - "miss_count": 2622 - }, - "search": { - "query_time_in_millis": 3861901, - "query_total": 3795 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3810864, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2002807282, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231182824, - "stored_fields_memory_in_bytes": 720570944, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1047224218, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1823756068016 - } - }, - "uuid": "rrXhrt2XQRiU3ycB2DFcYQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "dLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569197492685, - "index": "om-iu-bro-2019.09.23-000968", - "primaries": { - "docs": { - "count": 1304571869 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 837855284221 - }, - "query_cache": { - "evictions": 153, - "hit_count": 2083, - "memory_size_in_bytes": 136373933, - "miss_count": 19559 - }, - "refresh": { - "total_time_in_millis": 202 - }, - "request_cache": { - "evictions": 0, - "hit_count": 648, - "memory_size_in_bytes": 3460947, - "miss_count": 1959 - }, - "search": { - "query_time_in_millis": 2757466, - "query_total": 2856 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1944488, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 983594595, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113250865, - "stored_fields_memory_in_bytes": 352244608, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 516145418, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 917772389456 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2609143738 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1524689377556 - }, - "query_cache": { - "evictions": 294, - "hit_count": 3965, - "memory_size_in_bytes": 245356178, - "miss_count": 37541 - }, - "refresh": { - "total_time_in_millis": 388 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1159, - "memory_size_in_bytes": 6423262, - "miss_count": 3765 - }, - "search": { - "query_time_in_millis": 5003310, - "query_total": 5390 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3888976, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1967189190, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226501730, - "stored_fields_memory_in_bytes": 704489216, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1032290836, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1835544778912 - } - }, - "uuid": "_-XX7a9ETeGVAEQxH4lErg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "dbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1541616542151, - "index": "alertmon-iu-suricata-new-sids", - "primaries": { - "docs": { - "count": 1322 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 57 - }, - "request_cache": { - "evictions": 0, - "hit_count": 6, - "memory_size_in_bytes": 7415, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 1, - "query_total": 16 - }, - "segments": { - "count": 28, - "doc_values_memory_in_bytes": 29208, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 112732, - "norms_memory_in_bytes": 7168, - "points_memory_in_bytes": 177, - "stored_fields_memory_in_bytes": 8744, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 67435, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 727167 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2644 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 72 - }, - "request_cache": { - "evictions": 0, - "hit_count": 9, - "memory_size_in_bytes": 10381, - "miss_count": 14 - }, - "search": { - "query_time_in_millis": 1, - "query_total": 23 - }, - "segments": { - "count": 56, - "doc_values_memory_in_bytes": 58416, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 225464, - "norms_memory_in_bytes": 14336, - "points_memory_in_bytes": 354, - "stored_fields_memory_in_bytes": 17488, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 134870, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1454334 - } - }, - "uuid": "OjU3-v2FTim2f8lE2PRuuQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "drUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1535461185453, - "index": ".ml-state", - "primaries": { - "docs": { - "count": 2285 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 214267, - "index_total": 758, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2505938469 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 124169 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 11 - }, - "search": { - "query_time_in_millis": 514, - "query_total": 19 - }, - "segments": { - "count": 110, - "doc_values_memory_in_bytes": 19960, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 97393, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 110, - "stored_fields_memory_in_bytes": 41144, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 36179, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 7293316752 - } - }, - "shards": { - "active_primaries": 5, - "active_replicas": 5, - "active_total": 10, - "initializing": 0, - "primaries": 5, - "relocating": 0, - "replicas": 1, - "total": 10, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4570 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 433249, - "index_total": 1443, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 5118678696 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 228221 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3, - "memory_size_in_bytes": 0, - "miss_count": 22 - }, - "search": { - "query_time_in_millis": 1414, - "query_total": 43 - }, - "segments": { - "count": 220, - "doc_values_memory_in_bytes": 39920, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 194786, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 220, - "stored_fields_memory_in_bytes": 82288, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 72358, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 14586633333 - } - }, - "uuid": "o-Oly5RtTVSzi-6GKvuGFQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "d7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568681502789, - "index": "om-iu-bro-2019.09.17-000940", - "primaries": { - "docs": { - "count": 1321842490 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 959174129481 - }, - "query_cache": { - "evictions": 651, - "hit_count": 7036, - "memory_size_in_bytes": 173807744, - "miss_count": 69463 - }, - "refresh": { - "total_time_in_millis": 208 - }, - "request_cache": { - "evictions": 0, - "hit_count": 526, - "memory_size_in_bytes": 9843018, - "miss_count": 5494 - }, - "search": { - "query_time_in_millis": 6509702, - "query_total": 6600 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2077176, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 993037127, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114877260, - "stored_fields_memory_in_bytes": 354018760, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 522054715, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 934997408463 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2643684980 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1228123218713 - }, - "query_cache": { - "evictions": 870, - "hit_count": 9375, - "memory_size_in_bytes": 275298188, - "miss_count": 96150 - }, - "refresh": { - "total_time_in_millis": 276 - }, - "request_cache": { - "evictions": 0, - "hit_count": 723, - "memory_size_in_bytes": 13389156, - "miss_count": 7717 - }, - "search": { - "query_time_in_millis": 9025648, - "query_total": 9231 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4154352, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1986074254, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229754520, - "stored_fields_memory_in_bytes": 708037520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1044109430, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1869994816926 - } - }, - "uuid": "L32FJ8wbR46U3XpAI1VPdQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "eLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569396692837, - "index": "om-iu-bro-2019.09.25-000979", - "primaries": { - "docs": { - "count": 1315711570 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 464606482462 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 433 - }, - "refresh": { - "total_time_in_millis": 169 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 382 - }, - "search": { - "query_time_in_millis": 493880, - "query_total": 400 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1952280, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 987797938, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113089941, - "stored_fields_memory_in_bytes": 363277136, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 509469365, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 906251867841 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2631423140 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 929644937540 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 876 - }, - "refresh": { - "total_time_in_millis": 319 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 772 - }, - "search": { - "query_time_in_millis": 1009118, - "query_total": 808 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3904560, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1975595876, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 226179882, - "stored_fields_memory_in_bytes": 726554272, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1018938730, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1812503735682 - } - }, - "uuid": "9_A2qWiaTWuCentyBiQGhg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ebUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568725891555, - "index": "om-iu-suricata-2019.09.17-000106", - "primaries": { - "docs": { - "count": 300293 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 100, - "memory_size_in_bytes": 61162, - "miss_count": 166 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 743, - "memory_size_in_bytes": 445593, - "miss_count": 91 - }, - "search": { - "query_time_in_millis": 7796, - "query_total": 862 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 24640, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 661914, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 35955, - "stored_fields_memory_in_bytes": 414408, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 186783, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1154804296 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 600586 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 201, - "memory_size_in_bytes": 122438, - "miss_count": 326 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1201, - "memory_size_in_bytes": 891186, - "miss_count": 182 - }, - "search": { - "query_time_in_millis": 17544, - "query_total": 1439 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 49280, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1323828, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 71910, - "stored_fields_memory_in_bytes": 828816, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 373566, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2309608592 - } - }, - "uuid": "_Eyg34ImSJWDOaETJiM_vw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "erUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568290891944, - "index": "om-iu-suricata-2019.09.12-000101", - "primaries": { - "docs": { - "count": 379222 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 761921623 - }, - "query_cache": { - "evictions": 57, - "hit_count": 533, - "memory_size_in_bytes": 128903, - "miss_count": 1620 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2890, - "memory_size_in_bytes": 1624944, - "miss_count": 413 - }, - "search": { - "query_time_in_millis": 17953, - "query_total": 3486 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 24816, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 793517, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 44182, - "stored_fields_memory_in_bytes": 509520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 214871, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1501816482 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 758444 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 761921623 - }, - "query_cache": { - "evictions": 57, - "hit_count": 635, - "memory_size_in_bytes": 252417, - "miss_count": 1793 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3820, - "memory_size_in_bytes": 2560765, - "miss_count": 514 - }, - "search": { - "query_time_in_millis": 26880, - "query_total": 4549 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 49632, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1587034, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 88364, - "stored_fields_memory_in_bytes": 1019040, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 429742, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3003632964 - } - }, - "uuid": "xiHtcoDoQ6eoR66PA_aaTQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "e7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568377898917, - "index": "om-iu-suricata-2019.09.13-000102", - "primaries": { - "docs": { - "count": 285824 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 582675439 - }, - "query_cache": { - "evictions": 60, - "hit_count": 449, - "memory_size_in_bytes": 41121, - "miss_count": 1364 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2461, - "memory_size_in_bytes": 992662, - "miss_count": 317 - }, - "search": { - "query_time_in_millis": 8056, - "query_total": 2933 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 22224, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 626528, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 34573, - "stored_fields_memory_in_bytes": 392888, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 176715, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1154710037 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 571648 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 582675439 - }, - "query_cache": { - "evictions": 60, - "hit_count": 642, - "memory_size_in_bytes": 161494, - "miss_count": 1681 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3411, - "memory_size_in_bytes": 1865918, - "miss_count": 497 - }, - "search": { - "query_time_in_millis": 19767, - "query_total": 4119 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 44448, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1253056, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 69146, - "stored_fields_memory_in_bytes": 785776, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 353430, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2309420074 - } - }, - "uuid": "0hXdjuJuQ3-icGcP0iiB-w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "fLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569811297164, - "index": "om-iu-bro-2019.09.30-001000", - "primaries": { - "docs": { - "count": 1342469287 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1802230141161 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 58274, - "miss_count": 524 - }, - "refresh": { - "total_time_in_millis": 472 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 348 - }, - "search": { - "query_time_in_millis": 737154, - "query_total": 402 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1937680, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 977326510, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 116554543, - "stored_fields_memory_in_bytes": 362552072, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 496272999, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 910270546640 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2684938574 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3604460282322 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 146250, - "miss_count": 1044 - }, - "refresh": { - "total_time_in_millis": 955 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1455267, - "query_total": 796 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3875360, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1954653020, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 233109086, - "stored_fields_memory_in_bytes": 725104144, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 992545998, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1820541093280 - } - }, - "uuid": "kQF2dnQbSTeCMWxJ4Zo-VA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "fbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569832375997, - "index": "om-iu-bro-2019.09.30-001001", - "primaries": { - "docs": { - "count": 1320203563 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1840759858237 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 77380, - "miss_count": 528 - }, - "refresh": { - "total_time_in_millis": 541 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "search": { - "query_time_in_millis": 696286, - "query_total": 394 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1982368, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 965759100, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113947911, - "stored_fields_memory_in_bytes": 355784352, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 494035253, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 901968988749 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2640407126 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3681519716474 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 169396, - "miss_count": 1066 - }, - "refresh": { - "total_time_in_millis": 1166 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1457438, - "query_total": 792 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3964736, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1931518200, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 227895822, - "stored_fields_memory_in_bytes": 711568704, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 988070506, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1803937977498 - } - }, - "uuid": "F9QtL6ERTP2WO2_kaNgmMQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "frUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569283292361, - "index": "om-iu-bro-2019.09.24-000973", - "primaries": { - "docs": { - "count": 1327587556 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1189930846734 - }, - "query_cache": { - "evictions": 168, - "hit_count": 2688, - "memory_size_in_bytes": 157343266, - "miss_count": 18531 - }, - "refresh": { - "total_time_in_millis": 450 - }, - "request_cache": { - "evictions": 0, - "hit_count": 797, - "memory_size_in_bytes": 4959976, - "miss_count": 2686 - }, - "search": { - "query_time_in_millis": 2247284, - "query_total": 3773 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2109496, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1045259134, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 106356912, - "stored_fields_memory_in_bytes": 372170704, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 564612806, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 953603351433 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2655175112 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1299201782249 - }, - "query_cache": { - "evictions": 182, - "hit_count": 2972, - "memory_size_in_bytes": 175856099, - "miss_count": 20986 - }, - "refresh": { - "total_time_in_millis": 468 - }, - "request_cache": { - "evictions": 0, - "hit_count": 844, - "memory_size_in_bytes": 5381348, - "miss_count": 3299 - }, - "search": { - "query_time_in_millis": 2909242, - "query_total": 4476 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4218992, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2090518268, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 212713824, - "stored_fields_memory_in_bytes": 744341408, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1129225612, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1907206702866 - } - }, - "uuid": "9FOBtjZIRaOfdBoGuFQi6A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "f7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569851494246, - "index": "om-iu-bro-2019.09.30-001002", - "primaries": { - "docs": { - "count": 1342685820 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1925123999721 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 59196, - "miss_count": 524 - }, - "refresh": { - "total_time_in_millis": 497 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 342 - }, - "search": { - "query_time_in_millis": 660230, - "query_total": 396 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2032984, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1040193065, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115850848, - "stored_fields_memory_in_bytes": 360372024, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 561927993, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 958153906187 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2685371640 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3850247999442 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 161407, - "miss_count": 1054 - }, - "refresh": { - "total_time_in_millis": 993 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1477415, - "query_total": 792 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4065968, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2080386130, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 231701696, - "stored_fields_memory_in_bytes": 720744048, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1123855986, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1916307812374 - } - }, - "uuid": "CXV7Xsd2TnaYy7y5uUNyHA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "gLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569302500679, - "index": "om-iu-bro-2019.09.24-000974", - "primaries": { - "docs": { - "count": 1339467624 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 911065258438 - }, - "query_cache": { - "evictions": 1278, - "hit_count": 7142, - "memory_size_in_bytes": 168172897, - "miss_count": 27384 - }, - "refresh": { - "total_time_in_millis": 235 - }, - "request_cache": { - "evictions": 0, - "hit_count": 819, - "memory_size_in_bytes": 3060498, - "miss_count": 2109 - }, - "search": { - "query_time_in_millis": 2470299, - "query_total": 3188 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2002840, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1037571138, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115043346, - "stored_fields_memory_in_bytes": 362239000, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 558276736, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 896033761211 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2678935248 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1622301181134 - }, - "query_cache": { - "evictions": 2187, - "hit_count": 12453, - "memory_size_in_bytes": 298915832, - "miss_count": 47484 - }, - "refresh": { - "total_time_in_millis": 412 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1389, - "memory_size_in_bytes": 5219272, - "miss_count": 3795 - }, - "search": { - "query_time_in_millis": 4471933, - "query_total": 5643 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4005680, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2075142276, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 230086692, - "stored_fields_memory_in_bytes": 724478000, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1116553472, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1792067522422 - } - }, - "uuid": "MM5Ln7eOQSWzQHUixHiywA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "gbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556653357439, - "index": ".reporting-2019.04.28", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1408 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 3 - }, - "request_cache": { - "evictions": 0, - "hit_count": 144, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 535433, - "query_total": 3535786 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 7654, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 36, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 6602, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 126472 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2816 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 213, - "memory_size_in_bytes": 8612, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 888168, - "query_total": 5300340 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 15308, - "norms_memory_in_bytes": 512, - "points_memory_in_bytes": 72, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 13204, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 252944 - } - }, - "uuid": "UqgCvEUeSaWPwGBsqe6Aog" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "grUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569869501933, - "index": "om-iu-bro-2019.09.30-001003", - "primaries": { - "docs": { - "count": 1325001444 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1906995233548 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 38043, - "miss_count": 514 - }, - "refresh": { - "total_time_in_millis": 636 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "search": { - "query_time_in_millis": 597672, - "query_total": 394 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1978040, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1018006812, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114636851, - "stored_fields_memory_in_bytes": 355797344, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 545585361, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 949900622034 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2650002888 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3813990467096 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 173134, - "miss_count": 1063 - }, - "refresh": { - "total_time_in_millis": 1202 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1466631, - "query_total": 792 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3956080, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2036013624, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229273702, - "stored_fields_memory_in_bytes": 711594688, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1091170722, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1899801244068 - } - }, - "uuid": "NYQDr95BSDa6HrSUt2I2tw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "g7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569324695252, - "index": "om-iu-bro-2019.09.24-000975", - "primaries": { - "docs": { - "count": 1320097537 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 924570826924 - }, - "query_cache": { - "evictions": 459, - "hit_count": 2544, - "memory_size_in_bytes": 64452616, - "miss_count": 12372 - }, - "refresh": { - "total_time_in_millis": 245 - }, - "request_cache": { - "evictions": 0, - "hit_count": 60, - "memory_size_in_bytes": 591496, - "miss_count": 1084 - }, - "search": { - "query_time_in_millis": 964528, - "query_total": 1218 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2102072, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1075361096, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 111091679, - "stored_fields_memory_in_bytes": 355215376, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 606942753, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 915289409264 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2640195074 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1439816413322 - }, - "query_cache": { - "evictions": 660, - "hit_count": 3842, - "memory_size_in_bytes": 110439905, - "miss_count": 20132 - }, - "refresh": { - "total_time_in_millis": 387 - }, - "request_cache": { - "evictions": 0, - "hit_count": 108, - "memory_size_in_bytes": 922905, - "miss_count": 1832 - }, - "search": { - "query_time_in_millis": 1651192, - "query_total": 2065 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4204144, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2150722192, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 222183358, - "stored_fields_memory_in_bytes": 710430752, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1213885506, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1830578818528 - } - }, - "uuid": "j3uKRALUSHGPVdELCwDY9A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "hLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568638892670, - "index": "om-iu-suricata-2019.09.16-000105", - "primaries": { - "docs": { - "count": 537592 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 951433036 - }, - "query_cache": { - "evictions": 17, - "hit_count": 199, - "memory_size_in_bytes": 178184, - "miss_count": 452 - }, - "refresh": { - "total_time_in_millis": 14 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2271, - "memory_size_in_bytes": 874784, - "miss_count": 162 - }, - "search": { - "query_time_in_millis": 12727, - "query_total": 2641 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 22848, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1151659, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 64042, - "stored_fields_memory_in_bytes": 754112, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 310529, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1898908334 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 1075184 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 951433036 - }, - "query_cache": { - "evictions": 17, - "hit_count": 300, - "memory_size_in_bytes": 353660, - "miss_count": 634 - }, - "refresh": { - "total_time_in_millis": 14 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2994, - "memory_size_in_bytes": 1675315, - "miss_count": 263 - }, - "search": { - "query_time_in_millis": 30490, - "query_total": 3497 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 45696, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2303318, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 128084, - "stored_fields_memory_in_bytes": 1508224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 621058, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3797816668 - } - }, - "uuid": "vylN3xTaSwaK0MkPmPFF0A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "hbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569341492340, - "index": "om-iu-bro-2019.09.24-000976", - "primaries": { - "docs": { - "count": 1337432098 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 748678572824 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 440 - }, - "refresh": { - "total_time_in_millis": 241 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 381 - }, - "search": { - "query_time_in_millis": 512903, - "query_total": 401 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2063392, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1044687444, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113945963, - "stored_fields_memory_in_bytes": 362023464, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 566645409, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 936781180298 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2674864196 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1339436371775 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 876 - }, - "refresh": { - "total_time_in_millis": 458 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 773 - }, - "search": { - "query_time_in_millis": 1021228, - "query_total": 809 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4126784, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2089374888, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 227891926, - "stored_fields_memory_in_bytes": 724046928, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1133290818, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1873562360596 - } - }, - "uuid": "cTeJwBsEQeCpz2NhdIc0xA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "hrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569886899463, - "index": "om-iu-bro-2019.09.30-001004", - "primaries": { - "docs": { - "count": 1334044952 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1946153395651 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 62727, - "miss_count": 515 - }, - "refresh": { - "total_time_in_millis": 501 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 336 - }, - "search": { - "query_time_in_millis": 693197, - "query_total": 390 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2034288, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1050249454, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114772898, - "stored_fields_memory_in_bytes": 369758840, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 563674212, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 968236860794 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2668089904 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3892306791302 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 154179, - "miss_count": 1054 - }, - "refresh": { - "total_time_in_millis": 1053 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 1459570, - "query_total": 796 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4068576, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2100498908, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229545796, - "stored_fields_memory_in_bytes": 739517680, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1127348424, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1936473721588 - } - }, - "uuid": "Ak234AXoQxKfnw2lqDf90g" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "h7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569378693809, - "index": "om-iu-bro-2019.09.25-000978", - "primaries": { - "docs": { - "count": 1309831544 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1392821876343 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 504 - }, - "refresh": { - "total_time_in_millis": 385 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 392 - }, - "search": { - "query_time_in_millis": 517953, - "query_total": 415 - }, - "segments": { - "count": 54, - "doc_values_memory_in_bytes": 2448938, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1042782842, - "norms_memory_in_bytes": 17216, - "points_memory_in_bytes": 113401992, - "stored_fields_memory_in_bytes": 363665856, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 563248840, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 940389120472 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2619663088 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2144191121449 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 947 - }, - "refresh": { - "total_time_in_millis": 568 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 787 - }, - "search": { - "query_time_in_millis": 1028423, - "query_total": 826 - }, - "segments": { - "count": 108, - "doc_values_memory_in_bytes": 4897876, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2085565684, - "norms_memory_in_bytes": 34432, - "points_memory_in_bytes": 226803984, - "stored_fields_memory_in_bytes": 727331712, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1126497680, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1880778240944 - } - }, - "uuid": "S2qWOwrCSrmW5ZBLwVTumw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "iLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556201822466, - "index": ".ml-config", - "primaries": { - "docs": { - "count": 6 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 13265, - "index_total": 603, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 25447 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 3 - }, - "search": { - "query_time_in_millis": 221382, - "query_total": 687202 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 192, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 20286, - "norms_memory_in_bytes": 512, - "points_memory_in_bytes": 42, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 18212, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 50741 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 12 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 24209, - "index_total": 1103, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 49993 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 0, - "miss_count": 6 - }, - "search": { - "query_time_in_millis": 457987, - "query_total": 1249050 - }, - "segments": { - "count": 8, - "doc_values_memory_in_bytes": 544, - "fixed_bit_set_memory_in_bytes": 384, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 40572, - "norms_memory_in_bytes": 1024, - "points_memory_in_bytes": 84, - "stored_fields_memory_in_bytes": 2496, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 36424, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 101481 - } - }, - "uuid": "Btsx1uQESnm453VQtD27LQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ibUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569360700066, - "index": "om-iu-bro-2019.09.24-000977", - "primaries": { - "docs": { - "count": 1330448702 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 970963976159 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 425 - }, - "refresh": { - "total_time_in_millis": 236 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 385 - }, - "search": { - "query_time_in_millis": 504326, - "query_total": 405 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2004496, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1026682164, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 115087369, - "stored_fields_memory_in_bytes": 357973480, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 551607603, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 939054080544 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2660897404 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1294221308701 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 887 - }, - "refresh": { - "total_time_in_millis": 307 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 780 - }, - "search": { - "query_time_in_millis": 1024226, - "query_total": 822 - }, - "segments": { - "count": 66, - "doc_values_memory_in_bytes": 4422738, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2071348626, - "norms_memory_in_bytes": 29312, - "points_memory_in_bytes": 231179270, - "stored_fields_memory_in_bytes": 716873784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1118843522, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1881094188511 - } - }, - "uuid": "SNRq2Rz5ToWyBMWdY3dxLQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "irUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1528230086226, - "index": ".monitoring-alerts-6", - "primaries": { - "docs": { - "count": 65 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 7 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1465, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 49246, - "query_total": 93269 - }, - "segments": { - "count": 9, - "doc_values_memory_in_bytes": 2044, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 22450, - "norms_memory_in_bytes": 1152, - "points_memory_in_bytes": 71, - "stored_fields_memory_in_bytes": 2808, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 16375, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 70237 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 130 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 8 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 1465, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 77078, - "query_total": 148274 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 4088, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 44900, - "norms_memory_in_bytes": 2304, - "points_memory_in_bytes": 142, - "stored_fields_memory_in_bytes": 5616, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 32750, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 140474 - } - }, - "uuid": "sqcwy6ItSbqVAPak5tFIXA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "i7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570117894554, - "index": "om-iu-suricata-2019.10.03-000122", - "primaries": { - "docs": { - "count": 88159 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 201647, - "index_total": 88161, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2306472592 - }, - "query_cache": { - "evictions": 0, - "hit_count": 17, - "memory_size_in_bytes": 2874, - "miss_count": 1 - }, - "refresh": { - "total_time_in_millis": 499991 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 38 - }, - "search": { - "query_time_in_millis": 845, - "query_total": 38 - }, - "segments": { - "count": 25, - "doc_values_memory_in_bytes": 65020, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 6602112, - "memory_in_bytes": 548025, - "norms_memory_in_bytes": 1600, - "points_memory_in_bytes": 13812, - "stored_fields_memory_in_bytes": 129984, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 337609, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 299707562 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 176319 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 400249, - "index_total": 176322, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 4478049097 - }, - "query_cache": { - "evictions": 0, - "hit_count": 45, - "memory_size_in_bytes": 8374, - "miss_count": 3 - }, - "refresh": { - "total_time_in_millis": 952935 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 76 - }, - "search": { - "query_time_in_millis": 3099, - "query_total": 76 - }, - "segments": { - "count": 51, - "doc_values_memory_in_bytes": 132524, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 9903168, - "memory_in_bytes": 1106676, - "norms_memory_in_bytes": 3264, - "points_memory_in_bytes": 26758, - "stored_fields_memory_in_bytes": 259960, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 684170, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 599562215 - } - }, - "uuid": "BlcvmdRqSxWz7DUS-pgtaQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "jLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1550868298832, - "index": ".reporting-2019.02.17", - "primaries": { - "docs": { - "count": 2 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1408 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 1 - }, - "request_cache": { - "evictions": 0, - "hit_count": 30, - "memory_size_in_bytes": 2018, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 170362, - "query_total": 1053756 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 136, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 6156, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 32, - "stored_fields_memory_in_bytes": 624, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 5108, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 42600 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2816 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 70, - "memory_size_in_bytes": 4036, - "miss_count": 4 - }, - "search": { - "query_time_in_millis": 352853, - "query_total": 2153520 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 272, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 12312, - "norms_memory_in_bytes": 512, - "points_memory_in_bytes": 64, - "stored_fields_memory_in_bytes": 1248, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 10216, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 85200 - } - }, - "uuid": "6VY75JoUR4mkOc4lLpKF7A" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "jbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569334892254, - "index": "om-iu-suricata-2019.09.24-000113", - "primaries": { - "docs": { - "count": 362772 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 667869469 - }, - "query_cache": { - "evictions": 0, - "hit_count": 7, - "memory_size_in_bytes": 45919, - "miss_count": 43 - }, - "refresh": { - "total_time_in_millis": 13 - }, - "request_cache": { - "evictions": 0, - "hit_count": 956, - "memory_size_in_bytes": 374596, - "miss_count": 13 - }, - "search": { - "query_time_in_millis": 4139, - "query_total": 975 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 26400, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 744931, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 42673, - "stored_fields_memory_in_bytes": 473664, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 202066, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1319582401 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 725544 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1335738938 - }, - "query_cache": { - "evictions": 0, - "hit_count": 228, - "memory_size_in_bytes": 240798, - "miss_count": 403 - }, - "refresh": { - "total_time_in_millis": 21 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2258, - "memory_size_in_bytes": 1312030, - "miss_count": 204 - }, - "search": { - "query_time_in_millis": 15891, - "query_total": 2541 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 52800, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1489862, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 85346, - "stored_fields_memory_in_bytes": 947328, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 404132, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2639164802 - } - }, - "uuid": "6EJfas-BS4uPbPv8-okaGQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "jrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569682892044, - "index": "om-iu-suricata-2019.09.28-000117", - "primaries": { - "docs": { - "count": 165365 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 732765591 - }, - "query_cache": { - "evictions": 0, - "hit_count": 12, - "memory_size_in_bytes": 44085, - "miss_count": 78 - }, - "refresh": { - "total_time_in_millis": 13 - }, - "request_cache": { - "evictions": 0, - "hit_count": 523, - "memory_size_in_bytes": 514254, - "miss_count": 22 - }, - "search": { - "query_time_in_millis": 6666, - "query_total": 559 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 24696, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 384213, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 20267, - "stored_fields_memory_in_bytes": 228128, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 110994, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 725798689 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 330730 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 732765591 - }, - "query_cache": { - "evictions": 0, - "hit_count": 452, - "memory_size_in_bytes": 344872, - "miss_count": 528 - }, - "refresh": { - "total_time_in_millis": 13 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1149, - "memory_size_in_bytes": 1341510, - "miss_count": 308 - }, - "search": { - "query_time_in_millis": 16722, - "query_total": 1527 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 49392, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 768426, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 40534, - "stored_fields_memory_in_bytes": 456256, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 221988, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1451597378 - } - }, - "uuid": "znewsW8bTe2h1qcpXXf6hg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "j7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1549915777539, - "index": ".reporting-2019.02.10", - "primaries": { - "docs": { - "count": 5 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1600 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 16 - }, - "request_cache": { - "evictions": 0, - "hit_count": 145, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 798808, - "query_total": 3700730 - }, - "segments": { - "count": 5, - "doc_values_memory_in_bytes": 340, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 15390, - "norms_memory_in_bytes": 640, - "points_memory_in_bytes": 80, - "stored_fields_memory_in_bytes": 1560, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 12770, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 4616816 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 10 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3200 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 18 - }, - "request_cache": { - "evictions": 0, - "hit_count": 298, - "memory_size_in_bytes": 8612, - "miss_count": 10 - }, - "search": { - "query_time_in_millis": 1572198, - "query_total": 7318432 - }, - "segments": { - "count": 10, - "doc_values_memory_in_bytes": 680, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 30780, - "norms_memory_in_bytes": 1280, - "points_memory_in_bytes": 160, - "stored_fields_memory_in_bytes": 3120, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 25540, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 9233632 - } - }, - "uuid": "AWN-Eff7R2iyYFW0vBzeqA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "kLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569448291275, - "index": "om-iu-bro-2019.09.25-000982", - "primaries": { - "docs": { - "count": 1327918172 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 872537453877 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 463 - }, - "refresh": { - "total_time_in_millis": 194 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 391 - }, - "search": { - "query_time_in_millis": 668449, - "query_total": 419 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1989112, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1050183248, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114634537, - "stored_fields_memory_in_bytes": 359021824, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 574528559, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 947073262699 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2655836344 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1307364230926 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 923 - }, - "refresh": { - "total_time_in_millis": 292 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 779 - }, - "search": { - "query_time_in_millis": 1291278, - "query_total": 839 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3978224, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2100366496, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 229269074, - "stored_fields_memory_in_bytes": 718043648, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1149057118, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1894146525398 - } - }, - "uuid": "SaLI0ReFQDuW0XmrUW6Brw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "kbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568116895050, - "index": "om-iu-suricata-2019.09.10-000099", - "primaries": { - "docs": { - "count": 320892 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 101, - "memory_size_in_bytes": 66842, - "miss_count": 156 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 457, - "memory_size_in_bytes": 447865, - "miss_count": 91 - }, - "search": { - "query_time_in_millis": 9497, - "query_total": 576 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 27720, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 726067, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 37697, - "stored_fields_memory_in_bytes": 458792, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 201730, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1317089417 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 641784 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 37, - "hit_count": 502, - "memory_size_in_bytes": 217301, - "miss_count": 1632 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2736, - "memory_size_in_bytes": 1555583, - "miss_count": 376 - }, - "search": { - "query_time_in_millis": 22384, - "query_total": 3285 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 55440, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1452134, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 75394, - "stored_fields_memory_in_bytes": 917584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 403460, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2634178834 - } - }, - "uuid": "CeTN0HzLTIeUJVvZeVEMaA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "krUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1557167400417, - "index": ".reporting-2019.05.05", - "primaries": { - "docs": { - "count": 5 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1600 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 116, - "memory_size_in_bytes": 4306, - "miss_count": 5 - }, - "search": { - "query_time_in_millis": 626894, - "query_total": 2906299 - }, - "segments": { - "count": 5, - "doc_values_memory_in_bytes": 340, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 19135, - "norms_memory_in_bytes": 640, - "points_memory_in_bytes": 90, - "stored_fields_memory_in_bytes": 1560, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 16505, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 117315 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 10 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3200 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 3 - }, - "request_cache": { - "evictions": 0, - "hit_count": 153, - "memory_size_in_bytes": 6324, - "miss_count": 7 - }, - "search": { - "query_time_in_millis": 844921, - "query_total": 4006065 - }, - "segments": { - "count": 10, - "doc_values_memory_in_bytes": 680, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 38270, - "norms_memory_in_bytes": 1280, - "points_memory_in_bytes": 180, - "stored_fields_memory_in_bytes": 3120, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 33010, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 234630 - } - }, - "uuid": "-cSQjoDCTwWwZS4IyFxcxQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "k7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556203580673, - "index": ".kibana_2", - "primaries": { - "docs": { - "count": 710 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1443, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 2, - "query_total": 3 - }, - "segments": { - "count": 7, - "doc_values_memory_in_bytes": 4140, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 39471, - "norms_memory_in_bytes": 3840, - "points_memory_in_bytes": 94, - "stored_fields_memory_in_bytes": 2344, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 29053, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 938442 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 1420 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3, - "memory_size_in_bytes": 2886, - "miss_count": 4 - }, - "search": { - "query_time_in_millis": 3, - "query_total": 7 - }, - "segments": { - "count": 14, - "doc_values_memory_in_bytes": 8280, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 78942, - "norms_memory_in_bytes": 7680, - "points_memory_in_bytes": 188, - "stored_fields_memory_in_bytes": 4688, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 58106, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1876884 - } - }, - "uuid": "eZ1TZ7ZRSGyKxjAYjzJbEg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "lLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1556203581906, - "index": ".kibana_1", - "primaries": { - "docs": { - "count": 671 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 2 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1443, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 3 - }, - "segments": { - "count": 3, - "doc_values_memory_in_bytes": 3036, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 28422, - "norms_memory_in_bytes": 3328, - "points_memory_in_bytes": 56, - "stored_fields_memory_in_bytes": 1072, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 20930, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 820155 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 1342 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 21 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1, - "memory_size_in_bytes": 1443, - "miss_count": 2 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 3 - }, - "segments": { - "count": 6, - "doc_values_memory_in_bytes": 6072, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 56844, - "norms_memory_in_bytes": 6656, - "points_memory_in_bytes": 112, - "stored_fields_memory_in_bytes": 2144, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 41860, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1640310 - } - }, - "uuid": "M57cDJpeQQa1cCOaAdtBXw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "lbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1565632368593, - "index": ".kibana_3", - "primaries": { - "docs": { - "count": 2140 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3441, - "index_total": 226, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 7124650 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 18077 - }, - "request_cache": { - "evictions": 0, - "hit_count": 18, - "memory_size_in_bytes": 0, - "miss_count": 49 - }, - "search": { - "query_time_in_millis": 51274, - "query_total": 141260 - }, - "segments": { - "count": 5, - "doc_values_memory_in_bytes": 2628, - "fixed_bit_set_memory_in_bytes": 504, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 38639, - "norms_memory_in_bytes": 3776, - "points_memory_in_bytes": 98, - "stored_fields_memory_in_bytes": 1792, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 30345, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1239725 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 4280 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 6528, - "index_total": 447, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 14241927 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 37609 - }, - "request_cache": { - "evictions": 0, - "hit_count": 21, - "memory_size_in_bytes": 0, - "miss_count": 84 - }, - "search": { - "query_time_in_millis": 101429, - "query_total": 253473 - }, - "segments": { - "count": 10, - "doc_values_memory_in_bytes": 5256, - "fixed_bit_set_memory_in_bytes": 1008, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 77278, - "norms_memory_in_bytes": 7552, - "points_memory_in_bytes": 196, - "stored_fields_memory_in_bytes": 3584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 60690, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2478861 - } - }, - "uuid": "6L549zI-SziLr9ykP4GdBg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "lrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570078910511, - "index": "om-iu-bro-2019.10.03-001015", - "primaries": { - "docs": { - "count": 1335479626 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1582882808, - "index_total": 1474043973, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3273667223164 - }, - "query_cache": { - "evictions": 31025, - "hit_count": 1356282, - "memory_size_in_bytes": 413067253, - "miss_count": 1338270 - }, - "refresh": { - "total_time_in_millis": 28159925 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 340 - }, - "search": { - "query_time_in_millis": 7406268, - "query_total": 76613 - }, - "segments": { - "count": 588, - "doc_values_memory_in_bytes": 9052050, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1308733477, - "norms_memory_in_bytes": 161984, - "points_memory_in_bytes": 130330659, - "stored_fields_memory_in_bytes": 383503968, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 785684816, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 979234563261 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2670959252 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3032441021, - "index_total": 2948087946, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6553439693128 - }, - "query_cache": { - "evictions": 63114, - "hit_count": 2726029, - "memory_size_in_bytes": 827299587, - "miss_count": 2691162 - }, - "refresh": { - "total_time_in_millis": 55705971 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 14840046, - "query_total": 153270 - }, - "segments": { - "count": 1184, - "doc_values_memory_in_bytes": 18032166, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2620887249, - "norms_memory_in_bytes": 322816, - "points_memory_in_bytes": 260790972, - "stored_fields_memory_in_bytes": 767419776, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1574321519, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1956220207963 - } - }, - "uuid": "1MrD_TuYSX2CikFDGaSMrw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "l7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570096896816, - "index": "om-iu-bro-2019.10.03-001016", - "primaries": { - "docs": { - "count": 1315193493 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1499116247, - "index_total": 1393632251, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3024403977907 - }, - "query_cache": { - "evictions": 16900, - "hit_count": 868242, - "memory_size_in_bytes": 336430919, - "miss_count": 934025 - }, - "refresh": { - "total_time_in_millis": 24423794 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 348 - }, - "search": { - "query_time_in_millis": 7090843, - "query_total": 47540 - }, - "segments": { - "count": 656, - "doc_values_memory_in_bytes": 12085328, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1234051503, - "norms_memory_in_bytes": 190528, - "points_memory_in_bytes": 125565528, - "stored_fields_memory_in_bytes": 366314592, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 729895527, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 929321393354 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2630386986 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 2872869703, - "index_total": 2787264502, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6048595179250 - }, - "query_cache": { - "evictions": 34627, - "hit_count": 1735694, - "memory_size_in_bytes": 669972982, - "miss_count": 1863136 - }, - "refresh": { - "total_time_in_millis": 47864787 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 14248642, - "query_total": 95220 - }, - "segments": { - "count": 1334, - "doc_values_memory_in_bytes": 24535024, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2467452775, - "norms_memory_in_bytes": 376448, - "points_memory_in_bytes": 251163787, - "stored_fields_memory_in_bytes": 733213432, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1458164084, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1856486075931 - } - }, - "uuid": "tZaq73V2RbWxPxfSpL-yKA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "mLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1568986895761, - "index": "om-iu-suricata-2019.09.20-000109", - "primaries": { - "docs": { - "count": 259511 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 97, - "memory_size_in_bytes": 54035, - "miss_count": 165 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 993, - "memory_size_in_bytes": 396441, - "miss_count": 91 - }, - "search": { - "query_time_in_millis": 8824, - "query_total": 1112 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 22632, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 574488, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 30432, - "stored_fields_memory_in_bytes": 358224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 163072, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1054213876 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 519022 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 203, - "memory_size_in_bytes": 146074, - "miss_count": 363 - }, - "refresh": { - "total_time_in_millis": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1730, - "memory_size_in_bytes": 1098508, - "miss_count": 192 - }, - "search": { - "query_time_in_millis": 20526, - "query_total": 1982 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 45264, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1148976, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 60864, - "stored_fields_memory_in_bytes": 716448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 326144, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 2108427752 - } - }, - "uuid": "paGf1AmYSXSmLZWHWt71Qg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "mbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570061495591, - "index": "om-iu-bro-2019.10.03-001014", - "primaries": { - "docs": { - "count": 1308102290 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1582582878, - "index_total": 1456101126, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3253396034519 - }, - "query_cache": { - "evictions": 31914, - "hit_count": 1393900, - "memory_size_in_bytes": 458671708, - "miss_count": 1338751 - }, - "refresh": { - "total_time_in_millis": 28590017 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 342 - }, - "search": { - "query_time_in_millis": 7435773, - "query_total": 81926 - }, - "segments": { - "count": 592, - "doc_values_memory_in_bytes": 9803246, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1311192298, - "norms_memory_in_bytes": 168192, - "points_memory_in_bytes": 130274539, - "stored_fields_memory_in_bytes": 368858584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 802087737, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 976500951248 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2616204580 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 3016460688, - "index_total": 2912202252, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6533573251920 - }, - "query_cache": { - "evictions": 64785, - "hit_count": 2796308, - "memory_size_in_bytes": 901809335, - "miss_count": 2672996 - }, - "refresh": { - "total_time_in_millis": 56064102 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 684 - }, - "search": { - "query_time_in_millis": 14777553, - "query_total": 164196 - }, - "segments": { - "count": 1158, - "doc_values_memory_in_bytes": 19290508, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2629833158, - "norms_memory_in_bytes": 336384, - "points_memory_in_bytes": 260359980, - "stored_fields_memory_in_bytes": 739943984, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1609902302, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1947950875896 - } - }, - "uuid": "u7W63aeWSkKYy6egr1Yawg" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "mrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569430897000, - "index": "om-iu-bro-2019.09.25-000981", - "primaries": { - "docs": { - "count": 1317079041 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 850941596564 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 458 - }, - "refresh": { - "total_time_in_millis": 224 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 399 - }, - "search": { - "query_time_in_millis": 649509, - "query_total": 423 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 1969816, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1046380161, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 114133601, - "stored_fields_memory_in_bytes": 354650744, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 575616784, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 932554055583 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2634158082 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1547262226901 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 947 - }, - "refresh": { - "total_time_in_millis": 388 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 784 - }, - "search": { - "query_time_in_millis": 1448287, - "query_total": 850 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 3939632, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2092760322, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 228267202, - "stored_fields_memory_in_bytes": 709301488, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1151233568, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1865108111166 - } - }, - "uuid": "hTY31p9pStW4rvO5K9B5og" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "m7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569414093048, - "index": "om-iu-bro-2019.09.25-000980", - "primaries": { - "docs": { - "count": 1321780841 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 625494053968 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 621 - }, - "refresh": { - "total_time_in_millis": 164 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 392 - }, - "search": { - "query_time_in_millis": 709490, - "query_total": 431 - }, - "segments": { - "count": 18, - "doc_values_memory_in_bytes": 2045440, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 1033605757, - "norms_memory_in_bytes": 9216, - "points_memory_in_bytes": 113780768, - "stored_fields_memory_in_bytes": 356196568, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 561573765, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 920988658593 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2643561682 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1144686876312 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 1181 - }, - "refresh": { - "total_time_in_millis": 294 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 787 - }, - "search": { - "query_time_in_millis": 1372173, - "query_total": 856 - }, - "segments": { - "count": 36, - "doc_values_memory_in_bytes": 4090880, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 2067211514, - "norms_memory_in_bytes": 18432, - "points_memory_in_bytes": 227561536, - "stored_fields_memory_in_bytes": 712393136, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1123147530, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1841977317186 - } - }, - "uuid": "8TNgrkxpRBKlLPJO1hmhXQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "nLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570060828660, - "index": ".watcher-history-9-2019.10.03", - "primaries": { - "docs": { - "count": 7858 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 67743, - "index_total": 7858, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1085698384 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 317489 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 3, - "doc_values_memory_in_bytes": 708, - "fixed_bit_set_memory_in_bytes": 1120, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 55111, - "norms_memory_in_bytes": 3904, - "points_memory_in_bytes": 415, - "stored_fields_memory_in_bytes": 7104, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 42980, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 9612075 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 15716 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 131344, - "index_total": 15716, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2193779947 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 610972 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 11, - "doc_values_memory_in_bytes": 1980, - "fixed_bit_set_memory_in_bytes": 2472, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 172972, - "norms_memory_in_bytes": 12928, - "points_memory_in_bytes": 888, - "stored_fields_memory_in_bytes": 15936, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 141240, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 19345609 - } - }, - "uuid": "s5xKOcAwTVKlyJT8SE-VKA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "nbUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569888007925, - "index": ".watcher-history-9-2019.10.01", - "primaries": { - "docs": { - "count": 9542 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 92579, - "index_total": 9542, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1428969058 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 351263 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 3, - "doc_values_memory_in_bytes": 7180, - "fixed_bit_set_memory_in_bytes": 1328, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 62901, - "norms_memory_in_bytes": 3904, - "points_memory_in_bytes": 404, - "stored_fields_memory_in_bytes": 8456, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 42957, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 11255437 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 19084 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 163058, - "index_total": 19084, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2874556647 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 675465 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 7, - "doc_values_memory_in_bytes": 14596, - "fixed_bit_set_memory_in_bytes": 2704, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 140176, - "norms_memory_in_bytes": 9024, - "points_memory_in_bytes": 822, - "stored_fields_memory_in_bytes": 17264, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 98470, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 22503690 - } - }, - "uuid": "ZHmidDtwQOmxw1qEpdTL2w" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "nrUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1567855893029, - "index": "om-iu-suricata-2019.09.07-000096", - "primaries": { - "docs": { - "count": 182541 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 398338616 - }, - "query_cache": { - "evictions": 55, - "hit_count": 413, - "memory_size_in_bytes": 84458, - "miss_count": 648 - }, - "refresh": { - "total_time_in_millis": 6 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3241, - "memory_size_in_bytes": 891346, - "miss_count": 299 - }, - "search": { - "query_time_in_millis": 3566, - "query_total": 3831 - }, - "segments": { - "count": 2, - "doc_values_memory_in_bytes": 23904, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 420327, - "norms_memory_in_bytes": 128, - "points_memory_in_bytes": 21626, - "stored_fields_memory_in_bytes": 252136, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 122533, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 794139244 - } - }, - "shards": { - "active_primaries": 2, - "active_replicas": 2, - "active_total": 4, - "initializing": 0, - "primaries": 2, - "relocating": 0, - "replicas": 1, - "total": 4, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 365082 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 796677232 - }, - "query_cache": { - "evictions": 136, - "hit_count": 1168, - "memory_size_in_bytes": 207554, - "miss_count": 2260 - }, - "refresh": { - "total_time_in_millis": 12 - }, - "request_cache": { - "evictions": 0, - "hit_count": 6769, - "memory_size_in_bytes": 2287631, - "miss_count": 771 - }, - "search": { - "query_time_in_millis": 11570, - "query_total": 8101 - }, - "segments": { - "count": 4, - "doc_values_memory_in_bytes": 47808, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 840654, - "norms_memory_in_bytes": 256, - "points_memory_in_bytes": 43252, - "stored_fields_memory_in_bytes": 504272, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 245066, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 1588278488 - } - }, - "uuid": "-02sLKUKTHyAw9dwkUtXxA" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "n7Ujk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1569974419280, - "index": ".watcher-history-9-2019.10.02", - "primaries": { - "docs": { - "count": 9577 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 92495, - "index_total": 9577, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 1476613630 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 352903 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 9, - "doc_values_memory_in_bytes": 7180, - "fixed_bit_set_memory_in_bytes": 1624, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 86528, - "norms_memory_in_bytes": 5440, - "points_memory_in_bytes": 436, - "stored_fields_memory_in_bytes": 10224, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 63248, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 11236866 - } - }, - "shards": { - "active_primaries": 1, - "active_replicas": 1, - "active_total": 2, - "initializing": 0, - "primaries": 1, - "relocating": 0, - "replicas": 1, - "total": 2, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 19154 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 153621, - "index_total": 19154, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 2897747683 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "refresh": { - "total_time_in_millis": 691417 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 19, - "doc_values_memory_in_bytes": 9420, - "fixed_bit_set_memory_in_bytes": 3288, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 182186, - "norms_memory_in_bytes": 12096, - "points_memory_in_bytes": 883, - "stored_fields_memory_in_bytes": 20728, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 139059, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 22524326 - } - }, - "uuid": "OAkZ_1elTeuZ7z-JPkOStw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "oLUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570113698609, - "index": "om-iu-bro-2019.10.03-001017", - "primaries": { - "docs": { - "count": 1341058833 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 1517743853, - "index_total": 1414330475, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 3077002418695 - }, - "query_cache": { - "evictions": 4147, - "hit_count": 878128, - "memory_size_in_bytes": 429843152, - "miss_count": 986441 - }, - "refresh": { - "total_time_in_millis": 24674606 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 180 - }, - "search": { - "query_time_in_millis": 5988866, - "query_total": 44161 - }, - "segments": { - "count": 806, - "doc_values_memory_in_bytes": 13496130, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 308695642, - "memory_in_bytes": 1328912592, - "norms_memory_in_bytes": 229760, - "points_memory_in_bytes": 129357725, - "stored_fields_memory_in_bytes": 371027984, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 814800993, - "version_map_memory_in_bytes": 15117667 - }, - "store": { - "size_in_bytes": 1001790405941 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 2682117666 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 2914520909, - "index_total": 2828660950, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 6167517338379 - }, - "query_cache": { - "evictions": 7817, - "hit_count": 1758230, - "memory_size_in_bytes": 858511488, - "miss_count": 1966671 - }, - "refresh": { - "total_time_in_millis": 49057967 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 360 - }, - "search": { - "query_time_in_millis": 11790574, - "query_total": 88441 - }, - "segments": { - "count": 1599, - "doc_values_memory_in_bytes": 26758750, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 583306458, - "memory_in_bytes": 2657400633, - "norms_memory_in_bytes": 458112, - "points_memory_in_bytes": 258749926, - "stored_fields_memory_in_bytes": 743610840, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 1627823005, - "version_map_memory_in_bytes": 28022205 - }, - "store": { - "size_in_bytes": 1987137375467 - } - }, - "uuid": "kWpCOTcuRJyQLx2hyfr4Kw" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "obUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_stats": { - "created": 1570130495786, - "index": "om-iu-bro-2019.10.03-001018", - "primaries": { - "docs": { - "count": 88195342 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 98209723, - "index_total": 90423828, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 100187237236 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 765 - }, - "refresh": { - "total_time_in_millis": 1019835 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 44336, - "query_total": 84 - }, - "segments": { - "count": 837, - "doc_values_memory_in_bytes": 14459372, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 4078729312, - "memory_in_bytes": 140301968, - "norms_memory_in_bytes": 334720, - "points_memory_in_bytes": 9537144, - "stored_fields_memory_in_bytes": 23928704, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 92042028, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 74914722381 - } - }, - "shards": { - "active_primaries": 18, - "active_replicas": 18, - "active_total": 36, - "initializing": 0, - "primaries": 18, - "relocating": 0, - "replicas": 1, - "total": 36, - "unassigned_primaries": 0, - "unassigned_replicas": 0, - "unassigned_total": 0 - }, - "status": "green", - "total": { - "docs": { - "count": 176134906 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 191998655, - "index_total": 180640047, - "throttle_time_in_millis": 0 - }, - "merges": { - "total_size_in_bytes": 198796016806 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 1474 - }, - "refresh": { - "total_time_in_millis": 2046502 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 94092, - "query_total": 162 - }, - "segments": { - "count": 1781, - "doc_values_memory_in_bytes": 31091876, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 8198005052, - "memory_in_bytes": 288098694, - "norms_memory_in_bytes": 706304, - "points_memory_in_bytes": 19141796, - "stored_fields_memory_in_bytes": 47956960, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 189201758, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 149657536601 - } - }, - "uuid": "ngDHZT4-RUKnrluq9Uu4lQ" - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "index_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "orUjk20Bd_aHqZFw9Exc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "indices_stats": { - "_all": { - "primaries": { - "docs": { - "count": 112629702904 - }, - "indexing": { - "index_time_in_millis": 17157918715, - "index_total": 15932514617, - "is_throttled": false, - "throttle_time_in_millis": 0 - }, - "search": { - "query_time_in_millis": 294031485, - "query_total": 47176768 - }, - "store": { - "size_in_bytes": 79270374954541 - } - }, - "total": { - "docs": { - "count": 225259150277 - }, - "indexing": { - "index_time_in_millis": 32844288952, - "index_total": 31864737439, - "is_throttled": false, - "throttle_time_in_millis": 0 - }, - "search": { - "query_time_in_millis": 517204729, - "query_total": 83114828 - }, - "store": { - "size_in_bytes": 158507625466277 - } - } - } - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:09.288Z", - "type": "indices_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "6rUjk20Bd_aHqZFw8Us7", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 194730333, - "read_kilobytes": 29942307684, - "read_operations": 71276259, - "write_kilobytes": 33653123940, - "write_operations": 123454074 - } - }, - "total": { - "available_in_bytes": 1532892839936, - "free_in_bytes": 1821000679424, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5454030500 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 699, - "hit_count": 7971, - "memory_size_in_bytes": 167569948, - "miss_count": 52833 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1218, - "memory_size_in_bytes": 9625631, - "miss_count": 6733 - }, - "search": { - "query_time_in_millis": 166240139, - "query_total": 138587 - }, - "segments": { - "count": 258, - "doc_values_memory_in_bytes": 10612214, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4202035905, - "norms_memory_in_bytes": 84352, - "points_memory_in_bytes": 476320283, - "stored_fields_memory_in_bytes": 1482623456, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2232395600, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3806938745693 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 9984 - }, - "young": { - "collection_count": 250538, - "collection_time_in_millis": 7712329 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 12437881920, - "heap_used_percent": 38 - } - }, - "mlockall": true, - "node_id": "flL9OS4TR8Kjmm-rTVHU5g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2307765150077891 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60736880640" - } - }, - "cpu": { - "load_average": { - "15m": 0.61, - "1m": 0.72, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2504 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:09.241Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "timestamp": "2019-10-03T19:41:09.241Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "4rUjk20Bd_aHqZFw8Etk", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5060154354, - "read_kilobytes": 35489065156, - "read_operations": 2963535193, - "write_kilobytes": 162182908516, - "write_operations": 2096619161 - } - }, - "total": { - "available_in_bytes": 571312750592, - "free_in_bytes": 667348701184, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1632394856 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2264 - }, - "indexing": { - "index_time_in_millis": 29067094611, - "index_total": 27298333574, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 48167, - "hit_count": 4751374, - "memory_size_in_bytes": 521604112, - "miss_count": 1640339 - }, - "request_cache": { - "evictions": 0, - "hit_count": 975262, - "memory_size_in_bytes": 16528, - "miss_count": 58373 - }, - "search": { - "query_time_in_millis": 403463060, - "query_total": 6258737 - }, - "segments": { - "count": 951, - "doc_values_memory_in_bytes": 14181922, - "fixed_bit_set_memory_in_bytes": 38656, - "index_writer_memory_in_bytes": 709771358, - "memory_in_bytes": 1604327442, - "norms_memory_in_bytes": 262784, - "points_memory_in_bytes": 159434816, - "stored_fields_memory_in_bytes": 459693888, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 970754032, - "version_map_memory_in_bytes": 2106894 - }, - "store": { - "size_in_bytes": 1217738463202 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8100, - "collection_time_in_millis": 1379038 - }, - "young": { - "collection_count": 3537308, - "collection_time_in_millis": 350757469 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 10606295488, - "heap_used_percent": 33 - } - }, - "mlockall": true, - "node_id": "08NXHjcqQQaenDpdQugS4w", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 28124532683667844 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61027311616" - } - }, - "cpu": { - "load_average": { - "15m": 14.22, - "1m": 13.1, - "5m": 14.49 - } - } - }, - "process": { - "cpu": { - "percent": 49 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3400 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 16 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 276, - "rejected": 346629, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:08.935Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "timestamp": "2019-10-03T19:41:08.937Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "3rUjk20Bd_aHqZFw70v3", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200389923, - "read_kilobytes": 30292260040, - "read_operations": 75128215, - "write_kilobytes": 34505955284, - "write_operations": 125261708 - } - }, - "total": { - "available_in_bytes": 1530100629504, - "free_in_bytes": 1818208468992, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5447280192 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 16009656 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1238, - "hit_count": 13135, - "memory_size_in_bytes": 325970934, - "miss_count": 96667 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2609, - "memory_size_in_bytes": 14324224, - "miss_count": 8724 - }, - "search": { - "query_time_in_millis": 169937568, - "query_total": 132614 - }, - "segments": { - "count": 316, - "doc_values_memory_in_bytes": 11538710, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4225189807, - "norms_memory_in_bytes": 105600, - "points_memory_in_bytes": 477294759, - "stored_fields_memory_in_bytes": 1481491128, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2254759610, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3809513051587 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 1893 - }, - "young": { - "collection_count": 255495, - "collection_time_in_millis": 7819237 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 11277850568, - "heap_used_percent": 35 - } - }, - "mlockall": true, - "node_id": "1B2TfiFoSCCBO_h2zoYbaQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2321570799127735 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60660019200" - } - }, - "cpu": { - "load_average": { - "15m": 0.57, - "1m": 0.62, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2585 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 51 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:08.893Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "timestamp": "2019-10-03T19:41:08.893Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ALUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "job_stats": { - "assignment_explanation": "", - "data_counts": { - "bucket_count": 25261, - "earliest_record_timestamp": 1549230113006, - "empty_bucket_count": 424, - "input_bytes": 613282739, - "input_field_count": 13135858, - "input_record_count": 6567929, - "invalid_date_count": 0, - "job_id": "campus-eps-5m", - "last_data_time": 1556808559685, - "latest_empty_bucket_timestamp": 1556291700000, - "latest_record_timestamp": 1556808358142, - "latest_sparse_bucket_timestamp": 1554130500000, - "missing_field_count": 0, - "out_of_order_timestamp_count": 0, - "processed_field_count": 6567929, - "processed_record_count": 6567929, - "sparse_bucket_count": 4 - }, - "forecasts_stats": { - "forecasted_jobs": 0, - "total": 0 - }, - "job_id": "campus-eps-5m", - "model_size_stats": { - "bucket_allocation_failures_count": 0, - "job_id": "campus-eps-5m", - "log_time": 1570130059000, - "memory_status": "ok", - "model_bytes": 423066, - "result_type": "model_size_stats", - "timestamp": 1570129800000, - "total_by_field_count": 9, - "total_over_field_count": 0, - "total_partition_field_count": 8 - }, - "node": { - "attributes": { - "host_id": "41-az10-dc-ent", - "ml.machine_memory": "67387686912", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "mb403imcT1eex3Xbz7K8lw", - "id": "Le2_4P3sQryTDAMKA8BLFQ", - "name": "cli1-41-az10-dc-ent", - "transport_address": "172.16.1.72:9300" - }, - "open_time": "3548368s", - "state": "opened" - }, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:08.884Z", - "type": "job_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "AbUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "job_stats": { - "data_counts": { - "bucket_count": 3, - "earliest_record_timestamp": 1549306228492, - "empty_bucket_count": 0, - "input_bytes": 16319326947, - "input_field_count": 261635038, - "input_record_count": 203168402, - "invalid_date_count": 0, - "job_id": "dest_org_in-degree", - "last_data_time": 1549460140977, - "latest_record_timestamp": 1549308616096, - "missing_field_count": 144701766, - "out_of_order_timestamp_count": 0, - "processed_field_count": 261635038, - "processed_record_count": 203168402, - "sparse_bucket_count": 0 - }, - "forecasts_stats": { - "forecasted_jobs": 0, - "total": 0 - }, - "job_id": "dest_org_in-degree", - "model_size_stats": { - "bucket_allocation_failures_count": 0, - "job_id": "dest_org_in-degree", - "log_time": 1549460253000, - "memory_status": "ok", - "model_bytes": 261298838, - "result_type": "model_size_stats", - "timestamp": 1549307700000, - "total_by_field_count": 3, - "total_over_field_count": 14412, - "total_partition_field_count": 2 - }, - "state": "closed" - }, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:08.884Z", - "type": "job_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ArUjk20Bd_aHqZFw9Exb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "job_stats": { - "assignment_explanation": "", - "data_counts": { - "bucket_count": 24967, - "earliest_record_timestamp": 1549318434820, - "empty_bucket_count": 420, - "input_bytes": 458932637, - "input_field_count": 12961858, - "input_record_count": 6480929, - "invalid_date_count": 0, - "job_id": "sensor-details-5m", - "last_data_time": 1556808566760, - "latest_empty_bucket_timestamp": 1556291700000, - "latest_record_timestamp": 1556808358142, - "latest_sparse_bucket_timestamp": 1554130500000, - "missing_field_count": 0, - "out_of_order_timestamp_count": 0, - "processed_field_count": 6480929, - "processed_record_count": 6480929, - "sparse_bucket_count": 2 - }, - "forecasts_stats": { - "forecasted_jobs": 0, - "total": 0 - }, - "job_id": "sensor-details-5m", - "model_size_stats": { - "bucket_allocation_failures_count": 0, - "job_id": "sensor-details-5m", - "log_time": 1570123466000, - "memory_status": "ok", - "model_bytes": 17193798, - "result_type": "model_size_stats", - "timestamp": 1570123200000, - "total_by_field_count": 318, - "total_over_field_count": 0, - "total_partition_field_count": 317 - }, - "node": { - "attributes": { - "host_id": "41-az10-dc-ent", - "ml.machine_memory": "67387686912", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "mb403imcT1eex3Xbz7K8lw", - "id": "Le2_4P3sQryTDAMKA8BLFQ", - "name": "cli1-41-az10-dc-ent", - "transport_address": "172.16.1.72:9300" - }, - "open_time": "3548368s", - "state": "opened" - }, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:08.884Z", - "type": "job_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "37Ujk20Bd_aHqZFw70v8", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 4994851647, - "read_kilobytes": 35542905308, - "read_operations": 2929335161, - "write_kilobytes": 158561185844, - "write_operations": 2065516486 - } - }, - "total": { - "available_in_bytes": 610237124608, - "free_in_bytes": 706273071104, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1629619760 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1504 - }, - "indexing": { - "index_time_in_millis": 26494559184, - "index_total": 27315539876, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 29090, - "hit_count": 1555516, - "memory_size_in_bytes": 546739704, - "miss_count": 1523698 - }, - "request_cache": { - "evictions": 0, - "hit_count": 331881, - "memory_size_in_bytes": 11753, - "miss_count": 5032 - }, - "search": { - "query_time_in_millis": 348514044, - "query_total": 5704658 - }, - "segments": { - "count": 982, - "doc_values_memory_in_bytes": 15391284, - "fixed_bit_set_memory_in_bytes": 6192, - "index_writer_memory_in_bytes": 883502565, - "memory_in_bytes": 1614139369, - "norms_memory_in_bytes": 306624, - "points_memory_in_bytes": 159208108, - "stored_fields_memory_in_bytes": 459569896, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 979663457, - "version_map_memory_in_bytes": 94430119 - }, - "store": { - "size_in_bytes": 1178765052197 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7956, - "collection_time_in_millis": 1151931 - }, - "young": { - "collection_count": 3936943, - "collection_time_in_millis": 283698064 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 14864851344, - "heap_used_percent": 46 - } - }, - "mlockall": true, - "node_id": "t1HJSnHUT22LT5RFSeow8A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 29206138738883964 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60156088320" - } - }, - "cpu": { - "load_average": { - "15m": 13.26, - "1m": 11.48, - "5m": 12.98 - } - } - }, - "process": { - "cpu": { - "percent": 52 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3240 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 46, - "rejected": 696593, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:08.788Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "timestamp": "2019-10-03T19:41:08.795Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "3LUjk20Bd_aHqZFw7kvy", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200582417, - "read_kilobytes": 31070493240, - "read_operations": 74249869, - "write_kilobytes": 34933919200, - "write_operations": 126332548 - } - }, - "total": { - "available_in_bytes": 1567768702976, - "free_in_bytes": 1855876542464, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5394232589 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 24885960 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1874, - "hit_count": 18591, - "memory_size_in_bytes": 301622065, - "miss_count": 113647 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4107, - "memory_size_in_bytes": 17033242, - "miss_count": 10403 - }, - "search": { - "query_time_in_millis": 161935391, - "query_total": 137664 - }, - "segments": { - "count": 276, - "doc_values_memory_in_bytes": 10869550, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4171602324, - "norms_memory_in_bytes": 93184, - "points_memory_in_bytes": 472025727, - "stored_fields_memory_in_bytes": 1466111728, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2222502135, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3768197644281 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1684 - }, - "young": { - "collection_count": 254808, - "collection_time_in_millis": 7563404 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 21587961184, - "heap_used_percent": 67 - } - }, - "mlockall": true, - "node_id": "-T_cq0TLQjqlvpX0iVCBNg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2358644540041143 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60191813632" - } - }, - "cpu": { - "load_average": { - "15m": 0.61, - "1m": 0.47, - "5m": 0.67 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2561 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:08.646Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "timestamp": "2019-10-03T19:41:08.646Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "27Ujk20Bd_aHqZFw7kve", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5264537935, - "read_kilobytes": 38766375308, - "read_operations": 3007883553, - "write_kilobytes": 164583243464, - "write_operations": 2256654382 - } - }, - "total": { - "available_in_bytes": 593937514496, - "free_in_bytes": 689973460992, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1633616373 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 122672 - }, - "indexing": { - "index_time_in_millis": 24601861919, - "index_total": 28002676807, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 47526, - "hit_count": 4836144, - "memory_size_in_bytes": 535261417, - "miss_count": 1654855 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1186346, - "memory_size_in_bytes": 3983749, - "miss_count": 66448 - }, - "search": { - "query_time_in_millis": 435490382, - "query_total": 7097349 - }, - "segments": { - "count": 1062, - "doc_values_memory_in_bytes": 15288652, - "fixed_bit_set_memory_in_bytes": 39192, - "index_writer_memory_in_bytes": 509042438, - "memory_in_bytes": 1616497966, - "norms_memory_in_bytes": 286848, - "points_memory_in_bytes": 159720032, - "stored_fields_memory_in_bytes": 461735872, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 979466562, - "version_map_memory_in_bytes": 741321 - }, - "store": { - "size_in_bytes": 1194471665409 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7975, - "collection_time_in_millis": 1237745 - }, - "young": { - "collection_count": 4123721, - "collection_time_in_millis": 316785747 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 11333863864, - "heap_used_percent": 35 - } - }, - "mlockall": true, - "node_id": "nsqq83wGTkGsNqslvlybiA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 26802381233985116 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61000278016" - } - }, - "cpu": { - "load_average": { - "15m": 12.26, - "1m": 11.48, - "5m": 12.05 - } - } - }, - "process": { - "cpu": { - "percent": 40 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3341 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 101, - "rejected": 291952, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.71", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.644Z", - "transport_address": "172.16.0.71:9300", - "uuid": "nsqq83wGTkGsNqslvlybiA" - }, - "timestamp": "2019-10-03T19:41:08.517Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "2rUjk20Bd_aHqZFw7kvH", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5276685763, - "read_kilobytes": 36136593412, - "read_operations": 2993991536, - "write_kilobytes": 165649313060, - "write_operations": 2282694227 - } - }, - "total": { - "available_in_bytes": 602776137728, - "free_in_bytes": 698812084224, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1631908297 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 4608 - }, - "indexing": { - "index_time_in_millis": 23663087793, - "index_total": 28289748047, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 27398, - "hit_count": 1492991, - "memory_size_in_bytes": 518982138, - "miss_count": 1425547 - }, - "request_cache": { - "evictions": 0, - "hit_count": 219, - "memory_size_in_bytes": 14985, - "miss_count": 430 - }, - "search": { - "query_time_in_millis": 359410247, - "query_total": 9096334 - }, - "segments": { - "count": 939, - "doc_values_memory_in_bytes": 14171224, - "fixed_bit_set_memory_in_bytes": 1352, - "index_writer_memory_in_bytes": 268595360, - "memory_in_bytes": 1611952680, - "norms_memory_in_bytes": 267008, - "points_memory_in_bytes": 159373624, - "stored_fields_memory_in_bytes": 461761440, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 976379384, - "version_map_memory_in_bytes": 3524256 - }, - "store": { - "size_in_bytes": 1186152000914 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7837, - "collection_time_in_millis": 1196253 - }, - "young": { - "collection_count": 4083402, - "collection_time_in_millis": 310458581 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 18530647896, - "heap_used_percent": 57 - } - }, - "mlockall": true, - "node_id": "B3CAleM0QtCMcc9OgRH79g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 26117355780409670 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61065490432" - } - }, - "cpu": { - "load_average": { - "15m": 11.15, - "1m": 11.12, - "5m": 10.79 - } - } - }, - "process": { - "cpu": { - "percent": 74 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3221 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 53, - "rejected": 151119, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.51", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:08.512Z", - "transport_address": "172.16.0.51:9300", - "uuid": "B3CAleM0QtCMcc9OgRH79g" - }, - "timestamp": "2019-10-03T19:41:08.512Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "y7Ujk20Bd_aHqZFw7EuQ", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 199410596, - "read_kilobytes": 30540458484, - "read_operations": 73768738, - "write_kilobytes": 34723445836, - "write_operations": 125641858 - } - }, - "total": { - "available_in_bytes": 1573928198144, - "free_in_bytes": 1862036037632, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5413007051 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 721, - "hit_count": 6693, - "memory_size_in_bytes": 231152723, - "miss_count": 47393 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2170, - "memory_size_in_bytes": 9896648, - "miss_count": 6503 - }, - "search": { - "query_time_in_millis": 161353111, - "query_total": 135963 - }, - "segments": { - "count": 286, - "doc_values_memory_in_bytes": 10969784, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4183172363, - "norms_memory_in_bytes": 94272, - "points_memory_in_bytes": 473709705, - "stored_fields_memory_in_bytes": 1470733016, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2227665586, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3784100301267 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11779 - }, - "young": { - "collection_count": 249922, - "collection_time_in_millis": 7560167 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 20617970432, - "heap_used_percent": 64 - } - }, - "mlockall": true, - "node_id": "OVW5WfABQ_GG_SYE3HrJzw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2317009647231185 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60691193856" - } - }, - "cpu": { - "load_average": { - "15m": 0.31, - "1m": 0.43, - "5m": 0.38 - } - } - }, - "process": { - "cpu": { - "percent": 5 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2549 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 45 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:08.032Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "timestamp": "2019-10-03T19:41:08.033Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "xrUjk20Bd_aHqZFw6kuv", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 194439796, - "read_kilobytes": 30593866724, - "read_operations": 72419567, - "write_kilobytes": 33022412180, - "write_operations": 122020229 - } - }, - "total": { - "available_in_bytes": 1576318259200, - "free_in_bytes": 1864426098688, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5411273593 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 27739592 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1802, - "hit_count": 17034, - "memory_size_in_bytes": 388528387, - "miss_count": 109984 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7707, - "memory_size_in_bytes": 17745648, - "miss_count": 10172 - }, - "search": { - "query_time_in_millis": 163341400, - "query_total": 138116 - }, - "segments": { - "count": 287, - "doc_values_memory_in_bytes": 11070064, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4181673245, - "norms_memory_in_bytes": 93760, - "points_memory_in_bytes": 473287417, - "stored_fields_memory_in_bytes": 1470308480, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2226913524, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3782820786756 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 188, - "collection_time_in_millis": 23561 - }, - "young": { - "collection_count": 351184, - "collection_time_in_millis": 12970452 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 10514660312, - "heap_used_percent": 32 - } - }, - "mlockall": true, - "node_id": "WnMyIlYBQqWW45a-TwpwqQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2475367711849453 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60722384896" - } - }, - "cpu": { - "load_average": { - "15m": 0.34, - "1m": 0.35, - "5m": 0.37 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2539 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 38 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:07.537Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "timestamp": "2019-10-03T19:41:07.537Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "wLUjk20Bd_aHqZFw6Us3", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 194339764, - "read_kilobytes": 30552165484, - "read_operations": 71641117, - "write_kilobytes": 33507070024, - "write_operations": 122698647 - } - }, - "total": { - "available_in_bytes": 1519692083200, - "free_in_bytes": 1807799922688, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5455791080 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 668, - "hit_count": 6337, - "memory_size_in_bytes": 184412224, - "miss_count": 42732 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3775, - "memory_size_in_bytes": 10782889, - "miss_count": 6666 - }, - "search": { - "query_time_in_millis": 171373052, - "query_total": 136204 - }, - "segments": { - "count": 277, - "doc_values_memory_in_bytes": 11190318, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4217812113, - "norms_memory_in_bytes": 102464, - "points_memory_in_bytes": 477223876, - "stored_fields_memory_in_bytes": 1483111488, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2246183967, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3817875105909 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10230 - }, - "young": { - "collection_count": 256442, - "collection_time_in_millis": 7919212 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 16250214928, - "heap_used_percent": 50 - } - }, - "mlockall": true, - "node_id": "B-eD78fVS1G5st41XrrsQQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2304096738568486 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60667494400" - } - }, - "cpu": { - "load_average": { - "15m": 0.59, - "1m": 0.62, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 6 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2554 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 38 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:07.168Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "timestamp": "2019-10-03T19:41:07.168Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "UbUjk20Bd_aHqZFw6Euy", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 206098533, - "read_kilobytes": 31076168472, - "read_operations": 77024354, - "write_kilobytes": 36343466428, - "write_operations": 129074179 - } - }, - "total": { - "available_in_bytes": 1523762376704, - "free_in_bytes": 1811870216192, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5453314542 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 26721296 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1489, - "hit_count": 15307, - "memory_size_in_bytes": 291546378, - "miss_count": 100342 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2428, - "memory_size_in_bytes": 14261343, - "miss_count": 8695 - }, - "search": { - "query_time_in_millis": 169428773, - "query_total": 137423 - }, - "segments": { - "count": 275, - "doc_values_memory_in_bytes": 11075040, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4216248827, - "norms_memory_in_bytes": 98624, - "points_memory_in_bytes": 477008119, - "stored_fields_memory_in_bytes": 1482615560, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2245451484, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3815831207950 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 17, - "collection_time_in_millis": 10634 - }, - "young": { - "collection_count": 262817, - "collection_time_in_millis": 8079412 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 6635799184, - "heap_used_percent": 20 - } - }, - "mlockall": true, - "node_id": "z8Ei5tIfSmq-y8ieUeAKiw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2404880947843101 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60650594304" - } - }, - "cpu": { - "load_average": { - "15m": 0.53, - "1m": 0.46, - "5m": 0.57 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2551 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 42 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:07.038Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "timestamp": "2019-10-03T19:41:07.038Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "TrUjk20Bd_aHqZFw6Eto", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200800554, - "read_kilobytes": 31383937612, - "read_operations": 75501901, - "write_kilobytes": 34234992920, - "write_operations": 125298653 - } - }, - "total": { - "available_in_bytes": 1550879670272, - "free_in_bytes": 1838987509760, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5415028481 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1485, - "hit_count": 15466, - "memory_size_in_bytes": 482666620, - "miss_count": 111496 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5661, - "memory_size_in_bytes": 21398972, - "miss_count": 12404 - }, - "search": { - "query_time_in_millis": 169804917, - "query_total": 138472 - }, - "segments": { - "count": 279, - "doc_values_memory_in_bytes": 10869578, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4190795676, - "norms_memory_in_bytes": 94720, - "points_memory_in_bytes": 473987189, - "stored_fields_memory_in_bytes": 1472406640, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233437549, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3786594477419 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 1914 - }, - "young": { - "collection_count": 259345, - "collection_time_in_millis": 7744655 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 20193506056, - "heap_used_percent": 62 - } - }, - "mlockall": true, - "node_id": "nntzfh-vQpWHs0j_BZ-wWQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2387689213509021 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60823588864" - } - }, - "cpu": { - "load_average": { - "15m": 0.69, - "1m": 0.88, - "5m": 0.85 - } - } - }, - "process": { - "cpu": { - "percent": 10 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2549 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.981Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "timestamp": "2019-10-03T19:41:06.981Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "T7Ujk20Bd_aHqZFw6Etv", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 205842866, - "read_kilobytes": 29843984752, - "read_operations": 74292566, - "write_kilobytes": 37572988620, - "write_operations": 131550300 - } - }, - "total": { - "available_in_bytes": 1530008379392, - "free_in_bytes": 1818116218880, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5446184497 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 26290400 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1832, - "hit_count": 19317, - "memory_size_in_bytes": 456601374, - "miss_count": 153116 - }, - "request_cache": { - "evictions": 0, - "hit_count": 6280, - "memory_size_in_bytes": 19063961, - "miss_count": 11036 - }, - "search": { - "query_time_in_millis": 161346826, - "query_total": 141529 - }, - "segments": { - "count": 285, - "doc_values_memory_in_bytes": 10975590, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4208099572, - "norms_memory_in_bytes": 91584, - "points_memory_in_bytes": 476361594, - "stored_fields_memory_in_bytes": 1479270848, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2241399956, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3814505248054 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11227 - }, - "young": { - "collection_count": 266914, - "collection_time_in_millis": 9624527 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 13845722064, - "heap_used_percent": 43 - } - }, - "mlockall": true, - "node_id": "bY-cxyR0RSuMiRYlV6Sj7g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2789379209978621 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60644737024" - } - }, - "cpu": { - "load_average": { - "15m": 0.71, - "1m": 1.02, - "5m": 0.9 - } - } - }, - "process": { - "cpu": { - "percent": 11 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2543 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 35 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.980Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "timestamp": "2019-10-03T19:41:06.980Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "QbUjk20Bd_aHqZFw50ul", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 196931017, - "read_kilobytes": 30456338420, - "read_operations": 72481035, - "write_kilobytes": 34236858584, - "write_operations": 124449982 - } - }, - "total": { - "available_in_bytes": 1519780691968, - "free_in_bytes": 1807888535552, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5461603626 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1067, - "hit_count": 9431, - "memory_size_in_bytes": 280007243, - "miss_count": 66833 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1949, - "memory_size_in_bytes": 11290923, - "miss_count": 7510 - }, - "search": { - "query_time_in_millis": 169113118, - "query_total": 137831 - }, - "segments": { - "count": 274, - "doc_values_memory_in_bytes": 11034758, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4224837929, - "norms_memory_in_bytes": 96256, - "points_memory_in_bytes": 477616881, - "stored_fields_memory_in_bytes": 1485531584, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2250558450, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3819579457804 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10524 - }, - "young": { - "collection_count": 255938, - "collection_time_in_millis": 7887020 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 13768192784, - "heap_used_percent": 42 - } - }, - "mlockall": true, - "node_id": "u5zemFgXTC6TattN4B6gbw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2307883039045773 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60703772672" - } - }, - "cpu": { - "load_average": { - "15m": 0.58, - "1m": 0.48, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2558 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 34 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.766Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "timestamp": "2019-10-03T19:41:06.766Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "PrUjk20Bd_aHqZFw50tX", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 205111011, - "read_kilobytes": 31782530932, - "read_operations": 76285137, - "write_kilobytes": 35886257852, - "write_operations": 128825874 - } - }, - "total": { - "available_in_bytes": 1544729870336, - "free_in_bytes": 1832837709824, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5424455550 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1131, - "hit_count": 12349, - "memory_size_in_bytes": 499031788, - "miss_count": 104863 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2205, - "memory_size_in_bytes": 17734046, - "miss_count": 10748 - }, - "search": { - "query_time_in_millis": 169365484, - "query_total": 135214 - }, - "segments": { - "count": 246, - "doc_values_memory_in_bytes": 10477280, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4178246004, - "norms_memory_in_bytes": 85696, - "points_memory_in_bytes": 473865852, - "stored_fields_memory_in_bytes": 1473638184, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2220178992, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3795432319032 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 17, - "collection_time_in_millis": 2207 - }, - "young": { - "collection_count": 267729, - "collection_time_in_millis": 8029682 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 6488235584, - "heap_used_percent": 20 - } - }, - "mlockall": true, - "node_id": "VmhwK5_HQFyAiiI5TDcWUg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2438197427081684 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60750888960" - } - }, - "cpu": { - "load_average": { - "15m": 0.53, - "1m": 0.64, - "5m": 0.59 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2504 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.692Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "timestamp": "2019-10-03T19:41:06.692Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "_rUjk20Bd_aHqZFw9Etb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_name": "osoc-iu", - "cluster_state": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "master_node": "rFjThHZdRvyhpF0aMT7fTw", - "nodes": { - "-T_cq0TLQjqlvpX0iVCBNg": { - "attributes": { - "box_type": "warm", - "host_id": "21-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "1Xu_F6X5SqWZ9PN1pR_M3g", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "-hZOu0UJTHSbkZVSFPUYVw": { - "attributes": { - "box_type": "hot", - "host_id": "34-az10-dc-ent", - "ml.machine_memory": "63158951936", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "NEvORXOkTjaWQ8rzMTHXTg", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "08NXHjcqQQaenDpdQugS4w": { - "attributes": { - "box_type": "hot", - "host_id": "35-az10-dc-ent", - "ml.machine_memory": "63158697984", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "58uCCWvGQCOMQMT9hkPXAA", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "1B2TfiFoSCCBO_h2zoYbaQ": { - "attributes": { - "box_type": "warm", - "host_id": "30-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "vhXug9fMQleu3vxWgiaG0Q", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "2-cKgQ3uRxqku-4pJxya9g": { - "attributes": { - "box_type": "warm", - "host_id": "23-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "rIP6dTtcQnucdPwl1yS2RA", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "2B-6sKqQR8y9L52cChtT-A": { - "attributes": { - "box_type": "warm", - "host_id": "24-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "SrxbP560T_6fwA853PLd8g", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "3VXPo0aBTgqBWoZyG7VeDQ": { - "attributes": { - "box_type": "hot", - "host_id": "32-az10-dc-ent", - "ml.machine_memory": "63158665216", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "82ec_pYbQqGqX20MWnEsDQ", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "4EgMjLR8S0G9aJs7AB-Z0g": { - "attributes": { - "box_type": "hot", - "host_id": "36-az10-dc-ent", - "ml.machine_memory": "63157981184", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "NxvUGkg5Sc6uNZ7bMhndBw", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "4zqr4ku4RrSZJtrZSN5Mlg": { - "attributes": { - "box_type": "hot", - "host_id": "32-az10-dc-ent", - "ml.machine_memory": "63158951936", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "vIPamYHsTNOFsGPgyCjBJg", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "8FwJYnAMT0afpHOfKlA0Sg": { - "attributes": { - "box_type": "warm", - "host_id": "21-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "OitNzgxPSium3wqL9kT2Fg", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "8c-ntk3fQ4yuDO4SolrmgQ": { - "attributes": { - "box_type": "warm", - "host_id": "22-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "U60seLhMQBu5QE3MxSFVSw", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "98npGP6HRPu5OOG4hRYbiA": { - "attributes": { - "box_type": "hot", - "host_id": "33-az10-dc-ent", - "ml.machine_memory": "63158697984", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "YETTn4YlTOuVLuVNaLzP6w", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "9uYu0U-tSjifvO6YLvNY5Q": { - "attributes": { - "box_type": "warm", - "host_id": "26-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "8vFfI9o6SuGh7IMSPvQ8Ig", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "AgMbpH0STqKRLxslxMXtIw": { - "attributes": { - "box_type": "warm", - "host_id": "19-az10-dc-ent", - "ml.machine_memory": "63159828480", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "B_KAo6ZwQaqr6RBb4-wX0Q", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "B-eD78fVS1G5st41XrrsQQ": { - "attributes": { - "box_type": "warm", - "host_id": "29-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "5Hs1p4yIQfahHaKzx-p0aA", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "B3CAleM0QtCMcc9OgRH79g": { - "attributes": { - "box_type": "hot", - "host_id": "31-az10-dc-ent", - "ml.machine_memory": "63158951936", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "5cxzhgMvRCu0e7qq2ydkqA", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "BtNzO_LsQpqkgRgGHAhQxg": { - "attributes": { - "box_type": "warm", - "host_id": "29-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "gPZexEG_Tiud8Bd3mCO1JA", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "Elc3XlQ6S22vnPjQw-V2Fg": { - "attributes": { - "box_type": "hot", - "host_id": "31-az10-dc-ent", - "ml.machine_memory": "63158951936", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "zFh7Fe7eQgOOn2fTzdxtMg", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "F3SDHWgTTSSCRpFLRuTd7A": { - "attributes": { - "box_type": "warm", - "host_id": "28-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "c8ffntCrRyGo_tj73Ln2IQ", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "IbXa_L0vS0mePhKF9Uu-IA": { - "attributes": { - "box_type": "warm", - "host_id": "27-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "VckvdquEQRSZeU4VIGvaWw", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "IfVshWgoTqWkfmehFnarzQ": { - "attributes": { - "box_type": "warm", - "host_id": "23-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "9dsgRlp3SV641FE_49KJug", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "JCvzxsoFQ5KMUCNycmdzig": { - "attributes": { - "box_type": "warm", - "host_id": "21-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "jP1pvDrfRx2yWMfmLMUmRA", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "JT834ic5St6HS3oLbKcfVQ": { - "attributes": { - "box_type": "hot", - "host_id": "31-az10-dc-ent", - "ml.machine_memory": "63158665216", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "lp9O1j4CTC-pQbnW18URqw", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "KmYYNfYtTlKatZljOJheqQ": { - "attributes": { - "box_type": "warm", - "host_id": "30-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "RzayygY1R420wvMOh664uQ", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "Le2_4P3sQryTDAMKA8BLFQ": { - "attributes": { - "host_id": "41-az10-dc-ent", - "ml.machine_memory": "67387686912", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "mb403imcT1eex3Xbz7K8lw", - "name": "cli1-41-az10-dc-ent", - "transport_address": "172.16.1.72:9300" - }, - "LtCntqP6QjSpGIWEDnBaGQ": { - "attributes": { - "box_type": "hot", - "host_id": "36-az10-dc-ent", - "ml.machine_memory": "63158276096", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "G8MfybXbSO-iwwKjTF0gOw", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "O78sh8HUSkaInv_VIQ0vQw": { - "attributes": { - "box_type": "hot", - "host_id": "34-az10-dc-ent", - "ml.machine_memory": "63158665216", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "xixyMiY8Sk6ol4kN68GnPg", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "OVW5WfABQ_GG_SYE3HrJzw": { - "attributes": { - "box_type": "warm", - "host_id": "29-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "9JU-8PvMQzSiXA-o9l2lyw", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "PaCUGq4USRGkj6KDg995XA": { - "attributes": { - "host_id": "42-az10-dc-ent", - "ml.machine_memory": "67387686912", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "jFvqueWqTgS-6JXcfeK3NQ", - "name": "cli1-42-az10-dc-ent", - "transport_address": "172.16.1.232:9300" - }, - "QDlGTG9SRiatpVkMC42xGA": { - "attributes": { - "box_type": "hot", - "host_id": "36-az10-dc-ent", - "ml.machine_memory": "63158276096", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "5RUn8q7jTfi_32j7jEnuBQ", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "T5YTkUVTQIeK_uxA2QHQ9A": { - "attributes": { - "box_type": "warm", - "host_id": "27-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "PlkMFyU0T9CrYeuOMZ_m0w", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "VEO2NkvRRCaMPmF6ogMTRg": { - "attributes": { - "box_type": "warm", - "host_id": "30-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "dtwW98quRCSh4UcDd7dhJw", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "VXzx30rRR1GjnRBYLIi5gQ": { - "attributes": { - "box_type": "warm", - "host_id": "20-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "J8JsZbofQ5iZyDRqz5tQxQ", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "VmhwK5_HQFyAiiI5TDcWUg": { - "attributes": { - "box_type": "warm", - "host_id": "19-az10-dc-ent", - "ml.machine_memory": "63159828480", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "7DCkDUemRzG2HrktY4eOuQ", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "WnMyIlYBQqWW45a-TwpwqQ": { - "attributes": { - "box_type": "warm", - "host_id": "22-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "zSkWhOq5SiWqQ-bI2h6nXQ", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "Zy_SYWxzSxy4lYkPVjcOlA": { - "attributes": { - "box_type": "warm", - "host_id": "20-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "TOvyRqRFS56yuindOcbdzA", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "bFCSCT_UT_eM8eoTXP65RA": { - "attributes": { - "host_id": "42-az10-dc-ent", - "ml.machine_memory": "33567633408", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "4W7tD4k3SsGBmwXfSSd16Q", - "name": "mas1-42-az10-dc-ent", - "transport_address": "172.16.1.91:9300" - }, - "bY-cxyR0RSuMiRYlV6Sj7g": { - "attributes": { - "box_type": "warm", - "host_id": "23-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "0epr83l9Samn4F-cGq0l8A", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "bjttLXSrThG1vNJFq6JtDg": { - "attributes": { - "host_id": "41-az10-dc-ent", - "ml.machine_memory": "33567633408", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "HxXdfxyeRNOKunoKoliVDQ", - "name": "mas1-41-az10-dc-ent", - "transport_address": "172.16.1.46:9300" - }, - "flL9OS4TR8Kjmm-rTVHU5g": { - "attributes": { - "box_type": "warm", - "host_id": "20-az10-dc-ent", - "ml.machine_memory": "63092707328", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "o8-BDoi5TI6tUQlb2qcWxg", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "hRf9HsyRTZ-LGzhDBTZM3w": { - "attributes": { - "box_type": "hot", - "host_id": "33-az10-dc-ent", - "ml.machine_memory": "63158984704", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "VFuxn54DQO6NV2zO3lReXQ", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "i8xzV9jfRDmiKDVOkpiH1w": { - "attributes": { - "box_type": "warm", - "host_id": "25-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "A09zi6ixRFaL6p3JXv0lMQ", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "iAgoIxwKQAqddyXJJlHlCg": { - "attributes": { - "box_type": "warm", - "host_id": "26-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "QnxC3iXhQ6uNs8m-JH7YPw", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "iKB0877lSR6ocEzyKq9BRQ": { - "attributes": { - "box_type": "warm", - "host_id": "25-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "cjWuW8kcRh61MtVYFRgneA", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "jVAJY9H3RdqBQeJoQrxcnA": { - "attributes": { - "box_type": "hot", - "host_id": "34-az10-dc-ent", - "ml.machine_memory": "63158951936", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "zcBmgKThQfidRs-wmoj-Mw", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "l01mdpHKTIycD8YpHgstOQ": { - "attributes": { - "box_type": "warm", - "host_id": "26-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "OkVGW2QCQbuCFTsObb13ZQ", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "lo4CBuVcRnylVW7aOLRxsA": { - "attributes": { - "box_type": "warm", - "host_id": "25-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "5nZjsbeIQlGlM60Cr_oXlA", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "nntzfh-vQpWHs0j_BZ-wWQ": { - "attributes": { - "box_type": "warm", - "host_id": "19-az10-dc-ent", - "ml.machine_memory": "63159828480", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "uqt_rGMwRRiK7ML7fINVKg", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "nsqq83wGTkGsNqslvlybiA": { - "attributes": { - "box_type": "hot", - "host_id": "32-az10-dc-ent", - "ml.machine_memory": "63158951936", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "kyEHqm1OQSiMcy_289_fuA", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "qdDv_MrWRPqL-9t_fjSk1A": { - "attributes": { - "box_type": "hot", - "host_id": "33-az10-dc-ent", - "ml.machine_memory": "63158984704", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "h5pEuvq0QBO5pEkaO63dcQ", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "quRSeXloStCNZe-DZ5ec7g": { - "attributes": { - "box_type": "warm", - "host_id": "24-az10-dc-ent", - "ml.machine_memory": "63092711424", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "0vS6YAIVTh2Gs_K1SOYE8A", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "rFjThHZdRvyhpF0aMT7fTw": { - "attributes": { - "host_id": "40-az10-dc-ent", - "ml.machine_memory": "33567633408", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "RlsaN8OXQ_eX1JxSr07xQA", - "name": "mas1-40-az10-dc-ent", - "transport_address": "172.16.1.38:9300" - }, - "sZG2ItuSQHOOhGuVlbbgGQ": { - "attributes": { - "box_type": "warm", - "host_id": "28-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "bTC2tpmGSLiDAf540qJ3Ag", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "t1HJSnHUT22LT5RFSeow8A": { - "attributes": { - "box_type": "hot", - "host_id": "35-az10-dc-ent", - "ml.machine_memory": "63158996992", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "aKNMO8jvTvCwTeJ9UBkEMA", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "tdFhsZDUS3OMXKKSgB31iA": { - "attributes": { - "box_type": "warm", - "host_id": "24-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "vcRncEyBSM-ghT8zVobtGQ", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "u5zemFgXTC6TattN4B6gbw": { - "attributes": { - "box_type": "warm", - "host_id": "28-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "CnFT64q8SiuxPkoV02AuHg", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "wgF8TsDeTVyBurL3xct0DQ": { - "attributes": { - "box_type": "hot", - "host_id": "35-az10-dc-ent", - "ml.machine_memory": "63159001088", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "ZI7sqVSDRTyoJR1EYe6PoQ", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "z29jmIBjT0atD5RMcz07Bw": { - "attributes": { - "box_type": "warm", - "host_id": "27-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "4HCDqShbTJ2my7wkV9Bwfw", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "z8Ei5tIfSmq-y8ieUeAKiw": { - "attributes": { - "box_type": "warm", - "host_id": "22-az10-dc-ent", - "ml.machine_memory": "63092695040", - "ml.max_open_jobs": "20", - "xpack.installed": "true" - }, - "ephemeral_id": "o8z8ZNa8RCGzPSdVnT4DPA", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - } - }, - "nodes_hash": 716476759, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "status": "green", - "version": 202190 - }, - "cluster_stats": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "indices": { - "completion": { - "size_in_bytes": 0 - }, - "count": 159, - "docs": { - "count": 112627482592, - "deleted": 848769869 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 426306784 - }, - "query_cache": { - "cache_count": 1746627, - "cache_size": 1088392, - "evictions": 658235, - "hit_count": 50880479, - "memory_size_in_bytes": 19449454634, - "miss_count": 28842021, - "total_count": 79722500 - }, - "segments": { - "count": 27443, - "doc_values_memory_in_bytes": 660946504, - "file_sizes": { - }, - "fixed_bit_set_memory_in_bytes": 399168, - "index_writer_memory_in_bytes": 12545131198, - "max_unsafe_auto_id_timestamp": 1570130501211, - "memory_in_bytes": 180338506974, - "norms_memory_in_bytes": 8341184, - "points_memory_in_bytes": 20000469709, - "stored_fields_memory_in_bytes": 61534762448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 98133987129, - "version_map_memory_in_bytes": 235185246 - }, - "shards": { - "index": { - "primaries": { - "avg": 10.628930817610064, - "max": 18, - "min": 1 - }, - "replication": { - "avg": 1.0377358490566038, - "max": 5, - "min": 1 - }, - "shards": { - "avg": 21.29559748427673, - "max": 36, - "min": 2 - } - }, - "primaries": 1690, - "replication": 1.0035502958579883, - "total": 3386 - }, - "store": { - "size_in_bytes": 158507239446343 - } - }, - "nodes": { - "count": { - "coordinating_only": 2, - "data": 54, - "ingest": 0, - "master": 3, - "total": 59 - }, - "discovery_types": { - "zen": 59 - }, - "fs": { - "available_in_bytes": 65948801167360, - "free_in_bytes": 78049330450432, - "total_in_bytes": 238250239680512 - }, - "jvm": { - "max_uptime_in_millis": 4142236379, - "mem": { - "heap_max_in_bytes": 1851153711104, - "heap_used_in_bytes": 860360493200 - }, - "threads": 11027, - "versions": [ - { - "bundled_jdk": true, - "count": 59, - "using_bundled_jdk": true, - "version": "12.0.1", - "vm_name": "OpenJDK 64-Bit Server VM", - "vm_vendor": "Oracle Corporation", - "vm_version": "12.0.1+12" - } - ] - }, - "network_types": { - "http_types": { - "security4": 59 - }, - "transport_types": { - "security4": 59 - } - }, - "os": { - "allocated_processors": 544, - "available_processors": 544, - "mem": { - "free_in_bytes": 116471070720, - "free_percent": 3, - "total_in_bytes": 3643874328576, - "used_in_bytes": 3527403257856, - "used_percent": 97 - }, - "names": [ - { - "count": 59, - "name": "Linux" - } - ], - "pretty_names": [ - { - "count": 59, - "pretty_name": "CentOS Linux 7 (Core)" - } - ] - }, - "plugins": [ - { - "classname": "org.elasticsearch.repositories.s3.S3RepositoryPlugin", - "description": "The S3 repository plugin adds S3 repositories", - "elasticsearch_version": "7.0.1", - "extended_plugins": [ - ], - "has_native_controller": false, - "java_version": "1.8", - "name": "repository-s3", - "version": "7.0.1" - } - ], - "process": { - "cpu": { - "percent": 1492 - }, - "open_file_descriptors": { - "avg": 2701, - "max": 3412, - "min": 1607 - } - }, - "versions": [ - "7.0.1" - ] - }, - "status": "green", - "timestamp": 1570131665304 - }, - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "license": { - "expiry_date": "2020-11-19T23:59:59.999Z", - "expiry_date_in_millis": 1605830399999, - "issue_date": "2018-10-31T00:00:00.000Z", - "issue_date_in_millis": 1540944000000, - "issued_to": "Indiana University", - "issuer": "Magdalena Kowalska", - "max_nodes": 210, - "start_date_in_millis": 1540944000000, - "status": "active", - "type": "platinum", - "uid": "585994b5-1e40-4575-8a3b-ef4c5c6881c2" - }, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "stack_stats": { - "apm": { - "found": false - }, - "xpack": { - "ccr": { - "auto_follow_patterns_count": 0, - "available": true, - "enabled": true, - "follower_indices_count": 0 - }, - "graph": { - "available": true, - "enabled": true - }, - "ilm": { - "policy_count": 5, - "policy_stats": [ - { - "indices_managed": 86, - "phases": { - "delete": { - "actions": [ - "delete" - ], - "min_age": 1555200000 - }, - "hot": { - "actions": [ - "rollover", - "set_priority" - ], - "min_age": 0 - }, - "warm": { - "actions": [ - "allocate", - "forcemerge", - "set_priority" - ], - "min_age": 172800000 - } - } - }, - { - "indices_managed": 29, - "phases": { - "delete": { - "actions": [ - "delete" - ], - "min_age": 2419200000 - }, - "hot": { - "actions": [ - "rollover", - "set_priority" - ], - "min_age": 0 - }, - "warm": { - "actions": [ - "allocate", - "forcemerge", - "set_priority" - ], - "min_age": 172800000 - } - } - }, - { - "indices_managed": 0, - "phases": { - "delete": { - "actions": [ - "delete" - ], - "min_age": 2160000000 - }, - "hot": { - "actions": [ - "set_priority" - ], - "min_age": 0 - }, - "warm": { - "actions": [ - "allocate", - "forcemerge", - "set_priority" - ], - "min_age": 129600000 - } - } - }, - { - "indices_managed": 0, - "phases": { - "delete": { - "actions": [ - "delete" - ], - "min_age": 2592000000 - }, - "hot": { - "actions": [ - "set_priority" - ], - "min_age": 0 - }, - "warm": { - "actions": [ - "allocate", - "forcemerge", - "set_priority" - ], - "min_age": 129600000 - } - } - }, - { - "indices_managed": 0, - "phases": { - "delete": { - "actions": [ - "delete" - ], - "min_age": 604800000 - } - } - } - ] - }, - "logstash": { - "available": true, - "enabled": true - }, - "ml": { - "available": true, - "datafeeds": { - "_all": { - "count": 3 - }, - "started": { - "count": 2 - }, - "stopped": { - "count": 1 - } - }, - "enabled": true, - "jobs": { - "_all": { - "count": 3, - "detectors": { - "avg": 1, - "max": 1, - "min": 1, - "total": 3 - }, - "forecasts": { - "forecasted_jobs": 0, - "total": 0 - }, - "model_size": { - "avg": 92971900.66666667, - "max": 261298838, - "min": 423066, - "total": 278915702 - } - }, - "closed": { - "count": 1, - "detectors": { - "avg": 1, - "max": 1, - "min": 1, - "total": 1 - }, - "forecasts": { - "forecasted_jobs": 0, - "total": 0 - }, - "model_size": { - "avg": 261298838, - "max": 261298838, - "min": 261298838, - "total": 261298838 - } - }, - "opened": { - "count": 2, - "detectors": { - "avg": 1, - "max": 1, - "min": 1, - "total": 2 - }, - "forecasts": { - "forecasted_jobs": 0, - "total": 0 - }, - "model_size": { - "avg": 8808432, - "max": 17193798, - "min": 423066, - "total": 17616864 - } - } - }, - "node_count": 59 - }, - "monitoring": { - "available": true, - "collection_enabled": true, - "enabled": true, - "enabled_exporters": { - "http": 2 - } - }, - "rollup": { - "available": true, - "enabled": true - }, - "security": { - "anonymous": { - "enabled": false - }, - "audit": { - "enabled": false - }, - "available": true, - "enabled": true, - "ipfilter": { - "http": false, - "transport": false - }, - "realms": { - "active_directory": { - "available": true, - "enabled": false - }, - "file": { - "available": true, - "cache": [ - { - "size": 0 - } - ], - "enabled": true, - "name": [ - "default_file" - ], - "order": [ - 2147483647 - ], - "size": [ - 0 - ] - }, - "kerberos": { - "available": true, - "enabled": false - }, - "ldap": { - "available": true, - "enabled": false - }, - "native": { - "available": true, - "cache": [ - { - "size": 1 - } - ], - "enabled": true, - "name": [ - "default_native" - ], - "order": [ - 2147483647 - ], - "size": [ - 11 - ] - }, - "pki": { - "available": true, - "enabled": false - }, - "saml": { - "available": true, - "enabled": false - } - }, - "role_mapping": { - "native": { - "enabled": 4, - "size": 4 - } - }, - "roles": { - "file": { - "dls": false, - "fls": false, - "size": 0 - }, - "native": { - "dls": false, - "fls": false, - "size": 6 - } - }, - "ssl": { - "http": { - "enabled": true - }, - "transport": { - "enabled": true - } - } - }, - "sql": { - "available": true, - "enabled": true, - "features": { - "command": 0, - "groupby": 0, - "having": 0, - "join": 0, - "limit": 0, - "local": 0, - "orderby": 0, - "subselect": 0, - "where": 0 - }, - "queries": { - "_all": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "canvas": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "cli": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "jdbc": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "odbc": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "odbc32": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "odbc64": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "rest": { - "failed": 0, - "paging": 0, - "total": 0 - }, - "translate": { - "count": 0 - } - } - }, - "watcher": { - "available": true, - "count": { - "active": 8, - "total": 8 - }, - "enabled": true, - "execution": { - "actions": { - "_all": { - "total": 412391, - "total_time_in_ms": 134009951 - }, - "index": { - "total": 30, - "total_time_in_ms": 3013 - } - } - }, - "watch": { - "action": { - "_all": { - "active": 14, - "total": 14 - }, - "condition": { - "_all": { - "active": 6, - "total": 6 - }, - "script": { - "active": 6, - "total": 6 - } - }, - "email": { - "active": 6, - "total": 6 - }, - "index": { - "active": 8, - "total": 8 - }, - "transform": { - "_all": { - "active": 2, - "total": 2 - }, - "script": { - "active": 2, - "total": 2 - } - } - }, - "condition": { - "_all": { - "active": 8, - "total": 8 - }, - "script": { - "active": 8, - "total": 8 - } - }, - "input": { - "_all": { - "active": 8, - "total": 8 - }, - "chain": { - "active": 6, - "total": 6 - }, - "search": { - "active": 2, - "total": 2 - } - }, - "metadata": { - "active": 8, - "total": 8 - }, - "transform": { - "_all": { - "active": 6, - "total": 6 - }, - "script": { - "active": 6, - "total": 6 - } - }, - "trigger": { - "_all": { - "active": 8, - "total": 8 - }, - "schedule": { - "_all": { - "active": 8, - "total": 8 - }, - "active": 8, - "cron": { - "active": 2, - "total": 2 - }, - "interval": { - "active": 6, - "total": 6 - }, - "total": 8 - } - } - } - } - } - }, - "timestamp": "2019-10-03T19:41:06.409Z", - "type": "cluster_stats", - "version": "7.0.1" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "_7Ujk20Bd_aHqZFw9Etb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 1155955, - "read_kilobytes": 294916, - "read_operations": 5037, - "write_kilobytes": 18395603, - "write_operations": 1150918 - } - }, - "total": { - "available_in_bytes": 3864698880, - "free_in_bytes": 3864698880, - "total_in_bytes": 10725621760 - } - }, - "indices": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 0 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 2879, - "collection_time_in_millis": 142301 - }, - "young": { - "collection_count": 751919, - "collection_time_in_millis": 40790730 - } - } - }, - "mem": { - "heap_max_in_bytes": 17145004032, - "heap_used_in_bytes": 9520060328, - "heap_used_percent": 55 - } - }, - "mlockall": true, - "node_id": "rFjThHZdRvyhpF0aMT7fTw", - "node_master": true, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 724206943220724 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "22257774592" - } - }, - "cpu": { - "load_average": { - "15m": 0.36, - "1m": 0.25, - "5m": 0.39 - } - } - }, - "process": { - "cpu": { - "percent": 1 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 1607 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 61 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 7 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:06.409Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "JbUjk20Bd_aHqZFw5UuP", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5293029617, - "read_kilobytes": 39325949060, - "read_operations": 3098099315, - "write_kilobytes": 167442111572, - "write_operations": 2194930302 - } - }, - "total": { - "available_in_bytes": 564820008960, - "free_in_bytes": 660855963648, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1629333317 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1696 - }, - "indexing": { - "index_time_in_millis": 30747341194, - "index_total": 28058394815, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 47114, - "hit_count": 4234688, - "memory_size_in_bytes": 502481112, - "miss_count": 1610140 - }, - "request_cache": { - "evictions": 0, - "hit_count": 795407, - "memory_size_in_bytes": 18165, - "miss_count": 48799 - }, - "search": { - "query_time_in_millis": 495729535, - "query_total": 10357519 - }, - "segments": { - "count": 1008, - "doc_values_memory_in_bytes": 15429694, - "fixed_bit_set_memory_in_bytes": 37768, - "index_writer_memory_in_bytes": 597051592, - "memory_in_bytes": 1600068107, - "norms_memory_in_bytes": 280192, - "points_memory_in_bytes": 159634937, - "stored_fields_memory_in_bytes": 458544328, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 966178956, - "version_map_memory_in_bytes": 1960361 - }, - "store": { - "size_in_bytes": 1223430301198 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8469, - "collection_time_in_millis": 1473360 - }, - "young": { - "collection_count": 3729004, - "collection_time_in_millis": 378756084 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 9839137368, - "heap_used_percent": 30 - } - }, - "mlockall": true, - "node_id": "3VXPo0aBTgqBWoZyG7VeDQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 29842822071122984 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61049864192" - } - }, - "cpu": { - "load_average": { - "15m": 14.76, - "1m": 16.14, - "5m": 16.09 - } - } - }, - "process": { - "cpu": { - "percent": 79 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3355 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 16 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 169, - "rejected": 461447, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.167Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "timestamp": "2019-10-03T19:41:06.167Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "IbUjk20Bd_aHqZFw5EuL", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 1058021, - "read_kilobytes": 373472, - "read_operations": 5258, - "write_kilobytes": 18485483, - "write_operations": 1052763 - } - }, - "total": { - "available_in_bytes": 14311346176, - "free_in_bytes": 14311346176, - "total_in_bytes": 21463281664 - } - }, - "indices": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 0 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 104, - "collection_time_in_millis": 10075 - }, - "young": { - "collection_count": 166452, - "collection_time_in_millis": 5962402 - } - } - }, - "mem": { - "heap_max_in_bytes": 32142524416, - "heap_used_in_bytes": 13543042896, - "heap_used_percent": 42 - } - }, - "mlockall": true, - "node_id": "Le2_4P3sQryTDAMKA8BLFQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 419922932312508 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "40206356480" - } - }, - "cpu": { - "load_average": { - "15m": 0.05, - "1m": 0.04, - "5m": 0.06 - } - } - }, - "process": { - "cpu": { - "percent": 0 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 1720 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 9 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 13 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.72", - "ip": "172.16.1.72", - "name": "cli1-41-az10-dc-ent", - "timestamp": "2019-10-03T19:41:06.039Z", - "transport_address": "172.16.1.72:9300", - "uuid": "Le2_4P3sQryTDAMKA8BLFQ" - }, - "timestamp": "2019-10-03T19:41:06.039Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "IrUjk20Bd_aHqZFw5Eul", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5138154921, - "read_kilobytes": 35069259888, - "read_operations": 2886636608, - "write_kilobytes": 162124031320, - "write_operations": 2251518313 - } - }, - "total": { - "available_in_bytes": 604570763264, - "free_in_bytes": 700606709760, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1631909719 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 4848 - }, - "indexing": { - "index_time_in_millis": 21831181701, - "index_total": 27713252237, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 23627, - "hit_count": 1239253, - "memory_size_in_bytes": 498090737, - "miss_count": 1185659 - }, - "request_cache": { - "evictions": 0, - "hit_count": 358, - "memory_size_in_bytes": 19010, - "miss_count": 449 - }, - "search": { - "query_time_in_millis": 347088426, - "query_total": 16648564 - }, - "segments": { - "count": 951, - "doc_values_memory_in_bytes": 14693076, - "fixed_bit_set_memory_in_bytes": 4072, - "index_writer_memory_in_bytes": 292921046, - "memory_in_bytes": 1620766397, - "norms_memory_in_bytes": 282304, - "points_memory_in_bytes": 159647762, - "stored_fields_memory_in_bytes": 462883256, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 983259999, - "version_map_memory_in_bytes": 1544655 - }, - "store": { - "size_in_bytes": 1184426608458 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7581, - "collection_time_in_millis": 1022573 - }, - "young": { - "collection_count": 4046162, - "collection_time_in_millis": 286816856 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 23214233496, - "heap_used_percent": 72 - } - }, - "mlockall": true, - "node_id": "hRf9HsyRTZ-LGzhDBTZM3w", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 24662223237762444 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60939022336" - } - }, - "cpu": { - "load_average": { - "15m": 10.92, - "1m": 9.1, - "5m": 10.34 - } - } - }, - "process": { - "cpu": { - "percent": 77 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3229 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 32, - "rejected": 62326, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.138", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:05.850Z", - "transport_address": "172.16.1.138:9300", - "uuid": "hRf9HsyRTZ-LGzhDBTZM3w" - }, - "timestamp": "2019-10-03T19:41:05.916Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "GLUjk20Bd_aHqZFw4ksP", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5134339665, - "read_kilobytes": 35109328352, - "read_operations": 2942908125, - "write_kilobytes": 162817725100, - "write_operations": 2191431540 - } - }, - "total": { - "available_in_bytes": 593010864128, - "free_in_bytes": 689046810624, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1635635847 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 1408 - }, - "indexing": { - "index_time_in_millis": 24463248449, - "index_total": 27788888221, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 34243, - "hit_count": 4147573, - "memory_size_in_bytes": 514754314, - "miss_count": 1343003 - }, - "request_cache": { - "evictions": 0, - "hit_count": 996054, - "memory_size_in_bytes": 17210, - "miss_count": 58668 - }, - "search": { - "query_time_in_millis": 352450260, - "query_total": 6634000 - }, - "segments": { - "count": 985, - "doc_values_memory_in_bytes": 14747858, - "fixed_bit_set_memory_in_bytes": 37448, - "index_writer_memory_in_bytes": 808868848, - "memory_in_bytes": 1615163648, - "norms_memory_in_bytes": 269824, - "points_memory_in_bytes": 159623832, - "stored_fields_memory_in_bytes": 461177056, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 979345078, - "version_map_memory_in_bytes": 3494325 - }, - "store": { - "size_in_bytes": 1196258195189 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7795, - "collection_time_in_millis": 1232010 - }, - "young": { - "collection_count": 4045942, - "collection_time_in_millis": 311570033 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 17880154256, - "heap_used_percent": 55 - } - }, - "mlockall": true, - "node_id": "-hZOu0UJTHSbkZVSFPUYVw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 26023961486879216 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60874600448" - } - }, - "cpu": { - "load_average": { - "15m": 11.53, - "1m": 10.28, - "5m": 11.17 - } - } - }, - "process": { - "cpu": { - "percent": 47 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3324 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 28 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 276996, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:05.241Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "timestamp": "2019-10-03T19:41:05.241Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "obUjk20Bd_aHqZFw4Uo3", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5170085290, - "read_kilobytes": 36909662776, - "read_operations": 3044182273, - "write_kilobytes": 161544202440, - "write_operations": 2125903017 - } - }, - "total": { - "available_in_bytes": 609326100480, - "free_in_bytes": 705362046976, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1623898564 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 28611256919, - "index_total": 27703001274, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 32193, - "hit_count": 2343095, - "memory_size_in_bytes": 504491497, - "miss_count": 1317896 - }, - "request_cache": { - "evictions": 0, - "hit_count": 275351, - "memory_size_in_bytes": 4217, - "miss_count": 18098 - }, - "search": { - "query_time_in_millis": 373580230, - "query_total": 8561529 - }, - "segments": { - "count": 937, - "doc_values_memory_in_bytes": 14415422, - "fixed_bit_set_memory_in_bytes": 37616, - "index_writer_memory_in_bytes": 700628220, - "memory_in_bytes": 1605845052, - "norms_memory_in_bytes": 260608, - "points_memory_in_bytes": 158549832, - "stored_fields_memory_in_bytes": 457816984, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 974802206, - "version_map_memory_in_bytes": 1859194 - }, - "store": { - "size_in_bytes": 1179709309489 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8312, - "collection_time_in_millis": 1301567 - }, - "young": { - "collection_count": 3984584, - "collection_time_in_millis": 311901843 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 11958976840, - "heap_used_percent": 37 - } - }, - "mlockall": true, - "node_id": "jVAJY9H3RdqBQeJoQrxcnA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 29940118199352470 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "59911933952" - } - }, - "cpu": { - "load_average": { - "15m": 15.07, - "1m": 12.68, - "5m": 14.44 - } - } - }, - "process": { - "cpu": { - "percent": 48 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3225 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 7147443, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.251", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:05.102Z", - "transport_address": "172.16.0.251:9300", - "uuid": "jVAJY9H3RdqBQeJoQrxcnA" - }, - "timestamp": "2019-10-03T19:41:05.103Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "n7Ujk20Bd_aHqZFw4ErA", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 1303481, - "read_kilobytes": 226009, - "read_operations": 4861, - "write_kilobytes": 17879797, - "write_operations": 1298620 - } - }, - "total": { - "available_in_bytes": 13606580224, - "free_in_bytes": 13606580224, - "total_in_bytes": 21463281664 - } - }, - "indices": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 0 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 2, - "collection_time_in_millis": 96 - }, - "young": { - "collection_count": 10819, - "collection_time_in_millis": 426809 - } - } - }, - "mem": { - "heap_max_in_bytes": 17145004032, - "heap_used_in_bytes": 863543024, - "heap_used_percent": 5 - } - }, - "mlockall": true, - "node_id": "bFCSCT_UT_eM8eoTXP65RA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 104851941502935 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "20965285888" - } - }, - "cpu": { - "load_average": { - "15m": 0.05, - "1m": 0.01, - "5m": 0.02 - } - } - }, - "process": { - "cpu": { - "percent": 0 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 1607 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 4 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.91", - "ip": "172.16.1.91", - "name": "mas1-42-az10-dc-ent", - "timestamp": "2019-10-03T19:41:05.070Z", - "transport_address": "172.16.1.91:9300", - "uuid": "bFCSCT_UT_eM8eoTXP65RA" - }, - "timestamp": "2019-10-03T19:41:05.070Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "nrUjk20Bd_aHqZFw4Eqc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 1001004, - "read_kilobytes": 431937, - "read_operations": 3276, - "write_kilobytes": 16797931, - "write_operations": 997728 - } - }, - "total": { - "available_in_bytes": 14371360768, - "free_in_bytes": 14371360768, - "total_in_bytes": 21463281664 - } - }, - "indices": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 0 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 95, - "collection_time_in_millis": 8578 - }, - "young": { - "collection_count": 163066, - "collection_time_in_millis": 5621986 - } - } - }, - "mem": { - "heap_max_in_bytes": 32142524416, - "heap_used_in_bytes": 20652079504, - "heap_used_percent": 64 - } - }, - "mlockall": true, - "node_id": "PaCUGq4USRGkj6KDg995XA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 494089822624119 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "40294834176" - } - }, - "cpu": { - "load_average": { - "15m": 0.16, - "1m": 0.1, - "5m": 0.19 - } - } - }, - "process": { - "cpu": { - "percent": 0 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 1710 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 10 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 13 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.232", - "ip": "172.16.1.232", - "name": "cli1-42-az10-dc-ent", - "timestamp": "2019-10-03T19:41:05.032Z", - "transport_address": "172.16.1.232:9300", - "uuid": "PaCUGq4USRGkj6KDg995XA" - }, - "timestamp": "2019-10-03T19:41:05.032Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "FbUjk20Bd_aHqZFw4Uuo", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5141468738, - "read_kilobytes": 35898198036, - "read_operations": 3006377358, - "write_kilobytes": 165346402284, - "write_operations": 2135091380 - } - }, - "total": { - "available_in_bytes": 575827431424, - "free_in_bytes": 671863377920, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1631423606 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 5512 - }, - "indexing": { - "index_time_in_millis": 30065138479, - "index_total": 27800346746, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 23870, - "hit_count": 1239731, - "memory_size_in_bytes": 488000425, - "miss_count": 1214244 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7655, - "memory_size_in_bytes": 8857, - "miss_count": 417 - }, - "search": { - "query_time_in_millis": 372229308, - "query_total": 13526703 - }, - "segments": { - "count": 923, - "doc_values_memory_in_bytes": 14632114, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 799367502, - "memory_in_bytes": 1602069109, - "norms_memory_in_bytes": 278016, - "points_memory_in_bytes": 159474772, - "stored_fields_memory_in_bytes": 458942872, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 968741335, - "version_map_memory_in_bytes": 2008675 - }, - "store": { - "size_in_bytes": 1213447137576 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8170, - "collection_time_in_millis": 1462304 - }, - "young": { - "collection_count": 3567597, - "collection_time_in_millis": 364028752 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 7436576168, - "heap_used_percent": 23 - } - }, - "mlockall": true, - "node_id": "O78sh8HUSkaInv_VIQ0vQw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 29069454177111780 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61012709376" - } - }, - "cpu": { - "load_average": { - "15m": 13.52, - "1m": 14.44, - "5m": 14.08 - } - } - }, - "process": { - "cpu": { - "percent": 71 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3289 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 28 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 36, - "rejected": 350581, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.0.70", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:04.945Z", - "transport_address": "172.16.0.70:9300", - "uuid": "O78sh8HUSkaInv_VIQ0vQw" - }, - "timestamp": "2019-10-03T19:41:04.946Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "nbUjk20Bd_aHqZFw4Eo1", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200465794, - "read_kilobytes": 30748994956, - "read_operations": 74524381, - "write_kilobytes": 34982260560, - "write_operations": 125941413 - } - }, - "total": { - "available_in_bytes": 1550820794368, - "free_in_bytes": 1838928633856, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5421101594 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 14970720 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1565, - "hit_count": 12878, - "memory_size_in_bytes": 252147009, - "miss_count": 89321 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5481, - "memory_size_in_bytes": 16837820, - "miss_count": 8657 - }, - "search": { - "query_time_in_millis": 164853449, - "query_total": 134086 - }, - "segments": { - "count": 294, - "doc_values_memory_in_bytes": 10966046, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4193598174, - "norms_memory_in_bytes": 91456, - "points_memory_in_bytes": 474361788, - "stored_fields_memory_in_bytes": 1474347112, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233831772, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3788281660994 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 1841 - }, - "young": { - "collection_count": 261424, - "collection_time_in_millis": 7824384 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 10266577112, - "heap_used_percent": 31 - } - }, - "mlockall": true, - "node_id": "quRSeXloStCNZe-DZ5ec7g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2330510416693676 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60750082048" - } - }, - "cpu": { - "load_average": { - "15m": 0.66, - "1m": 0.9, - "5m": 0.76 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2556 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 38 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:04.863Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "timestamp": "2019-10-03T19:41:04.863Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "bLUjk20Bd_aHqZFw3krO", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 209350965, - "read_kilobytes": 31512210220, - "read_operations": 74524218, - "write_kilobytes": 38580852456, - "write_operations": 134826747 - } - }, - "total": { - "available_in_bytes": 1526518181888, - "free_in_bytes": 1814626021376, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5458727030 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 840, - "hit_count": 8880, - "memory_size_in_bytes": 326313800, - "miss_count": 63507 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3266, - "memory_size_in_bytes": 13120000, - "miss_count": 7820 - }, - "search": { - "query_time_in_millis": 168100867, - "query_total": 134012 - }, - "segments": { - "count": 255, - "doc_values_memory_in_bytes": 10567424, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4205024328, - "norms_memory_in_bytes": 84800, - "points_memory_in_bytes": 476681559, - "stored_fields_memory_in_bytes": 1484080424, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233610121, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3813396090766 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 16407 - }, - "young": { - "collection_count": 267916, - "collection_time_in_millis": 8479689 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 20619180688, - "heap_used_percent": 64 - } - }, - "mlockall": true, - "node_id": "VEO2NkvRRCaMPmF6ogMTRg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2483643747344573 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60615057408" - } - }, - "cpu": { - "load_average": { - "15m": 0.66, - "1m": 0.58, - "5m": 0.72 - } - } - }, - "process": { - "cpu": { - "percent": 6 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2508 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 45 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:04.519Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "timestamp": "2019-10-03T19:41:04.519Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "Z7Ujk20Bd_aHqZFw3Uq1", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 200599874, - "read_kilobytes": 29855694516, - "read_operations": 73616355, - "write_kilobytes": 34786935052, - "write_operations": 126983519 - } - }, - "total": { - "available_in_bytes": 1522641743872, - "free_in_bytes": 1810749583360, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5458935932 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25602368 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1445, - "hit_count": 14675, - "memory_size_in_bytes": 214568538, - "miss_count": 97625 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1891, - "memory_size_in_bytes": 12080869, - "miss_count": 7783 - }, - "search": { - "query_time_in_millis": 171177245, - "query_total": 137077 - }, - "segments": { - "count": 287, - "doc_values_memory_in_bytes": 11043674, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4223135672, - "norms_memory_in_bytes": 95232, - "points_memory_in_bytes": 477346851, - "stored_fields_memory_in_bytes": 1484210344, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2250439571, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3813394576605 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 1937 - }, - "young": { - "collection_count": 258700, - "collection_time_in_millis": 7679943 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 21659173008, - "heap_used_percent": 67 - } - }, - "mlockall": true, - "node_id": "iKB0877lSR6ocEzyKq9BRQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2327581572031488 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60670795776" - } - }, - "cpu": { - "load_average": { - "15m": 0.64, - "1m": 0.74, - "5m": 0.74 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2551 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:04.223Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "timestamp": "2019-10-03T19:41:04.223Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "YrUjk20Bd_aHqZFw3UpV", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 203149866, - "read_kilobytes": 29087754416, - "read_operations": 69395674, - "write_kilobytes": 38552393740, - "write_operations": 133754192 - } - }, - "total": { - "available_in_bytes": 1543538405376, - "free_in_bytes": 1831646244864, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5437827773 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1088, - "hit_count": 10075, - "memory_size_in_bytes": 287079953, - "miss_count": 87467 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2437, - "memory_size_in_bytes": 17249120, - "miss_count": 9216 - }, - "search": { - "query_time_in_millis": 160030862, - "query_total": 139823 - }, - "segments": { - "count": 262, - "doc_values_memory_in_bytes": 10774960, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4188221714, - "norms_memory_in_bytes": 85952, - "points_memory_in_bytes": 474936780, - "stored_fields_memory_in_bytes": 1478036024, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2224387998, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3804074408773 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10627 - }, - "young": { - "collection_count": 269040, - "collection_time_in_millis": 9557608 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 10823868840, - "heap_used_percent": 33 - } - }, - "mlockall": true, - "node_id": "2-cKgQ3uRxqku-4pJxya9g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2783889175130440 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60656914432" - } - }, - "cpu": { - "load_average": { - "15m": 0.66, - "1m": 1.06, - "5m": 0.82 - } - } - }, - "process": { - "cpu": { - "percent": 11 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2507 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 42 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:04.125Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "timestamp": "2019-10-03T19:41:04.126Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "arUjk20Bd_aHqZFw3kqc", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5289444663, - "read_kilobytes": 38464580216, - "read_operations": 3082974677, - "write_kilobytes": 167988498328, - "write_operations": 2206469986 - } - }, - "total": { - "available_in_bytes": 570010165248, - "free_in_bytes": 666046111744, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1633766498 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 30107413188, - "index_total": 28227598460, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 44582, - "hit_count": 4870557, - "memory_size_in_bytes": 512154624, - "miss_count": 1676100 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1283716, - "memory_size_in_bytes": 17453, - "miss_count": 66112 - }, - "search": { - "query_time_in_millis": 416325587, - "query_total": 4856641 - }, - "segments": { - "count": 981, - "doc_values_memory_in_bytes": 15084236, - "fixed_bit_set_memory_in_bytes": 37960, - "index_writer_memory_in_bytes": 781131508, - "memory_in_bytes": 1603878847, - "norms_memory_in_bytes": 275200, - "points_memory_in_bytes": 159419785, - "stored_fields_memory_in_bytes": 459035608, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 970064018, - "version_map_memory_in_bytes": 3044343 - }, - "store": { - "size_in_bytes": 1219283695320 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8253, - "collection_time_in_millis": 1412416 - }, - "young": { - "collection_count": 3649218, - "collection_time_in_millis": 372635617 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 9732684904, - "heap_used_percent": 30 - } - }, - "mlockall": true, - "node_id": "JT834ic5St6HS3oLbKcfVQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 29440474761849800 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60975407104" - } - }, - "cpu": { - "load_average": { - "15m": 14.39, - "1m": 15.75, - "5m": 15.57 - } - } - }, - "process": { - "cpu": { - "percent": 71 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3373 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 16 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 929, - "rejected": 322211, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.0.187", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.863Z", - "transport_address": "172.16.0.187:9300", - "uuid": "JT834ic5St6HS3oLbKcfVQ" - }, - "timestamp": "2019-10-03T19:41:03.863Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ZbUjk20Bd_aHqZFw3Uqi", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5350740538, - "read_kilobytes": 38896222048, - "read_operations": 3071448357, - "write_kilobytes": 166102161636, - "write_operations": 2279292181 - } - }, - "total": { - "available_in_bytes": 598333353984, - "free_in_bytes": 694369300480, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1632729704 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 24842383731, - "index_total": 28273380265, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 36082, - "hit_count": 1585610, - "memory_size_in_bytes": 504404494, - "miss_count": 1533990 - }, - "request_cache": { - "evictions": 0, - "hit_count": 7539, - "memory_size_in_bytes": 9553, - "miss_count": 468 - }, - "search": { - "query_time_in_millis": 390566027, - "query_total": 4661524 - }, - "segments": { - "count": 931, - "doc_values_memory_in_bytes": 14234378, - "fixed_bit_set_memory_in_bytes": 1792, - "index_writer_memory_in_bytes": 1026444537, - "memory_in_bytes": 1613463902, - "norms_memory_in_bytes": 270016, - "points_memory_in_bytes": 159453888, - "stored_fields_memory_in_bytes": 461179168, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 978326452, - "version_map_memory_in_bytes": 94430119 - }, - "store": { - "size_in_bytes": 1189961827691 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8667, - "collection_time_in_millis": 1331115 - }, - "young": { - "collection_count": 4224417, - "collection_time_in_millis": 318583176 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 14296430040, - "heap_used_percent": 44 - } - }, - "mlockall": true, - "node_id": "Elc3XlQ6S22vnPjQw-V2Fg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 27049410166245268 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61031284736" - } - }, - "cpu": { - "load_average": { - "15m": 12.12, - "1m": 11.15, - "5m": 11.97 - } - } - }, - "process": { - "cpu": { - "percent": 70 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3311 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 716, - "rejected": 271188, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.156", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.861Z", - "transport_address": "172.16.1.156:9300", - "uuid": "Elc3XlQ6S22vnPjQw-V2Fg" - }, - "timestamp": "2019-10-03T19:41:03.861Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "VLUjk20Bd_aHqZFw3EoW", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 188373330, - "read_kilobytes": 29037124276, - "read_operations": 69345645, - "write_kilobytes": 31678048120, - "write_operations": 119027685 - } - }, - "total": { - "available_in_bytes": 1539287719936, - "free_in_bytes": 1827395559424, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5433531151 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1023, - "hit_count": 11598, - "memory_size_in_bytes": 404571513, - "miss_count": 91820 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4595, - "memory_size_in_bytes": 18229709, - "miss_count": 10660 - }, - "search": { - "query_time_in_millis": 165401071, - "query_total": 134738 - }, - "segments": { - "count": 248, - "doc_values_memory_in_bytes": 10655164, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4183084185, - "norms_memory_in_bytes": 87872, - "points_memory_in_bytes": 474552716, - "stored_fields_memory_in_bytes": 1476693112, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2221095321, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3798900207809 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1713 - }, - "young": { - "collection_count": 238273, - "collection_time_in_millis": 7120775 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 23932947568, - "heap_used_percent": 74 - } - }, - "mlockall": true, - "node_id": "lo4CBuVcRnylVW7aOLRxsA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2214668416716564 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60659060736" - } - }, - "cpu": { - "load_average": { - "15m": 0.59, - "1m": 1.09, - "5m": 0.71 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2504 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.798Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "timestamp": "2019-10-03T19:41:03.798Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "RLUjk20Bd_aHqZFw2kpZ", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 191700002, - "read_kilobytes": 29585685824, - "read_operations": 70751392, - "write_kilobytes": 32573404200, - "write_operations": 120948610 - } - }, - "total": { - "available_in_bytes": 1548301447168, - "free_in_bytes": 1836409286656, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5417184163 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25831552 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1619, - "hit_count": 18566, - "memory_size_in_bytes": 410245068, - "miss_count": 120144 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3202, - "memory_size_in_bytes": 19697579, - "miss_count": 11518 - }, - "search": { - "query_time_in_millis": 169106466, - "query_total": 135806 - }, - "segments": { - "count": 321, - "doc_values_memory_in_bytes": 11478028, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4205658663, - "norms_memory_in_bytes": 103296, - "points_memory_in_bytes": 474814979, - "stored_fields_memory_in_bytes": 1472373712, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2246888648, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3790499267213 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10258 - }, - "young": { - "collection_count": 244207, - "collection_time_in_millis": 7606171 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 10509602680, - "heap_used_percent": 32 - } - }, - "mlockall": true, - "node_id": "iAgoIxwKQAqddyXJJlHlCg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2255911926793635 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60650799104" - } - }, - "cpu": { - "load_average": { - "15m": 0.6, - "1m": 0.61, - "5m": 0.72 - } - } - }, - "process": { - "cpu": { - "percent": 10 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2591 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.381Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "timestamp": "2019-10-03T19:41:03.382Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "QrUjk20Bd_aHqZFw2Urr", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 1266643, - "read_kilobytes": 188411, - "read_operations": 3668, - "write_kilobytes": 17221393, - "write_operations": 1262975 - } - }, - "total": { - "available_in_bytes": 14353600512, - "free_in_bytes": 14353600512, - "total_in_bytes": 21463281664 - } - }, - "indices": { - "docs": { - "count": 0 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "request_cache": { - "evictions": 0, - "hit_count": 0, - "memory_size_in_bytes": 0, - "miss_count": 0 - }, - "search": { - "query_time_in_millis": 0, - "query_total": 0 - }, - "segments": { - "count": 0, - "doc_values_memory_in_bytes": 0, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 0, - "norms_memory_in_bytes": 0, - "points_memory_in_bytes": 0, - "stored_fields_memory_in_bytes": 0, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 0, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 0 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 2, - "collection_time_in_millis": 98 - }, - "young": { - "collection_count": 10842, - "collection_time_in_millis": 426064 - } - } - }, - "mem": { - "heap_max_in_bytes": 17145004032, - "heap_used_in_bytes": 763292816, - "heap_used_percent": 4 - } - }, - "mlockall": true, - "node_id": "bjttLXSrThG1vNJFq6JtDg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 105723790127754 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "21019512832" - } - }, - "cpu": { - "load_average": { - "15m": 0.05, - "1m": 0, - "5m": 0.01 - } - } - }, - "process": { - "cpu": { - "percent": 0 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 1607 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 0 - } - } - }, - "source_node": { - "host": "172.16.1.46", - "ip": "172.16.1.46", - "name": "mas1-41-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.320Z", - "transport_address": "172.16.1.46:9300", - "uuid": "bjttLXSrThG1vNJFq6JtDg" - }, - "timestamp": "2019-10-03T19:41:03.320Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "_bUjk20Bd_aHqZFw9Etb", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "index_recovery": { - "shards": [ - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 17, - "reused": 0, - "total": 17 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 82179, - "reused_in_bytes": 0, - "total_in_bytes": 82179 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 102 - }, - "index_name": ".triggered_watches", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566320795606, - "stop_time_in_millis": 1566320800627, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 5020, - "translog": { - "percent": "100.0%", - "recovered": 16519, - "total": 16519, - "total_on_start": 16519, - "total_time_in_millis": 4758 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 26 - }, - "index_name": ".triggered_watches", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481066841, - "stop_time_in_millis": 1566481067569, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 728, - "translog": { - "percent": "100.0%", - "recovered": 254, - "total": 254, - "total_on_start": -1, - "total_time_in_millis": 523 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 39, - "reused": 0, - "total": 39 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 11513781, - "reused_in_bytes": 0, - "total_in_bytes": 11513781 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3457 - }, - "index_name": ".watcher-history-9-2019.09.27", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030295908, - "stop_time_in_millis": 1570030300237, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 4329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 9594, - "total_time_in_millis": 199 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 142 - }, - "index_name": ".watcher-history-9-2019.09.27", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569542418952, - "stop_time_in_millis": 1569542419437, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 484, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 48 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 18 - }, - "index_name": ".watcher-history-9-2019.09.28", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569628808582, - "stop_time_in_millis": 1569628808621, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 38, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 12 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1967 - }, - "index_name": ".watcher-history-9-2019.09.28", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569628814422, - "stop_time_in_millis": 1569628816719, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 2296, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 204 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55168850150, - "reused_in_bytes": 0, - "total_in_bytes": 55168850150 - }, - "source_throttle_time_in_millis": 72782, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2350393 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569987049307, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2353462, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77443835, - "total_time_in_millis": 2412 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569986883294, - "stop_time_in_millis": 1569986884175, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 880, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 837 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54888338889, - "reused_in_bytes": 0, - "total_in_bytes": 54888338889 - }, - "source_throttle_time_in_millis": 67545, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2244093 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986942582, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2246737, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77224092, - "total_time_in_millis": 2091 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55114073471, - "reused_in_bytes": 0, - "total_in_bytes": 55114073471 - }, - "source_throttle_time_in_millis": 68035, - "target_throttle_time_in_millis": 44, - "total_time_in_millis": 2829938 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695854, - "stop_time_in_millis": 1569987530408, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2834554, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77319661, - "total_time_in_millis": 2551 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54032186988, - "reused_in_bytes": 0, - "total_in_bytes": 54032186988 - }, - "source_throttle_time_in_millis": 64585, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2245181 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695848, - "stop_time_in_millis": 1569986943211, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2247363, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77363730, - "total_time_in_millis": 2168 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54308666460, - "reused_in_bytes": 0, - "total_in_bytes": 54308666460 - }, - "source_throttle_time_in_millis": 69941, - "target_throttle_time_in_millis": 90, - "total_time_in_millis": 2273710 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986975426, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2279580, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77280815, - "total_time_in_millis": 2252 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54036319200, - "reused_in_bytes": 0, - "total_in_bytes": 54036319200 - }, - "source_throttle_time_in_millis": 67400, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2185174 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695846, - "stop_time_in_millis": 1569986883282, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2187436, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77178592, - "total_time_in_millis": 2247 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54175092302, - "reused_in_bytes": 0, - "total_in_bytes": 54175092302 - }, - "source_throttle_time_in_millis": 90050, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2503151 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569987201156, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2505310, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77166342, - "total_time_in_millis": 2146 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54271045408, - "reused_in_bytes": 0, - "total_in_bytes": 54271045408 - }, - "source_throttle_time_in_millis": 69040, - "target_throttle_time_in_millis": 113, - "total_time_in_millis": 2242489 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695847, - "stop_time_in_millis": 1569986941089, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2245242, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77328873, - "total_time_in_millis": 2744 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54384868977, - "reused_in_bytes": 0, - "total_in_bytes": 54384868977 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 83, - "total_time_in_millis": 1566661 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569986996351, - "stop_time_in_millis": 1569988565670, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1569319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77422246, - "total_time_in_millis": 2641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54169863569, - "reused_in_bytes": 0, - "total_in_bytes": 54169863569 - }, - "source_throttle_time_in_millis": 74418, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2372773 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695848, - "stop_time_in_millis": 1569987070913, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2375065, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77175255, - "total_time_in_millis": 2277 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54198680413, - "reused_in_bytes": 0, - "total_in_bytes": 54198680413 - }, - "source_throttle_time_in_millis": 70627, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2237474 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986936013, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2240167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77236597, - "total_time_in_millis": 2167 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5082 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569987022795, - "stop_time_in_millis": 1569987028673, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 5877, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 750 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53665016381, - "reused_in_bytes": 0, - "total_in_bytes": 53665016381 - }, - "source_throttle_time_in_millis": 49821, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3935621 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569988633443, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 3937598, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76990778, - "total_time_in_millis": 1968 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5348 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569986975877, - "stop_time_in_millis": 1569986982099, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6221, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 827 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54175092302, - "reused_in_bytes": 0, - "total_in_bytes": 54175092302 - }, - "source_throttle_time_in_millis": 78012, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2503152 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569987201193, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2505347, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77166342, - "total_time_in_millis": 2174 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 333, - "reused": 0, - "total": 333 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54234651960, - "reused_in_bytes": 0, - "total_in_bytes": 54234651960 - }, - "source_throttle_time_in_millis": 65676, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2242489 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986941089, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2245243, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77154817, - "total_time_in_millis": 2232 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5157 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569987052371, - "stop_time_in_millis": 1569987058425, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 6054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 859 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4919 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569986943245, - "stop_time_in_millis": 1569986949044, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 5798, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 836 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53669959954, - "reused_in_bytes": 0, - "total_in_bytes": 53669959954 - }, - "source_throttle_time_in_millis": 51552, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 4171308 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695847, - "stop_time_in_millis": 1569988869733, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 4173885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76872600, - "total_time_in_millis": 2051 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54957485819, - "reused_in_bytes": 0, - "total_in_bytes": 54957485819 - }, - "source_throttle_time_in_millis": 90812, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2416398 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569987114775, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2418930, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77268617, - "total_time_in_millis": 2490 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 327, - "reused": 0, - "total": 327 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54068421719, - "reused_in_bytes": 0, - "total_in_bytes": 54068421719 - }, - "source_throttle_time_in_millis": 67833, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2181608 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695846, - "stop_time_in_millis": 1569986883263, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2187416, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77187748, - "total_time_in_millis": 2269 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54036319200, - "reused_in_bytes": 0, - "total_in_bytes": 54036319200 - }, - "source_throttle_time_in_millis": 61550, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2190285 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986888330, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2192484, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77178592, - "total_time_in_millis": 2180 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54957485819, - "reused_in_bytes": 0, - "total_in_bytes": 54957485819 - }, - "source_throttle_time_in_millis": 67855, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 2718650 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695858, - "stop_time_in_millis": 1569987417587, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2721728, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77268617, - "total_time_in_millis": 2551 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 333, - "reused": 0, - "total": 333 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54234651960, - "reused_in_bytes": 0, - "total_in_bytes": 54234651960 - }, - "source_throttle_time_in_millis": 66752, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2242994 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986941085, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2245240, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77154817, - "total_time_in_millis": 2227 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55099010568, - "reused_in_bytes": 0, - "total_in_bytes": 55099010568 - }, - "source_throttle_time_in_millis": 69594, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2347004 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569987045660, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2349815, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77220980, - "total_time_in_millis": 2288 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54198680413, - "reused_in_bytes": 0, - "total_in_bytes": 54198680413 - }, - "source_throttle_time_in_millis": 65618, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2257128 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695849, - "stop_time_in_millis": 1569986955625, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2259776, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77236597, - "total_time_in_millis": 2130 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54032186988, - "reused_in_bytes": 0, - "total_in_bytes": 54032186988 - }, - "source_throttle_time_in_millis": 70249, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2188199 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695847, - "stop_time_in_millis": 1569986886170, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2190323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77363730, - "total_time_in_millis": 2115 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54384868980, - "reused_in_bytes": 0, - "total_in_bytes": 54384868980 - }, - "source_throttle_time_in_millis": 93133, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2292027 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695854, - "stop_time_in_millis": 1569986990993, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2295139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77422246, - "total_time_in_millis": 2510 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54918856676, - "reused_in_bytes": 0, - "total_in_bytes": 54918856676 - }, - "source_throttle_time_in_millis": 70574, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2323509 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695848, - "stop_time_in_millis": 1569987022764, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2326916, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77186652, - "total_time_in_millis": 3326 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54169863566, - "reused_in_bytes": 0, - "total_in_bytes": 54169863566 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 1279774 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569987076223, - "stop_time_in_millis": 1569988358228, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1282005, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77175255, - "total_time_in_millis": 2210 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54271045408, - "reused_in_bytes": 0, - "total_in_bytes": 54271045408 - }, - "source_throttle_time_in_millis": 64426, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2257033 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569986955221, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2259376, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77328873, - "total_time_in_millis": 2332 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55099010568, - "reused_in_bytes": 0, - "total_in_bytes": 55099010568 - }, - "source_throttle_time_in_millis": 69126, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2347510 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695845, - "stop_time_in_millis": 1569987045555, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2349709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77220980, - "total_time_in_millis": 2182 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569988869772, - "stop_time_in_millis": 1569988870625, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 853, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 800 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53665016381, - "reused_in_bytes": 0, - "total_in_bytes": 53665016381 - }, - "source_throttle_time_in_millis": 51453, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4181180 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695847, - "stop_time_in_millis": 1569988879802, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 4183954, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76990778, - "total_time_in_millis": 2250 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55114073471, - "reused_in_bytes": 0, - "total_in_bytes": 55114073471 - }, - "source_throttle_time_in_millis": 100850, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2518254 - }, - "index_name": "om-iu-bro-2019.09.29-000999", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569984695850, - "stop_time_in_millis": 1569987216340, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2520489, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77319661, - "total_time_in_millis": 2217 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50689003419, - "reused_in_bytes": 0, - "total_in_bytes": 50689003419 - }, - "source_throttle_time_in_millis": 69209, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2093943 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917229613, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2096760, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74587258, - "total_time_in_millis": 2294 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51254204343, - "reused_in_bytes": 0, - "total_in_bytes": 51254204343 - }, - "source_throttle_time_in_millis": 66571, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2123777 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132851, - "stop_time_in_millis": 1569917259463, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2126611, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74639239, - "total_time_in_millis": 2304 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50735418081, - "reused_in_bytes": 0, - "total_in_bytes": 50735418081 - }, - "source_throttle_time_in_millis": 60429, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2055665 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917191567, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2058714, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74673395, - "total_time_in_millis": 2531 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50629258206, - "reused_in_bytes": 0, - "total_in_bytes": 50629258206 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 141, - "total_time_in_millis": 1453912 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918979507, - "stop_time_in_millis": 1569920436290, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1456782, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74669815, - "total_time_in_millis": 2854 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50689003419, - "reused_in_bytes": 0, - "total_in_bytes": 50689003419 - }, - "source_throttle_time_in_millis": 60926, - "target_throttle_time_in_millis": 33822, - "total_time_in_millis": 2090046 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917226166, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2093313, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74587258, - "total_time_in_millis": 2738 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51325702528, - "reused_in_bytes": 0, - "total_in_bytes": 51325702528 - }, - "source_throttle_time_in_millis": 64537, - "target_throttle_time_in_millis": 12320, - "total_time_in_millis": 2141465 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917277318, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2144465, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74650493, - "total_time_in_millis": 2473 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4772 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917277929, - "stop_time_in_millis": 1569917283487, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5557, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4308 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917178559, - "stop_time_in_millis": 1569917183683, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 5123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 770 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50714416912, - "reused_in_bytes": 0, - "total_in_bytes": 50714416912 - }, - "source_throttle_time_in_millis": 57946, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2038147 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132854, - "stop_time_in_millis": 1569917178408, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2045554, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74600779, - "total_time_in_millis": 2829 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51308489533, - "reused_in_bytes": 0, - "total_in_bytes": 51308489533 - }, - "source_throttle_time_in_millis": 63847, - "target_throttle_time_in_millis": 11201, - "total_time_in_millis": 2514628 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132860, - "stop_time_in_millis": 1569917651038, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2518177, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74649705, - "total_time_in_millis": 2995 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50796663971, - "reused_in_bytes": 0, - "total_in_bytes": 50796663971 - }, - "source_throttle_time_in_millis": 59253, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2082323 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917217512, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2084660, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74621526, - "total_time_in_millis": 2313 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50722035136, - "reused_in_bytes": 0, - "total_in_bytes": 50722035136 - }, - "source_throttle_time_in_millis": 65113, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2169059 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132855, - "stop_time_in_millis": 1569917304207, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2171352, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74619771, - "total_time_in_millis": 2284 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51325702528, - "reused_in_bytes": 0, - "total_in_bytes": 51325702528 - }, - "source_throttle_time_in_millis": 64021, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 2141976 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917277251, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2144398, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74650493, - "total_time_in_millis": 2411 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51290871216, - "reused_in_bytes": 0, - "total_in_bytes": 51290871216 - }, - "source_throttle_time_in_millis": 73946, - "target_throttle_time_in_millis": 51, - "total_time_in_millis": 2182802 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132853, - "stop_time_in_millis": 1569917318679, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2185826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74678166, - "total_time_in_millis": 2507 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51233367357, - "reused_in_bytes": 0, - "total_in_bytes": 51233367357 - }, - "source_throttle_time_in_millis": 62412, - "target_throttle_time_in_millis": 65, - "total_time_in_millis": 2080277 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917215720, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2082867, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74631097, - "total_time_in_millis": 2566 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50704238856, - "reused_in_bytes": 0, - "total_in_bytes": 50704238856 - }, - "source_throttle_time_in_millis": 17013, - "target_throttle_time_in_millis": 694359, - "total_time_in_millis": 1811191 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569919174482, - "stop_time_in_millis": 1569920988253, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1813770, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74701612, - "total_time_in_millis": 2545 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51290871216, - "reused_in_bytes": 0, - "total_in_bytes": 51290871216 - }, - "source_throttle_time_in_millis": 56436, - "target_throttle_time_in_millis": 34766, - "total_time_in_millis": 2248186 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917384386, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2251533, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74678166, - "total_time_in_millis": 2826 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51308489533, - "reused_in_bytes": 0, - "total_in_bytes": 51308489533 - }, - "source_throttle_time_in_millis": 92384, - "target_throttle_time_in_millis": 199, - "total_time_in_millis": 2223412 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132853, - "stop_time_in_millis": 1569917359481, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2226628, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74649705, - "total_time_in_millis": 2655 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50735418081, - "reused_in_bytes": 0, - "total_in_bytes": 50735418081 - }, - "source_throttle_time_in_millis": 58674, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2055695 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132851, - "stop_time_in_millis": 1569917191615, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2058764, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74673395, - "total_time_in_millis": 2538 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50629258209, - "reused_in_bytes": 0, - "total_in_bytes": 50629258209 - }, - "source_throttle_time_in_millis": 50696, - "target_throttle_time_in_millis": 13153, - "total_time_in_millis": 3838683 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132851, - "stop_time_in_millis": 1569918975120, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 3842269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74669815, - "total_time_in_millis": 2942 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51388442312, - "reused_in_bytes": 0, - "total_in_bytes": 51388442312 - }, - "source_throttle_time_in_millis": 68280, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2142456 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917277796, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2144943, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74688969, - "total_time_in_millis": 2465 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50644421468, - "reused_in_bytes": 0, - "total_in_bytes": 50644421468 - }, - "source_throttle_time_in_millis": 88646, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2047675 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132851, - "stop_time_in_millis": 1569917182862, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2050010, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74717812, - "total_time_in_millis": 2325 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50769783615, - "reused_in_bytes": 0, - "total_in_bytes": 50769783615 - }, - "source_throttle_time_in_millis": 67645, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2063789 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917199794, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2066941, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74588861, - "total_time_in_millis": 2636 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50644421465, - "reused_in_bytes": 0, - "total_in_bytes": 50644421465 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 133, - "total_time_in_millis": 1430586 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917191414, - "stop_time_in_millis": 1569918624593, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1433178, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74717812, - "total_time_in_millis": 2549 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50707300719, - "reused_in_bytes": 0, - "total_in_bytes": 50707300719 - }, - "source_throttle_time_in_millis": 59988, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2037756 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917173758, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2040906, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74667164, - "total_time_in_millis": 2623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50722035136, - "reused_in_bytes": 0, - "total_in_bytes": 50722035136 - }, - "source_throttle_time_in_millis": 62310, - "target_throttle_time_in_millis": 37156, - "total_time_in_millis": 2168548 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917304294, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2171441, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74619771, - "total_time_in_millis": 2296 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50769783615, - "reused_in_bytes": 0, - "total_in_bytes": 50769783615 - }, - "source_throttle_time_in_millis": 63591, - "target_throttle_time_in_millis": 2174, - "total_time_in_millis": 2064284 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132851, - "stop_time_in_millis": 1569917199734, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2066883, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74588861, - "total_time_in_millis": 2587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51233367357, - "reused_in_bytes": 0, - "total_in_bytes": 51233367357 - }, - "source_throttle_time_in_millis": 67426, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2080282 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917215650, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2082798, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74631097, - "total_time_in_millis": 2500 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5484 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917258818, - "stop_time_in_millis": 1569917265070, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6252, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50843336038, - "reused_in_bytes": 0, - "total_in_bytes": 50843336038 - }, - "source_throttle_time_in_millis": 64546, - "target_throttle_time_in_millis": 8365, - "total_time_in_millis": 2145897 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132861, - "stop_time_in_millis": 1569917281338, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2148476, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74640850, - "total_time_in_millis": 2567 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50723470366, - "reused_in_bytes": 0, - "total_in_bytes": 50723470366 - }, - "source_throttle_time_in_millis": 66982, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 2122925 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917258788, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2125935, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74633997, - "total_time_in_millis": 2485 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5454 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917260675, - "stop_time_in_millis": 1569917266923, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6247, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50704238859, - "reused_in_bytes": 0, - "total_in_bytes": 50704238859 - }, - "source_throttle_time_in_millis": 48097, - "target_throttle_time_in_millis": 78273, - "total_time_in_millis": 4037149 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132853, - "stop_time_in_millis": 1569919173067, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 4040213, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74701612, - "total_time_in_millis": 2520 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50707300719, - "reused_in_bytes": 0, - "total_in_bytes": 50707300719 - }, - "source_throttle_time_in_millis": 60818, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 2037757 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132852, - "stop_time_in_millis": 1569917173745, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2040893, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74667164, - "total_time_in_millis": 2568 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49523976676, - "reused_in_bytes": 0, - "total_in_bytes": 49523976676 - }, - "source_throttle_time_in_millis": 43078, - "target_throttle_time_in_millis": 91952, - "total_time_in_millis": 1265963 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569938942284, - "stop_time_in_millis": 1569940208869, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1266584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73180248, - "total_time_in_millis": 614 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50796663971, - "reused_in_bytes": 0, - "total_in_bytes": 50796663971 - }, - "source_throttle_time_in_millis": 64777, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2080798 - }, - "index_name": "om-iu-bro-2019.09.28-000996", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569915132851, - "stop_time_in_millis": 1569917217535, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2084684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74621526, - "total_time_in_millis": 2318 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945702047, - "stop_time_in_millis": 1569945702852, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 805, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 755 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48364543206, - "reused_in_bytes": 0, - "total_in_bytes": 48364543206 - }, - "source_throttle_time_in_millis": 47780, - "target_throttle_time_in_millis": 41873, - "total_time_in_millis": 3591336 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495988, - "stop_time_in_millis": 1569947089670, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 3593682, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73348078, - "total_time_in_millis": 1801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48557201458, - "reused_in_bytes": 0, - "total_in_bytes": 48557201458 - }, - "source_throttle_time_in_millis": 54511, - "target_throttle_time_in_millis": 44, - "total_time_in_millis": 1897948 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945396201, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1900213, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73447139, - "total_time_in_millis": 1735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48681351315, - "reused_in_bytes": 0, - "total_in_bytes": 48681351315 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 103, - "total_time_in_millis": 1419736 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945514780, - "stop_time_in_millis": 1569946936624, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1421843, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73513183, - "total_time_in_millis": 2091 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4905 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945524258, - "stop_time_in_millis": 1569945529965, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 5707, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49198513076, - "reused_in_bytes": 0, - "total_in_bytes": 49198513076 - }, - "source_throttle_time_in_millis": 60936, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2025818 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945524217, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2028229, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73554244, - "total_time_in_millis": 1890 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4780 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945396260, - "stop_time_in_millis": 1569945401819, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5558, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 736 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48364543206, - "reused_in_bytes": 0, - "total_in_bytes": 48364543206 - }, - "source_throttle_time_in_millis": 46738, - "target_throttle_time_in_millis": 52446, - "total_time_in_millis": 3602307 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495988, - "stop_time_in_millis": 1569947100659, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 3604671, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73348078, - "total_time_in_millis": 1801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 265, - "reused": 0, - "total": 265 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48565876088, - "reused_in_bytes": 0, - "total_in_bytes": 48565876088 - }, - "source_throttle_time_in_millis": 64498, - "target_throttle_time_in_millis": 80, - "total_time_in_millis": 2005786 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495990, - "stop_time_in_millis": 1569945503960, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2007970, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73434849, - "total_time_in_millis": 2161 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 256, - "reused": 0, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48615122754, - "reused_in_bytes": 0, - "total_in_bytes": 48615122754 - }, - "source_throttle_time_in_millis": 62204, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2248466 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495994, - "stop_time_in_millis": 1569945746814, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2250819, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73446857, - "total_time_in_millis": 2329 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48508080176, - "reused_in_bytes": 0, - "total_in_bytes": 48508080176 - }, - "source_throttle_time_in_millis": 69397, - "target_throttle_time_in_millis": 85, - "total_time_in_millis": 1989158 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945487153, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1991165, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73387864, - "total_time_in_millis": 1988 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4725 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945479211, - "stop_time_in_millis": 1569945484641, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 5429, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 663 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49232143708, - "reused_in_bytes": 0, - "total_in_bytes": 49232143708 - }, - "source_throttle_time_in_millis": 16905, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2202791 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945702005, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2206017, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73531092, - "total_time_in_millis": 2195 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 268, - "reused": 0, - "total": 268 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48605033550, - "reused_in_bytes": 0, - "total_in_bytes": 48605033550 - }, - "source_throttle_time_in_millis": 57223, - "target_throttle_time_in_millis": 18514, - "total_time_in_millis": 1980204 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495990, - "stop_time_in_millis": 1569945478217, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1982227, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73482711, - "total_time_in_millis": 2012 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49127444694, - "reused_in_bytes": 0, - "total_in_bytes": 49127444694 - }, - "source_throttle_time_in_millis": 64666, - "target_throttle_time_in_millis": 12931, - "total_time_in_millis": 1978350 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495989, - "stop_time_in_millis": 1569945478303, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1982313, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73543691, - "total_time_in_millis": 2055 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48681351318, - "reused_in_bytes": 0, - "total_in_bytes": 48681351318 - }, - "source_throttle_time_in_millis": 87899, - "target_throttle_time_in_millis": 21, - "total_time_in_millis": 2009325 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945509825, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2013838, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73513183, - "total_time_in_millis": 2501 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48649882059, - "reused_in_bytes": 0, - "total_in_bytes": 48649882059 - }, - "source_throttle_time_in_millis": 59572, - "target_throttle_time_in_millis": 15375, - "total_time_in_millis": 1988789 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495988, - "stop_time_in_millis": 1569945486670, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1990681, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73477008, - "total_time_in_millis": 1884 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4689 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945527904, - "stop_time_in_millis": 1569945533343, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 5438, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 711 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 265, - "reused": 0, - "total": 265 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48565876088, - "reused_in_bytes": 0, - "total_in_bytes": 48565876088 - }, - "source_throttle_time_in_millis": 57812, - "target_throttle_time_in_millis": 82889, - "total_time_in_millis": 2048527 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495988, - "stop_time_in_millis": 1569945546375, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2050387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73434849, - "total_time_in_millis": 1845 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4814 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945441336, - "stop_time_in_millis": 1569945446933, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5596, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 740 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49180753595, - "reused_in_bytes": 0, - "total_in_bytes": 49180753595 - }, - "source_throttle_time_in_millis": 60738, - "target_throttle_time_in_millis": 50, - "total_time_in_millis": 2022461 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495990, - "stop_time_in_millis": 1569945524448, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2028457, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73443325, - "total_time_in_millis": 1933 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48487554438, - "reused_in_bytes": 0, - "total_in_bytes": 48487554438 - }, - "source_throttle_time_in_millis": 57602, - "target_throttle_time_in_millis": 31573, - "total_time_in_millis": 1939042 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945439016, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1943028, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73534575, - "total_time_in_millis": 1915 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49120187721, - "reused_in_bytes": 0, - "total_in_bytes": 49120187721 - }, - "source_throttle_time_in_millis": 61047, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1988272 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945487769, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1991781, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73539477, - "total_time_in_millis": 1981 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48385490044, - "reused_in_bytes": 0, - "total_in_bytes": 48385490044 - }, - "source_throttle_time_in_millis": 40978, - "target_throttle_time_in_millis": 4726, - "total_time_in_millis": 3799736 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495994, - "stop_time_in_millis": 1569947297939, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 3801944, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73443099, - "total_time_in_millis": 2189 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4819 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945448246, - "stop_time_in_millis": 1569945453875, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5629, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 757 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48508080176, - "reused_in_bytes": 0, - "total_in_bytes": 48508080176 - }, - "source_throttle_time_in_millis": 50054, - "target_throttle_time_in_millis": 42586, - "total_time_in_millis": 2024972 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943496015, - "stop_time_in_millis": 1569945524981, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2028965, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73387864, - "total_time_in_millis": 1939 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48675900983, - "reused_in_bytes": 0, - "total_in_bytes": 48675900983 - }, - "source_throttle_time_in_millis": 58436, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1966047 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495988, - "stop_time_in_millis": 1569945464546, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1968558, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73533959, - "total_time_in_millis": 1989 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 256, - "reused": 0, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48615122754, - "reused_in_bytes": 0, - "total_in_bytes": 48615122754 - }, - "source_throttle_time_in_millis": 80167, - "target_throttle_time_in_millis": 19449, - "total_time_in_millis": 2076505 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495988, - "stop_time_in_millis": 1569945574388, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2078400, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73446857, - "total_time_in_millis": 1881 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5307 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945434915, - "stop_time_in_millis": 1569945441013, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6098, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49064914204, - "reused_in_bytes": 0, - "total_in_bytes": 49064914204 - }, - "source_throttle_time_in_millis": 67114, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1945094 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945444092, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1948104, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73442252, - "total_time_in_millis": 1859 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49120187721, - "reused_in_bytes": 0, - "total_in_bytes": 49120187721 - }, - "source_throttle_time_in_millis": 62358, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1979511 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495989, - "stop_time_in_millis": 1569945479975, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1983985, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73539477, - "total_time_in_millis": 2938 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48551656689, - "reused_in_bytes": 0, - "total_in_bytes": 48551656689 - }, - "source_throttle_time_in_millis": 56244, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1936583 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945434521, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1938533, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73504979, - "total_time_in_millis": 1935 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48649882059, - "reused_in_bytes": 0, - "total_in_bytes": 48649882059 - }, - "source_throttle_time_in_millis": 57836, - "target_throttle_time_in_millis": 13, - "total_time_in_millis": 1989199 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945487063, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1991075, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73477008, - "total_time_in_millis": 1862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48385490044, - "reused_in_bytes": 0, - "total_in_bytes": 48385490044 - }, - "source_throttle_time_in_millis": 41573, - "target_throttle_time_in_millis": 101021, - "total_time_in_millis": 3595663 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569947093575, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 3597587, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73443099, - "total_time_in_millis": 1911 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48675900983, - "reused_in_bytes": 0, - "total_in_bytes": 48675900983 - }, - "source_throttle_time_in_millis": 61025, - "target_throttle_time_in_millis": 18294, - "total_time_in_millis": 1966049 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495987, - "stop_time_in_millis": 1569945464823, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1968836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73533959, - "total_time_in_millis": 2260 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49127444694, - "reused_in_bytes": 0, - "total_in_bytes": 49127444694 - }, - "source_throttle_time_in_millis": 59399, - "target_throttle_time_in_millis": 23478, - "total_time_in_millis": 1978076 - }, - "index_name": "om-iu-bro-2019.09.29-000997", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943495993, - "stop_time_in_millis": 1569945478185, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1982192, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73543691, - "total_time_in_millis": 1973 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54443069757, - "reused_in_bytes": 0, - "total_in_bytes": 54443069757 - }, - "source_throttle_time_in_millis": 77742, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2339858 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569967017303, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2342611, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77032630, - "total_time_in_millis": 2221 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5309 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966957514, - "stop_time_in_millis": 1569966963643, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 6128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54554650152, - "reused_in_bytes": 0, - "total_in_bytes": 54554650152 - }, - "source_throttle_time_in_millis": 69419, - "target_throttle_time_in_millis": 67, - "total_time_in_millis": 2317408 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674692, - "stop_time_in_millis": 1569966995275, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2320582, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77042637, - "total_time_in_millis": 2652 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 270, - "reused": 0, - "total": 270 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54460228220, - "reused_in_bytes": 0, - "total_in_bytes": 54460228220 - }, - "source_throttle_time_in_millis": 64635, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2677640 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674698, - "stop_time_in_millis": 1569967354935, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2680237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77171568, - "total_time_in_millis": 2576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53458587817, - "reused_in_bytes": 0, - "total_in_bytes": 53458587817 - }, - "source_throttle_time_in_millis": 63287, - "target_throttle_time_in_millis": 57, - "total_time_in_millis": 2186586 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674692, - "stop_time_in_millis": 1569966863773, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2189080, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76932193, - "total_time_in_millis": 1967 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53607096701, - "reused_in_bytes": 0, - "total_in_bytes": 53607096701 - }, - "source_throttle_time_in_millis": 65484, - "target_throttle_time_in_millis": 120, - "total_time_in_millis": 2181377 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674690, - "stop_time_in_millis": 1569966858754, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2184064, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77002240, - "total_time_in_millis": 2167 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53773130316, - "reused_in_bytes": 0, - "total_in_bytes": 53773130316 - }, - "source_throttle_time_in_millis": 62628, - "target_throttle_time_in_millis": 200985, - "total_time_in_millis": 2514633 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674692, - "stop_time_in_millis": 1569967192859, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2518167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77318924, - "total_time_in_millis": 3016 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53666414594, - "reused_in_bytes": 0, - "total_in_bytes": 53666414594 - }, - "source_throttle_time_in_millis": 68761, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2206652 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569966884186, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2209494, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77030883, - "total_time_in_millis": 2144 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5424 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966859250, - "stop_time_in_millis": 1569966867142, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 7891, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2421 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53718106910, - "reused_in_bytes": 0, - "total_in_bytes": 53718106910 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 30516, - "total_time_in_millis": 1821252 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569967017220, - "stop_time_in_millis": 1569968840929, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1823708, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77043538, - "total_time_in_millis": 2434 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53718106913, - "reused_in_bytes": 0, - "total_in_bytes": 53718106913 - }, - "source_throttle_time_in_millis": 91407, - "target_throttle_time_in_millis": 1304, - "total_time_in_millis": 2333550 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674692, - "stop_time_in_millis": 1569967012651, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2337959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77043538, - "total_time_in_millis": 2162 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53545535345, - "reused_in_bytes": 0, - "total_in_bytes": 53545535345 - }, - "source_throttle_time_in_millis": 72863, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2192623 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569966869778, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2195087, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76855316, - "total_time_in_millis": 1932 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53525372769, - "reused_in_bytes": 0, - "total_in_bytes": 53525372769 - }, - "source_throttle_time_in_millis": 69727, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2278609 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674692, - "stop_time_in_millis": 1569966955911, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2281219, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76777428, - "total_time_in_millis": 2071 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53750918315, - "reused_in_bytes": 0, - "total_in_bytes": 53750918315 - }, - "source_throttle_time_in_millis": 65521, - "target_throttle_time_in_millis": 41755, - "total_time_in_millis": 2175691 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674711, - "stop_time_in_millis": 1569966854146, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2179435, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77153545, - "total_time_in_millis": 2151 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54447431983, - "reused_in_bytes": 0, - "total_in_bytes": 54447431983 - }, - "source_throttle_time_in_millis": 22342, - "target_throttle_time_in_millis": 371, - "total_time_in_millis": 1319550 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569967012442, - "stop_time_in_millis": 1569968334286, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1321844, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77138203, - "total_time_in_millis": 2282 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5067 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966854204, - "stop_time_in_millis": 1569966860147, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 5942, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 837 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5940 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569967354861, - "stop_time_in_millis": 1569967361656, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 249, - "reused": 0, - "total": 249 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53120112509, - "reused_in_bytes": 0, - "total_in_bytes": 53120112509 - }, - "source_throttle_time_in_millis": 51141, - "target_throttle_time_in_millis": 4375, - "total_time_in_millis": 3985611 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674693, - "stop_time_in_millis": 1569968662678, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 3987984, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76535845, - "total_time_in_millis": 1842 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53054779678, - "reused_in_bytes": 0, - "total_in_bytes": 53054779678 - }, - "source_throttle_time_in_millis": 54005, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 4060219 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569968736805, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 4062113, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76612268, - "total_time_in_millis": 1881 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54437051882, - "reused_in_bytes": 0, - "total_in_bytes": 54437051882 - }, - "source_throttle_time_in_millis": 66825, - "target_throttle_time_in_millis": 10299, - "total_time_in_millis": 2389940 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569967066709, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2392018, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76941573, - "total_time_in_millis": 2058 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5648 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966932874, - "stop_time_in_millis": 1569966939378, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6503, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54554650152, - "reused_in_bytes": 0, - "total_in_bytes": 54554650152 - }, - "source_throttle_time_in_millis": 67190, - "target_throttle_time_in_millis": 11987, - "total_time_in_millis": 2315703 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569966994639, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2319947, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77042637, - "total_time_in_millis": 2021 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54437051882, - "reused_in_bytes": 0, - "total_in_bytes": 54437051882 - }, - "source_throttle_time_in_millis": 70504, - "target_throttle_time_in_millis": 19854, - "total_time_in_millis": 2389435 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569967066747, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2392056, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76941573, - "total_time_in_millis": 2088 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53054779678, - "reused_in_bytes": 0, - "total_in_bytes": 53054779678 - }, - "source_throttle_time_in_millis": 47892, - "target_throttle_time_in_millis": 17711, - "total_time_in_millis": 4370661 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674695, - "stop_time_in_millis": 1569969048260, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 4373564, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76612268, - "total_time_in_millis": 2373 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53773130316, - "reused_in_bytes": 0, - "total_in_bytes": 53773130316 - }, - "source_throttle_time_in_millis": 90206, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2246828 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569966924681, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2249989, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77318924, - "total_time_in_millis": 3129 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53458587817, - "reused_in_bytes": 0, - "total_in_bytes": 53458587817 - }, - "source_throttle_time_in_millis": 67633, - "target_throttle_time_in_millis": 27, - "total_time_in_millis": 2187096 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674693, - "stop_time_in_millis": 1569966863767, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2189073, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76932193, - "total_time_in_millis": 1961 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54443069757, - "reused_in_bytes": 0, - "total_in_bytes": 54443069757 - }, - "source_throttle_time_in_millis": 69336, - "target_throttle_time_in_millis": 12869, - "total_time_in_millis": 2340368 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674695, - "stop_time_in_millis": 1569967017258, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2342562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77032630, - "total_time_in_millis": 2172 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53651755091, - "reused_in_bytes": 0, - "total_in_bytes": 53651755091 - }, - "source_throttle_time_in_millis": 70071, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2255312 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569966932015, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2257324, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76856148, - "total_time_in_millis": 2000 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 270, - "reused": 0, - "total": 270 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54460228220, - "reused_in_bytes": 0, - "total_in_bytes": 54460228220 - }, - "source_throttle_time_in_millis": 100738, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 2422467 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674692, - "stop_time_in_millis": 1569967099676, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2424983, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77171568, - "total_time_in_millis": 2493 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5637 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966930480, - "stop_time_in_millis": 1569966936965, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6484, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 804 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54396243616, - "reused_in_bytes": 0, - "total_in_bytes": 54396243616 - }, - "source_throttle_time_in_millis": 36774, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2677171 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569967354824, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2680133, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77038882, - "total_time_in_millis": 2418 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 270, - "reused": 0, - "total": 270 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53711877377, - "reused_in_bytes": 0, - "total_in_bytes": 53711877377 - }, - "source_throttle_time_in_millis": 65575, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2249757 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674691, - "stop_time_in_millis": 1569966930180, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2255489, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76937875, - "total_time_in_millis": 2022 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53545535342, - "reused_in_bytes": 0, - "total_in_bytes": 53545535342 - }, - "source_throttle_time_in_millis": 4, - "target_throttle_time_in_millis": 378, - "total_time_in_millis": 1296626 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966877110, - "stop_time_in_millis": 1569968175639, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1298529, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76855316, - "total_time_in_millis": 1884 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54447431986, - "reused_in_bytes": 0, - "total_in_bytes": 54447431986 - }, - "source_throttle_time_in_millis": 72300, - "target_throttle_time_in_millis": 6320, - "total_time_in_millis": 2324923 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964674693, - "stop_time_in_millis": 1569967005275, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2330581, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77138203, - "total_time_in_millis": 2310 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5524 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569966884357, - "stop_time_in_millis": 1569966890675, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6318, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 249, - "reused": 0, - "total": 249 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53120112506, - "reused_in_bytes": 0, - "total_in_bytes": 53120112506 - }, - "source_throttle_time_in_millis": 488948, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 1870980 - }, - "index_name": "om-iu-bro-2019.09.29-000998", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968667928, - "stop_time_in_millis": 1569970540762, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1872834, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76535845, - "total_time_in_millis": 1827 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56210308951, - "reused_in_bytes": 0, - "total_in_bytes": 56210308951 - }, - "source_throttle_time_in_millis": 1743197, - "target_throttle_time_in_millis": 5018036, - "total_time_in_millis": 7338561 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320071, - "stop_time_in_millis": 1569839662190, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 7342118, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77417802, - "total_time_in_millis": 3545 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56358092650, - "reused_in_bytes": 0, - "total_in_bytes": 56358092650 - }, - "source_throttle_time_in_millis": 252979, - "target_throttle_time_in_millis": 33581, - "total_time_in_millis": 1738874 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867317602, - "stop_time_in_millis": 1569869058769, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1741166, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77740847, - "total_time_in_millis": 2279 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56220592542, - "reused_in_bytes": 0, - "total_in_bytes": 56220592542 - }, - "source_throttle_time_in_millis": 3987965, - "target_throttle_time_in_millis": 6032921, - "total_time_in_millis": 9460079 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603836, - "stop_time_in_millis": 1569834067218, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9463382, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77575679, - "total_time_in_millis": 3288 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54878074838, - "reused_in_bytes": 0, - "total_in_bytes": 54878074838 - }, - "source_throttle_time_in_millis": 24029, - "target_throttle_time_in_millis": 5619461, - "total_time_in_millis": 7977440 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797036980, - "stop_time_in_millis": 1569805018540, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7981559, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77327176, - "total_time_in_millis": 4060 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56232979539, - "reused_in_bytes": 0, - "total_in_bytes": 56232979539 - }, - "source_throttle_time_in_millis": 31789, - "target_throttle_time_in_millis": 2701178, - "total_time_in_millis": 4620133 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796693704, - "stop_time_in_millis": 1569801317764, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 4624059, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77433636, - "total_time_in_millis": 3674 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55660134357, - "reused_in_bytes": 0, - "total_in_bytes": 55660134357 - }, - "source_throttle_time_in_millis": 1588757, - "target_throttle_time_in_millis": 2616748, - "total_time_in_millis": 5593947 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801759747, - "stop_time_in_millis": 1569807358432, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 5598684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77607642, - "total_time_in_millis": 3418 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54878074835, - "reused_in_bytes": 0, - "total_in_bytes": 54878074835 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 7393, - "total_time_in_millis": 1642144 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948995384, - "stop_time_in_millis": 1569950640196, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1644811, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77327176, - "total_time_in_millis": 2656 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56358092650, - "reused_in_bytes": 0, - "total_in_bytes": 56358092650 - }, - "source_throttle_time_in_millis": 6, - "target_throttle_time_in_millis": 3853, - "total_time_in_millis": 1320505 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968736853, - "stop_time_in_millis": 1569970059904, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1323051, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77740847, - "total_time_in_millis": 2537 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55406003274, - "reused_in_bytes": 0, - "total_in_bytes": 55406003274 - }, - "source_throttle_time_in_millis": 3947973, - "target_throttle_time_in_millis": 4671596, - "total_time_in_millis": 9534235 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816688902, - "stop_time_in_millis": 1569826226873, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 9537971, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77472880, - "total_time_in_millis": 3708 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56232979536, - "reused_in_bytes": 0, - "total_in_bytes": 56232979536 - }, - "source_throttle_time_in_millis": 4474355, - "target_throttle_time_in_millis": 4582741, - "total_time_in_millis": 9681013 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812164414, - "stop_time_in_millis": 1569821849176, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 9684762, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77433636, - "total_time_in_millis": 3733 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55647285041, - "reused_in_bytes": 0, - "total_in_bytes": 55647285041 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 23021, - "total_time_in_millis": 1685904 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957581459, - "stop_time_in_millis": 1569959269673, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1688214, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77688372, - "total_time_in_millis": 2300 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55274150012, - "reused_in_bytes": 0, - "total_in_bytes": 55274150012 - }, - "source_throttle_time_in_millis": 5883263, - "target_throttle_time_in_millis": 6190091, - "total_time_in_millis": 11175494 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803795092, - "stop_time_in_millis": 1569814975181, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 11180088, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77686351, - "total_time_in_millis": 3661 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55653258257, - "reused_in_bytes": 0, - "total_in_bytes": 55653258257 - }, - "source_throttle_time_in_millis": 1325640, - "target_throttle_time_in_millis": 1861392, - "total_time_in_millis": 4431576 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706949, - "stop_time_in_millis": 1569843141756, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 4434807, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77760719, - "total_time_in_millis": 2705 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55434609213, - "reused_in_bytes": 0, - "total_in_bytes": 55434609213 - }, - "source_throttle_time_in_millis": 32088, - "target_throttle_time_in_millis": 3534004, - "total_time_in_millis": 5230794 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796416973, - "stop_time_in_millis": 1569801651049, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 5234076, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77617202, - "total_time_in_millis": 3265 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55610570212, - "reused_in_bytes": 0, - "total_in_bytes": 55610570212 - }, - "source_throttle_time_in_millis": 251155, - "target_throttle_time_in_millis": 518007, - "total_time_in_millis": 2059128 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569853510034, - "stop_time_in_millis": 1569855571779, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2061744, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77856332, - "total_time_in_millis": 2607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56210308951, - "reused_in_bytes": 0, - "total_in_bytes": 56210308951 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 83, - "total_time_in_millis": 1336236 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569878347676, - "stop_time_in_millis": 1569879686524, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1338848, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77417802, - "total_time_in_millis": 2602 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55660134357, - "reused_in_bytes": 0, - "total_in_bytes": 55660134357 - }, - "source_throttle_time_in_millis": 83385, - "target_throttle_time_in_millis": 148210, - "total_time_in_millis": 1583309 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569910744706, - "stop_time_in_millis": 1569912330547, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1585841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77607642, - "total_time_in_millis": 2520 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54550156959, - "reused_in_bytes": 0, - "total_in_bytes": 54550156959 - }, - "source_throttle_time_in_millis": 70307, - "target_throttle_time_in_millis": 622917, - "total_time_in_millis": 1862005 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569866264810, - "stop_time_in_millis": 1569868129019, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1864208, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76735992, - "total_time_in_millis": 2192 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55459995684, - "reused_in_bytes": 0, - "total_in_bytes": 55459995684 - }, - "source_throttle_time_in_millis": 5565182, - "target_throttle_time_in_millis": 5240108, - "total_time_in_millis": 10662516 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603814, - "stop_time_in_millis": 1569835270140, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 10666326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77682297, - "total_time_in_millis": 3282 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55459995684, - "reused_in_bytes": 0, - "total_in_bytes": 55459995684 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 163, - "total_time_in_millis": 1324080 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884900053, - "stop_time_in_millis": 1569886226535, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1326482, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77682297, - "total_time_in_millis": 2392 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55610570212, - "reused_in_bytes": 0, - "total_in_bytes": 55610570212 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 248676, - "total_time_in_millis": 1539196 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978547651, - "stop_time_in_millis": 1569980089267, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1541616, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77856332, - "total_time_in_millis": 2410 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56262738129, - "reused_in_bytes": 0, - "total_in_bytes": 56262738129 - }, - "source_throttle_time_in_millis": 31752, - "target_throttle_time_in_millis": 17857, - "total_time_in_millis": 1398480 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963772530, - "stop_time_in_millis": 1569965174914, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1402383, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77582464, - "total_time_in_millis": 3891 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56262738129, - "reused_in_bytes": 0, - "total_in_bytes": 56262738129 - }, - "source_throttle_time_in_millis": 319236, - "target_throttle_time_in_millis": 48, - "total_time_in_millis": 1757694 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864504164, - "stop_time_in_millis": 1569866264742, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1760577, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77582464, - "total_time_in_millis": 2369 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54550156959, - "reused_in_bytes": 0, - "total_in_bytes": 54550156959 - }, - "source_throttle_time_in_millis": 43195, - "target_throttle_time_in_millis": 73064, - "total_time_in_millis": 2054772 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569877984834, - "stop_time_in_millis": 1569880041945, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2057110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76735992, - "total_time_in_millis": 2323 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56215317500, - "reused_in_bytes": 0, - "total_in_bytes": 56215317500 - }, - "source_throttle_time_in_millis": 35124, - "target_throttle_time_in_millis": 5890881, - "total_time_in_millis": 6932290 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797592164, - "stop_time_in_millis": 1569804527725, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6935560, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77546127, - "total_time_in_millis": 3235 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55510182261, - "reused_in_bytes": 0, - "total_in_bytes": 55510182261 - }, - "source_throttle_time_in_millis": 6089652, - "target_throttle_time_in_millis": 4618036, - "total_time_in_millis": 10837893 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803149810, - "stop_time_in_millis": 1569813992452, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 10842641, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77735406, - "total_time_in_millis": 3381 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55055001207, - "reused_in_bytes": 0, - "total_in_bytes": 55055001207 - }, - "source_throttle_time_in_millis": 3920423, - "target_throttle_time_in_millis": 5475080, - "total_time_in_millis": 9124671 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603788, - "stop_time_in_millis": 1569833732136, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 9128348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77314889, - "total_time_in_millis": 3156 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56215317497, - "reused_in_bytes": 0, - "total_in_bytes": 56215317497 - }, - "source_throttle_time_in_millis": 17630, - "target_throttle_time_in_millis": 22520, - "total_time_in_millis": 1449082 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569861383500, - "stop_time_in_millis": 1569862837523, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1454023, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77546127, - "total_time_in_millis": 4929 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55510182261, - "reused_in_bytes": 0, - "total_in_bytes": 55510182261 - }, - "source_throttle_time_in_millis": 4852530, - "target_throttle_time_in_millis": 2099934, - "total_time_in_millis": 7906507 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867327, - "stop_time_in_millis": 1569843778585, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 7911257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77735406, - "total_time_in_millis": 3203 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55274150015, - "reused_in_bytes": 0, - "total_in_bytes": 55274150015 - }, - "source_throttle_time_in_millis": 30803, - "target_throttle_time_in_millis": 5310607, - "total_time_in_millis": 6292418 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797495429, - "stop_time_in_millis": 1569803794360, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6298930, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77686351, - "total_time_in_millis": 3171 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55055001210, - "reused_in_bytes": 0, - "total_in_bytes": 55055001210 - }, - "source_throttle_time_in_millis": 35160, - "target_throttle_time_in_millis": 6042303, - "total_time_in_millis": 6841032 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797119447, - "stop_time_in_millis": 1569803964291, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 6844844, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77314889, - "total_time_in_millis": 3273 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55434609210, - "reused_in_bytes": 0, - "total_in_bytes": 55434609210 - }, - "source_throttle_time_in_millis": 16759, - "target_throttle_time_in_millis": 206, - "total_time_in_millis": 1365077 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875019952, - "stop_time_in_millis": 1569876387405, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1367453, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77617202, - "total_time_in_millis": 2366 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55647285044, - "reused_in_bytes": 0, - "total_in_bytes": 55647285044 - }, - "source_throttle_time_in_millis": 37503, - "target_throttle_time_in_millis": 2273630, - "total_time_in_millis": 4313955 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796730208, - "stop_time_in_millis": 1569801047340, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 4317132, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77688372, - "total_time_in_millis": 3083 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56220592542, - "reused_in_bytes": 0, - "total_in_bytes": 56220592542 - }, - "source_throttle_time_in_millis": 526864, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 1924408 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569865813841, - "stop_time_in_millis": 1569867740993, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1927151, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77575679, - "total_time_in_millis": 2729 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55653258257, - "reused_in_bytes": 0, - "total_in_bytes": 55653258257 - }, - "source_throttle_time_in_millis": 107477, - "target_throttle_time_in_millis": 68, - "total_time_in_millis": 1503632 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569911151691, - "stop_time_in_millis": 1569912657975, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1506283, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77760719, - "total_time_in_millis": 2641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55406003277, - "reused_in_bytes": 0, - "total_in_bytes": 55406003277 - }, - "source_throttle_time_in_millis": 26275, - "target_throttle_time_in_millis": 4880239, - "total_time_in_millis": 6048470 - }, - "index_name": "om-iu-bro-2019.09.27-000991", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796398908, - "stop_time_in_millis": 1569802451564, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 6052655, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77472880, - "total_time_in_millis": 3118 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51222047558, - "reused_in_bytes": 0, - "total_in_bytes": 51222047558 - }, - "source_throttle_time_in_millis": 85226, - "target_throttle_time_in_millis": 69337, - "total_time_in_millis": 1424502 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569857737088, - "stop_time_in_millis": 1569859164120, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1427031, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75380835, - "total_time_in_millis": 2513 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51283743807, - "reused_in_bytes": 0, - "total_in_bytes": 51283743807 - }, - "source_throttle_time_in_millis": 28730, - "target_throttle_time_in_millis": 117, - "total_time_in_millis": 1369756 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569872899622, - "stop_time_in_millis": 1569874273435, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1373812, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75427439, - "total_time_in_millis": 2526 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51285003613, - "reused_in_bytes": 0, - "total_in_bytes": 51285003613 - }, - "source_throttle_time_in_millis": 45200, - "target_throttle_time_in_millis": 2062324, - "total_time_in_millis": 3853550 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150133, - "stop_time_in_millis": 1569838007191, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 3857058, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75390514, - "total_time_in_millis": 3489 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50922714419, - "reused_in_bytes": 0, - "total_in_bytes": 50922714419 - }, - "source_throttle_time_in_millis": 122022, - "target_throttle_time_in_millis": 123092, - "total_time_in_millis": 1716450 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884869771, - "stop_time_in_millis": 1569886589107, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1719335, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75242876, - "total_time_in_millis": 2871 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51417127111, - "reused_in_bytes": 0, - "total_in_bytes": 51417127111 - }, - "source_throttle_time_in_millis": 589583, - "target_throttle_time_in_millis": 61272, - "total_time_in_millis": 1907627 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569865884595, - "stop_time_in_millis": 1569867795417, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1910821, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75523466, - "total_time_in_millis": 2675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51488611750, - "reused_in_bytes": 0, - "total_in_bytes": 51488611750 - }, - "source_throttle_time_in_millis": 33851, - "target_throttle_time_in_millis": 3953556, - "total_time_in_millis": 5138304 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150145, - "stop_time_in_millis": 1569839291479, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 5141334, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75544883, - "total_time_in_millis": 3012 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51126123475, - "reused_in_bytes": 0, - "total_in_bytes": 51126123475 - }, - "source_throttle_time_in_millis": 43088, - "target_throttle_time_in_millis": 1938717, - "total_time_in_millis": 3648077 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150147, - "stop_time_in_millis": 1569837801526, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 3651378, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75300619, - "total_time_in_millis": 3284 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51387635684, - "reused_in_bytes": 0, - "total_in_bytes": 51387635684 - }, - "source_throttle_time_in_millis": 5, - "target_throttle_time_in_millis": 107, - "total_time_in_millis": 1233884 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569880042012, - "stop_time_in_millis": 1569881278472, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1236459, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75401224, - "total_time_in_millis": 2565 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52087582188, - "reused_in_bytes": 0, - "total_in_bytes": 52087582188 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 243, - "total_time_in_millis": 1234301 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569865347911, - "stop_time_in_millis": 1569866585296, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1237385, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75458398, - "total_time_in_millis": 3072 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51948471708, - "reused_in_bytes": 0, - "total_in_bytes": 51948471708 - }, - "source_throttle_time_in_millis": 33440, - "target_throttle_time_in_millis": 3749785, - "total_time_in_millis": 5429554 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150143, - "stop_time_in_millis": 1569839583154, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 5433010, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75419932, - "total_time_in_millis": 3329 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52087582188, - "reused_in_bytes": 0, - "total_in_bytes": 52087582188 - }, - "source_throttle_time_in_millis": 233550, - "target_throttle_time_in_millis": 52327, - "total_time_in_millis": 1536599 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876688183, - "stop_time_in_millis": 1569878227626, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1539442, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75458398, - "total_time_in_millis": 2834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51417127111, - "reused_in_bytes": 0, - "total_in_bytes": 51417127111 - }, - "source_throttle_time_in_millis": 30326, - "target_throttle_time_in_millis": 13756, - "total_time_in_millis": 1331770 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875353614, - "stop_time_in_millis": 1569876688122, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1334508, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75523466, - "total_time_in_millis": 2726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50922714419, - "reused_in_bytes": 0, - "total_in_bytes": 50922714419 - }, - "source_throttle_time_in_millis": 1411701, - "target_throttle_time_in_millis": 1774625, - "total_time_in_millis": 3858509 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569839059349, - "stop_time_in_millis": 1569842922067, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 3862717, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75242876, - "total_time_in_millis": 2644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51795713170, - "reused_in_bytes": 0, - "total_in_bytes": 51795713170 - }, - "source_throttle_time_in_millis": 157815, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1448310 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864433666, - "stop_time_in_millis": 1569865884528, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1450861, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75259244, - "total_time_in_millis": 2536 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51795713170, - "reused_in_bytes": 0, - "total_in_bytes": 51795713170 - }, - "source_throttle_time_in_millis": 41163, - "target_throttle_time_in_millis": 21712, - "total_time_in_millis": 1349873 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859369689, - "stop_time_in_millis": 1569860722284, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1352594, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75259244, - "total_time_in_millis": 2706 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51488611747, - "reused_in_bytes": 0, - "total_in_bytes": 51488611747 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 1359603 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569946936667, - "stop_time_in_millis": 1569948298683, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1362016, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75544883, - "total_time_in_millis": 2402 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52001638531, - "reused_in_bytes": 0, - "total_in_bytes": 52001638531 - }, - "source_throttle_time_in_millis": 912, - "target_throttle_time_in_millis": 56082, - "total_time_in_millis": 1506733 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893073638, - "stop_time_in_millis": 1569894582923, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1509284, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75345824, - "total_time_in_millis": 2534 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51126123475, - "reused_in_bytes": 0, - "total_in_bytes": 51126123475 - }, - "source_throttle_time_in_millis": 42731, - "target_throttle_time_in_millis": 2967803, - "total_time_in_millis": 4439360 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150144, - "stop_time_in_millis": 1569838592567, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 4442422, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75300619, - "total_time_in_millis": 3051 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51283743807, - "reused_in_bytes": 0, - "total_in_bytes": 51283743807 - }, - "source_throttle_time_in_millis": 27611, - "target_throttle_time_in_millis": 12896, - "total_time_in_millis": 1364167 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569861190138, - "stop_time_in_millis": 1569862557022, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1366883, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75427439, - "total_time_in_millis": 2705 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50870595236, - "reused_in_bytes": 0, - "total_in_bytes": 50870595236 - }, - "source_throttle_time_in_millis": 45114, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 1369024 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930504854, - "stop_time_in_millis": 1569931876385, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1371531, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75190785, - "total_time_in_millis": 2496 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51270960111, - "reused_in_bytes": 0, - "total_in_bytes": 51270960111 - }, - "source_throttle_time_in_millis": 100706, - "target_throttle_time_in_millis": 87, - "total_time_in_millis": 1422146 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569891649097, - "stop_time_in_millis": 1569893073582, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1424484, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75416016, - "total_time_in_millis": 2328 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51285003613, - "reused_in_bytes": 0, - "total_in_bytes": 51285003613 - }, - "source_throttle_time_in_millis": 46020, - "target_throttle_time_in_millis": 624421, - "total_time_in_millis": 2879003 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150136, - "stop_time_in_millis": 1569837031774, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2881637, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75390514, - "total_time_in_millis": 2625 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51387635684, - "reused_in_bytes": 0, - "total_in_bytes": 51387635684 - }, - "source_throttle_time_in_millis": 129337, - "target_throttle_time_in_millis": 108, - "total_time_in_millis": 1538949 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875313655, - "stop_time_in_millis": 1569876855241, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1541585, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75401224, - "total_time_in_millis": 2623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52028537454, - "reused_in_bytes": 0, - "total_in_bytes": 52028537454 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 1556265 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569865758423, - "stop_time_in_millis": 1569867317532, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1559108, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75409748, - "total_time_in_millis": 2831 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52028537454, - "reused_in_bytes": 0, - "total_in_bytes": 52028537454 - }, - "source_throttle_time_in_millis": 150455, - "target_throttle_time_in_millis": 23, - "total_time_in_millis": 1620159 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860388396, - "stop_time_in_millis": 1569862011207, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1622811, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75409748, - "total_time_in_millis": 2643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50870595236, - "reused_in_bytes": 0, - "total_in_bytes": 50870595236 - }, - "source_throttle_time_in_millis": 636004, - "target_throttle_time_in_millis": 5969, - "total_time_in_millis": 1928231 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569877704369, - "stop_time_in_millis": 1569879635040, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1930671, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75190785, - "total_time_in_millis": 2429 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50998370973, - "reused_in_bytes": 0, - "total_in_bytes": 50998370973 - }, - "source_throttle_time_in_millis": 60253, - "target_throttle_time_in_millis": 1761009, - "total_time_in_millis": 5529173 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150133, - "stop_time_in_millis": 1569839681949, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5531815, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75285203, - "total_time_in_millis": 2626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51147457172, - "reused_in_bytes": 0, - "total_in_bytes": 51147457172 - }, - "source_throttle_time_in_millis": 37571, - "target_throttle_time_in_millis": 3743256, - "total_time_in_millis": 5084360 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150133, - "stop_time_in_millis": 1569839237541, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 5087407, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75441613, - "total_time_in_millis": 2885 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51147457172, - "reused_in_bytes": 0, - "total_in_bytes": 51147457172 - }, - "source_throttle_time_in_millis": 37364, - "target_throttle_time_in_millis": 3666021, - "total_time_in_millis": 4892703 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150134, - "stop_time_in_millis": 1569839046311, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 4896176, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75441613, - "total_time_in_millis": 3460 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52001638531, - "reused_in_bytes": 0, - "total_in_bytes": 52001638531 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 52333, - "total_time_in_millis": 1442083 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569960806525, - "stop_time_in_millis": 1569962251153, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1444628, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75345824, - "total_time_in_millis": 2535 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52004329077, - "reused_in_bytes": 0, - "total_in_bytes": 52004329077 - }, - "source_throttle_time_in_millis": 522554, - "target_throttle_time_in_millis": 421824, - "total_time_in_millis": 2152192 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569865785763, - "stop_time_in_millis": 1569867940923, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2155160, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75503962, - "total_time_in_millis": 2952 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51222047558, - "reused_in_bytes": 0, - "total_in_bytes": 51222047558 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 24056, - "total_time_in_millis": 1274403 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961577388, - "stop_time_in_millis": 1569962854375, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1276986, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75380835, - "total_time_in_millis": 2573 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51270960114, - "reused_in_bytes": 0, - "total_in_bytes": 51270960114 - }, - "source_throttle_time_in_millis": 31800, - "target_throttle_time_in_millis": 5670505, - "total_time_in_millis": 6284247 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150147, - "stop_time_in_millis": 1569840438238, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 6288091, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75416016, - "total_time_in_millis": 2683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52004329077, - "reused_in_bytes": 0, - "total_in_bytes": 52004329077 - }, - "source_throttle_time_in_millis": 226112, - "target_throttle_time_in_millis": 44351, - "total_time_in_millis": 1789874 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860470781, - "stop_time_in_millis": 1569862263575, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1792794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75503962, - "total_time_in_millis": 2910 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51948471705, - "reused_in_bytes": 0, - "total_in_bytes": 51948471705 - }, - "source_throttle_time_in_millis": 74901, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1488581 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935473837, - "stop_time_in_millis": 1569936965516, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1491678, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75419932, - "total_time_in_millis": 3088 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50998370973, - "reused_in_bytes": 0, - "total_in_bytes": 50998370973 - }, - "source_throttle_time_in_millis": 43351, - "target_throttle_time_in_millis": 833653, - "total_time_in_millis": 4985953 - }, - "index_name": "om-iu-bro-2019.09.28-000993", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569834150916, - "stop_time_in_millis": 1569839139962, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 4989046, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75285203, - "total_time_in_millis": 3077 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55613762837, - "reused_in_bytes": 0, - "total_in_bytes": 55613762837 - }, - "source_throttle_time_in_millis": 27249, - "target_throttle_time_in_millis": 2055213, - "total_time_in_millis": 4089292 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815624484, - "stop_time_in_millis": 1569819718773, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 4094288, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77576287, - "total_time_in_millis": 3552 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 342, - "reused": 0, - "total": 342 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54921249221, - "reused_in_bytes": 0, - "total_in_bytes": 54921249221 - }, - "source_throttle_time_in_millis": 137879, - "target_throttle_time_in_millis": 35339, - "total_time_in_millis": 1744775 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569907127962, - "stop_time_in_millis": 1569908875207, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1747244, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77718257, - "total_time_in_millis": 2459 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54439801400, - "reused_in_bytes": 0, - "total_in_bytes": 54439801400 - }, - "source_throttle_time_in_millis": 27879, - "target_throttle_time_in_millis": 5704811, - "total_time_in_millis": 6566929 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815874546, - "stop_time_in_millis": 1569822444802, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 6570255, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77461313, - "total_time_in_millis": 3310 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54929628827, - "reused_in_bytes": 0, - "total_in_bytes": 54929628827 - }, - "source_throttle_time_in_millis": 32743, - "target_throttle_time_in_millis": 6739401, - "total_time_in_millis": 7521184 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816463712, - "stop_time_in_millis": 1569823988406, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7524693, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77753114, - "total_time_in_millis": 2989 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54715412359, - "reused_in_bytes": 0, - "total_in_bytes": 54715412359 - }, - "source_throttle_time_in_millis": 559298, - "target_throttle_time_in_millis": 7139750, - "total_time_in_millis": 7326822 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832295334, - "stop_time_in_millis": 1569839625104, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 7329769, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77390794, - "total_time_in_millis": 2938 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 261, - "reused": 0, - "total": 261 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53890642954, - "reused_in_bytes": 0, - "total_in_bytes": 53890642954 - }, - "source_throttle_time_in_millis": 3375, - "target_throttle_time_in_millis": 719855, - "total_time_in_millis": 1964999 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569877600036, - "stop_time_in_millis": 1569879567120, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1967084, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76781936, - "total_time_in_millis": 2075 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54671903393, - "reused_in_bytes": 0, - "total_in_bytes": 54671903393 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 112936, - "total_time_in_millis": 1674268 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876670930, - "stop_time_in_millis": 1569878347552, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1676621, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77504136, - "total_time_in_millis": 2344 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55504928783, - "reused_in_bytes": 0, - "total_in_bytes": 55504928783 - }, - "source_throttle_time_in_millis": 31721, - "target_throttle_time_in_millis": 6080650, - "total_time_in_millis": 7203333 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815731810, - "stop_time_in_millis": 1569822938325, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 7206515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77555982, - "total_time_in_millis": 3161 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55510841881, - "reused_in_bytes": 0, - "total_in_bytes": 55510841881 - }, - "source_throttle_time_in_millis": 32565, - "target_throttle_time_in_millis": 3383525, - "total_time_in_millis": 5147779 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816688913, - "stop_time_in_millis": 1569821840270, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5151356, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77625778, - "total_time_in_millis": 3561 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54715412359, - "reused_in_bytes": 0, - "total_in_bytes": 54715412359 - }, - "source_throttle_time_in_millis": 140824, - "target_throttle_time_in_millis": 9077, - "total_time_in_millis": 1769189 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860711789, - "stop_time_in_millis": 1569862483614, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1771825, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77390794, - "total_time_in_millis": 2624 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 339, - "reused": 0, - "total": 339 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54848404569, - "reused_in_bytes": 0, - "total_in_bytes": 54848404569 - }, - "source_throttle_time_in_millis": 91481, - "target_throttle_time_in_millis": 447846, - "total_time_in_millis": 1921490 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954533539, - "stop_time_in_millis": 1569956457772, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1924232, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77481858, - "total_time_in_millis": 2732 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55555718763, - "reused_in_bytes": 0, - "total_in_bytes": 55555718763 - }, - "source_throttle_time_in_millis": 30759, - "target_throttle_time_in_millis": 6318605, - "total_time_in_millis": 7602380 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815560011, - "stop_time_in_millis": 1569823165743, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 7605732, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77494701, - "total_time_in_millis": 3329 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54654181749, - "reused_in_bytes": 0, - "total_in_bytes": 54654181749 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 162, - "total_time_in_millis": 1290107 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864521180, - "stop_time_in_millis": 1569865813770, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1292590, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77467732, - "total_time_in_millis": 2474 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 339, - "reused": 0, - "total": 339 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54848404569, - "reused_in_bytes": 0, - "total_in_bytes": 54848404569 - }, - "source_throttle_time_in_millis": 209722, - "target_throttle_time_in_millis": 32243, - "total_time_in_millis": 1705796 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569870369556, - "stop_time_in_millis": 1569872078184, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1708628, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77481858, - "total_time_in_millis": 2818 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55504928780, - "reused_in_bytes": 0, - "total_in_bytes": 55504928780 - }, - "source_throttle_time_in_millis": 23263, - "target_throttle_time_in_millis": 517634, - "total_time_in_millis": 1867148 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569853215749, - "stop_time_in_millis": 1569855085332, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1869583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77555982, - "total_time_in_millis": 2424 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54717980789, - "reused_in_bytes": 0, - "total_in_bytes": 54717980789 - }, - "source_throttle_time_in_millis": 32990, - "target_throttle_time_in_millis": 6021097, - "total_time_in_millis": 6869764 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816547731, - "stop_time_in_millis": 1569823421524, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6873792, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77367786, - "total_time_in_millis": 4002 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54671903393, - "reused_in_bytes": 0, - "total_in_bytes": 54671903393 - }, - "source_throttle_time_in_millis": 34977, - "target_throttle_time_in_millis": 26019, - "total_time_in_millis": 1736169 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974240219, - "stop_time_in_millis": 1569975978691, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1738472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77504136, - "total_time_in_millis": 2292 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54717980786, - "reused_in_bytes": 0, - "total_in_bytes": 54717980786 - }, - "source_throttle_time_in_millis": 18289, - "target_throttle_time_in_millis": 39040, - "total_time_in_millis": 1361271 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569857328064, - "stop_time_in_millis": 1569858691943, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1363879, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77367786, - "total_time_in_millis": 2599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55613762834, - "reused_in_bytes": 0, - "total_in_bytes": 55613762834 - }, - "source_throttle_time_in_millis": 93271, - "target_throttle_time_in_millis": 32174, - "total_time_in_millis": 1678902 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569868827889, - "stop_time_in_millis": 1569870509334, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1681444, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77576287, - "total_time_in_millis": 2529 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54276476726, - "reused_in_bytes": 0, - "total_in_bytes": 54276476726 - }, - "source_throttle_time_in_millis": 6506, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 1390683 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968800440, - "stop_time_in_millis": 1569970193309, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1392869, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77167160, - "total_time_in_millis": 2176 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54922380559, - "reused_in_bytes": 0, - "total_in_bytes": 54922380559 - }, - "source_throttle_time_in_millis": 5031651, - "target_throttle_time_in_millis": 1171316, - "total_time_in_millis": 7750719 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093276, - "stop_time_in_millis": 1569837846941, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 7753664, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77773127, - "total_time_in_millis": 2936 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54654181752, - "reused_in_bytes": 0, - "total_in_bytes": 54654181752 - }, - "source_throttle_time_in_millis": 34995, - "target_throttle_time_in_millis": 4966833, - "total_time_in_millis": 6183157 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815877967, - "stop_time_in_millis": 1569822064492, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 6186524, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77467732, - "total_time_in_millis": 3347 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55623501652, - "reused_in_bytes": 0, - "total_in_bytes": 55623501652 - }, - "source_throttle_time_in_millis": 33197, - "target_throttle_time_in_millis": 60583, - "total_time_in_millis": 1429308 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569890967551, - "stop_time_in_millis": 1569892399363, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1431812, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77613647, - "total_time_in_millis": 2495 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54276476729, - "reused_in_bytes": 0, - "total_in_bytes": 54276476729 - }, - "source_throttle_time_in_millis": 27624, - "target_throttle_time_in_millis": 1202165, - "total_time_in_millis": 5337660 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815559984, - "stop_time_in_millis": 1569820905615, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 5345631, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77167160, - "total_time_in_millis": 7453 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 342, - "reused": 0, - "total": 342 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54921249221, - "reused_in_bytes": 0, - "total_in_bytes": 54921249221 - }, - "source_throttle_time_in_millis": 16200, - "target_throttle_time_in_millis": 426865, - "total_time_in_millis": 1607453 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569854674000, - "stop_time_in_millis": 1569856283936, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1609936, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77718257, - "total_time_in_millis": 2470 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54439801397, - "reused_in_bytes": 0, - "total_in_bytes": 54439801397 - }, - "source_throttle_time_in_millis": 124945, - "target_throttle_time_in_millis": 248, - "total_time_in_millis": 1499086 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569905838648, - "stop_time_in_millis": 1569907340231, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1501583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77461313, - "total_time_in_millis": 2484 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55402565657, - "reused_in_bytes": 0, - "total_in_bytes": 55402565657 - }, - "source_throttle_time_in_millis": 36206, - "target_throttle_time_in_millis": 5553633, - "total_time_in_millis": 6811602 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816082992, - "stop_time_in_millis": 1569822897631, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 6814638, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77548056, - "total_time_in_millis": 3017 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55623501655, - "reused_in_bytes": 0, - "total_in_bytes": 55623501655 - }, - "source_throttle_time_in_millis": 27382, - "target_throttle_time_in_millis": 4776615, - "total_time_in_millis": 6540137 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815601716, - "stop_time_in_millis": 1569822146236, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 6544520, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77613647, - "total_time_in_millis": 3835 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54922380562, - "reused_in_bytes": 0, - "total_in_bytes": 54922380562 - }, - "source_throttle_time_in_millis": 35738, - "target_throttle_time_in_millis": 2472280, - "total_time_in_millis": 4769352 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815605295, - "stop_time_in_millis": 1569820378315, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 4773020, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77773127, - "total_time_in_millis": 3647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55510841878, - "reused_in_bytes": 0, - "total_in_bytes": 55510841878 - }, - "source_throttle_time_in_millis": 16647, - "target_throttle_time_in_millis": 260241, - "total_time_in_millis": 1636510 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959269755, - "stop_time_in_millis": 1569960908860, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1639105, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77625778, - "total_time_in_millis": 2586 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54929628824, - "reused_in_bytes": 0, - "total_in_bytes": 54929628824 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 437314, - "total_time_in_millis": 1884561 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864839629, - "stop_time_in_millis": 1569866726797, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1887167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77753114, - "total_time_in_millis": 2596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55555718760, - "reused_in_bytes": 0, - "total_in_bytes": 55555718760 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 37574, - "total_time_in_millis": 1679864 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569891992967, - "stop_time_in_millis": 1569893675366, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1682399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77494701, - "total_time_in_millis": 2523 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55402565654, - "reused_in_bytes": 0, - "total_in_bytes": 55402565654 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 315467, - "total_time_in_millis": 1653387 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569856284045, - "stop_time_in_millis": 1569857939796, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1655750, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77548056, - "total_time_in_millis": 2352 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54665903720, - "reused_in_bytes": 0, - "total_in_bytes": 54665903720 - }, - "source_throttle_time_in_millis": 29063, - "target_throttle_time_in_millis": 6962545, - "total_time_in_millis": 7518355 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816595028, - "stop_time_in_millis": 1569824117419, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 7522391, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77621556, - "total_time_in_millis": 4005 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54665903720, - "reused_in_bytes": 0, - "total_in_bytes": 54665903720 - }, - "source_throttle_time_in_millis": 30395, - "target_throttle_time_in_millis": 4979046, - "total_time_in_millis": 6439198 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569815763807, - "stop_time_in_millis": 1569822206595, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6442788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77621556, - "total_time_in_millis": 3452 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 261, - "reused": 0, - "total": 261 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53890642954, - "reused_in_bytes": 0, - "total_in_bytes": 53890642954 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 278098, - "total_time_in_millis": 1675706 - }, - "index_name": "om-iu-bro-2019.09.27-000992", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569853639246, - "stop_time_in_millis": 1569855319824, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1680578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76781936, - "total_time_in_millis": 2259 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52218039111, - "reused_in_bytes": 0, - "total_in_bytes": 52218039111 - }, - "source_throttle_time_in_millis": 72083, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2159233 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889130215, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2162643, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74654934, - "total_time_in_millis": 2887 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51430487942, - "reused_in_bytes": 0, - "total_in_bytes": 51430487942 - }, - "source_throttle_time_in_millis": 67415, - "target_throttle_time_in_millis": 83, - "total_time_in_millis": 2048992 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967573, - "stop_time_in_millis": 1569889019728, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2052155, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74432948, - "total_time_in_millis": 2642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52150357791, - "reused_in_bytes": 0, - "total_in_bytes": 52150357791 - }, - "source_throttle_time_in_millis": 71143, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2182549 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967573, - "stop_time_in_millis": 1569889153837, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2186264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74536584, - "total_time_in_millis": 2690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51491645945, - "reused_in_bytes": 0, - "total_in_bytes": 51491645945 - }, - "source_throttle_time_in_millis": 32452, - "target_throttle_time_in_millis": 108079, - "total_time_in_millis": 1640283 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889488865, - "stop_time_in_millis": 1569891131996, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1643130, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74512144, - "total_time_in_millis": 2838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51225653770, - "reused_in_bytes": 0, - "total_in_bytes": 51225653770 - }, - "source_throttle_time_in_millis": 46200, - "target_throttle_time_in_millis": 12873, - "total_time_in_millis": 4050459 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967573, - "stop_time_in_millis": 1569891020419, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 4052845, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74453411, - "total_time_in_millis": 2369 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52218039108, - "reused_in_bytes": 0, - "total_in_bytes": 52218039108 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 335, - "total_time_in_millis": 1240656 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889138234, - "stop_time_in_millis": 1569890381683, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1243449, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74654934, - "total_time_in_millis": 2774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52060571353, - "reused_in_bytes": 0, - "total_in_bytes": 52060571353 - }, - "source_throttle_time_in_millis": 4, - "target_throttle_time_in_millis": 344, - "total_time_in_millis": 1225007 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889108537, - "stop_time_in_millis": 1569890336099, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1227562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74589078, - "total_time_in_millis": 2543 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51545279397, - "reused_in_bytes": 0, - "total_in_bytes": 51545279397 - }, - "source_throttle_time_in_millis": 74307, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2177586 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967574, - "stop_time_in_millis": 1569889147630, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2180056, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74558151, - "total_time_in_millis": 2461 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5117 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889064342, - "stop_time_in_millis": 1569889070376, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 6033, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 871 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52051440714, - "reused_in_bytes": 0, - "total_in_bytes": 52051440714 - }, - "source_throttle_time_in_millis": 62472, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2469303 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967577, - "stop_time_in_millis": 1569889440450, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2472872, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74474344, - "total_time_in_millis": 3045 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4843 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889193292, - "stop_time_in_millis": 1569889198965, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 5672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 780 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51491645948, - "reused_in_bytes": 0, - "total_in_bytes": 51491645948 - }, - "source_throttle_time_in_millis": 76586, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2513973 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889484634, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2517062, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74512144, - "total_time_in_millis": 2540 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52077646339, - "reused_in_bytes": 0, - "total_in_bytes": 52077646339 - }, - "source_throttle_time_in_millis": 96260, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2267743 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889238388, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2270816, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74598123, - "total_time_in_millis": 2504 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51303325882, - "reused_in_bytes": 0, - "total_in_bytes": 51303325882 - }, - "source_throttle_time_in_millis": 61582, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2222567 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889193252, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2225679, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74461925, - "total_time_in_millis": 2550 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51528973304, - "reused_in_bytes": 0, - "total_in_bytes": 51528973304 - }, - "source_throttle_time_in_millis": 63031, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2170889 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967571, - "stop_time_in_millis": 1569889141599, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2174028, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74495316, - "total_time_in_millis": 2602 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52051440714, - "reused_in_bytes": 0, - "total_in_bytes": 52051440714 - }, - "source_throttle_time_in_millis": 96307, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2204029 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967574, - "stop_time_in_millis": 1569889174691, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2207116, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74474344, - "total_time_in_millis": 2557 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52109015270, - "reused_in_bytes": 0, - "total_in_bytes": 52109015270 - }, - "source_throttle_time_in_millis": 65338, - "target_throttle_time_in_millis": 20867, - "total_time_in_millis": 2251686 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967574, - "stop_time_in_millis": 1569889222298, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2254724, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74479032, - "total_time_in_millis": 2514 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51430972288, - "reused_in_bytes": 0, - "total_in_bytes": 51430972288 - }, - "source_throttle_time_in_millis": 68681, - "target_throttle_time_in_millis": 23399, - "total_time_in_millis": 2122854 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967571, - "stop_time_in_millis": 1569889093525, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2125953, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74482879, - "total_time_in_millis": 2497 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4871 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889155861, - "stop_time_in_millis": 1569889161508, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 5647, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51430972288, - "reused_in_bytes": 0, - "total_in_bytes": 51430972288 - }, - "source_throttle_time_in_millis": 64786, - "target_throttle_time_in_millis": 22, - "total_time_in_millis": 2122819 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967578, - "stop_time_in_millis": 1569889093556, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2125978, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74482879, - "total_time_in_millis": 2523 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52109015270, - "reused_in_bytes": 0, - "total_in_bytes": 52109015270 - }, - "source_throttle_time_in_millis": 77075, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2242589 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967574, - "stop_time_in_millis": 1569889212706, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2245131, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74479032, - "total_time_in_millis": 2531 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51567515298, - "reused_in_bytes": 0, - "total_in_bytes": 51567515298 - }, - "source_throttle_time_in_millis": 64365, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2091894 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889064010, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2096438, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74565463, - "total_time_in_millis": 2501 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51587103283, - "reused_in_bytes": 0, - "total_in_bytes": 51587103283 - }, - "source_throttle_time_in_millis": 70347, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2258424 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889228314, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2260741, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74554434, - "total_time_in_millis": 2308 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52077646336, - "reused_in_bytes": 0, - "total_in_bytes": 52077646336 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 57, - "total_time_in_millis": 1546218 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889243138, - "stop_time_in_millis": 1569890792187, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1549048, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74598123, - "total_time_in_millis": 2808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51421737213, - "reused_in_bytes": 0, - "total_in_bytes": 51421737213 - }, - "source_throttle_time_in_millis": 71178, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2096458 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967576, - "stop_time_in_millis": 1569889066686, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2099110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74526357, - "total_time_in_millis": 2627 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51225653770, - "reused_in_bytes": 0, - "total_in_bytes": 51225653770 - }, - "source_throttle_time_in_millis": 50082, - "target_throttle_time_in_millis": 64288, - "total_time_in_millis": 3950365 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569890920363, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 3952791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74453411, - "total_time_in_millis": 2382 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51318260464, - "reused_in_bytes": 0, - "total_in_bytes": 51318260464 - }, - "source_throttle_time_in_millis": 64848, - "target_throttle_time_in_millis": 99, - "total_time_in_millis": 2157533 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889127922, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2160350, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74295391, - "total_time_in_millis": 2291 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51545279397, - "reused_in_bytes": 0, - "total_in_bytes": 51545279397 - }, - "source_throttle_time_in_millis": 61591, - "target_throttle_time_in_millis": 43746, - "total_time_in_millis": 2252286 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967571, - "stop_time_in_millis": 1569889222809, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2255237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74558151, - "total_time_in_millis": 2422 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51430487942, - "reused_in_bytes": 0, - "total_in_bytes": 51430487942 - }, - "source_throttle_time_in_millis": 62861, - "target_throttle_time_in_millis": 76, - "total_time_in_millis": 2048989 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889020128, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2052555, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74432948, - "total_time_in_millis": 3034 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51399129754, - "reused_in_bytes": 0, - "total_in_bytes": 51399129754 - }, - "source_throttle_time_in_millis": 52972, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 3996803 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569890967466, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 3999894, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74570228, - "total_time_in_millis": 2563 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51421737213, - "reused_in_bytes": 0, - "total_in_bytes": 51421737213 - }, - "source_throttle_time_in_millis": 62223, - "target_throttle_time_in_millis": 84296, - "total_time_in_millis": 2111574 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889082392, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2114820, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74526357, - "total_time_in_millis": 2713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51528973304, - "reused_in_bytes": 0, - "total_in_bytes": 51528973304 - }, - "source_throttle_time_in_millis": 63496, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2171410 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889141594, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2174021, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74495316, - "total_time_in_millis": 2601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51318260464, - "reused_in_bytes": 0, - "total_in_bytes": 51318260464 - }, - "source_throttle_time_in_millis": 66969, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2154911 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967573, - "stop_time_in_millis": 1569889125175, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2157601, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74295391, - "total_time_in_millis": 2170 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52060571356, - "reused_in_bytes": 0, - "total_in_bytes": 52060571356 - }, - "source_throttle_time_in_millis": 85751, - "target_throttle_time_in_millis": 48, - "total_time_in_millis": 2133783 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967572, - "stop_time_in_millis": 1569889104424, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2136852, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74589078, - "total_time_in_millis": 2548 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51587103283, - "reused_in_bytes": 0, - "total_in_bytes": 51587103283 - }, - "source_throttle_time_in_millis": 64415, - "target_throttle_time_in_millis": 11948, - "total_time_in_millis": 2269592 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886967573, - "stop_time_in_millis": 1569889239863, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2272290, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74554434, - "total_time_in_millis": 2688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51399129751, - "reused_in_bytes": 0, - "total_in_bytes": 51399129751 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 263, - "total_time_in_millis": 1265862 - }, - "index_name": "om-iu-bro-2019.09.28-000995", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569890971755, - "stop_time_in_millis": 1569892240140, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1268385, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74570228, - "total_time_in_millis": 2503 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50204248213, - "reused_in_bytes": 0, - "total_in_bytes": 50204248213 - }, - "source_throttle_time_in_millis": 61670, - "target_throttle_time_in_millis": 37006, - "total_time_in_millis": 2144464 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020966, - "stop_time_in_millis": 1569864168578, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2147611, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75136980, - "total_time_in_millis": 2617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4879 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864288074, - "stop_time_in_millis": 1569864293723, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 5648, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 728 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50952249837, - "reused_in_bytes": 0, - "total_in_bytes": 50952249837 - }, - "source_throttle_time_in_millis": 68049, - "target_throttle_time_in_millis": 17631, - "total_time_in_millis": 2209724 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864233734, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2212772, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75269596, - "total_time_in_millis": 2520 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50363314596, - "reused_in_bytes": 0, - "total_in_bytes": 50363314596 - }, - "source_throttle_time_in_millis": 61518, - "target_throttle_time_in_millis": 51029, - "total_time_in_millis": 2494535 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020966, - "stop_time_in_millis": 1569864521102, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2500136, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75230049, - "total_time_in_millis": 2741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50835237065, - "reused_in_bytes": 0, - "total_in_bytes": 50835237065 - }, - "source_throttle_time_in_millis": 72352, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2156009 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864180017, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2159054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75242018, - "total_time_in_millis": 2471 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50857119198, - "reused_in_bytes": 0, - "total_in_bytes": 50857119198 - }, - "source_throttle_time_in_millis": 72478, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2120543 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864144281, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2123318, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75213701, - "total_time_in_millis": 2238 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50777566449, - "reused_in_bytes": 0, - "total_in_bytes": 50777566449 - }, - "source_throttle_time_in_millis": 68130, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2091006 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864114283, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2093321, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75207968, - "total_time_in_millis": 2297 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49071498715, - "reused_in_bytes": 0, - "total_in_bytes": 49071498715 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 901799, - "total_time_in_millis": 2290971 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959088449, - "stop_time_in_millis": 1569961380092, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2291642, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73817719, - "total_time_in_millis": 662 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5933 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864214497, - "stop_time_in_millis": 1569864221321, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 6824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 842 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50043139632, - "reused_in_bytes": 0, - "total_in_bytes": 50043139632 - }, - "source_throttle_time_in_millis": 63483, - "target_throttle_time_in_millis": 7297, - "total_time_in_millis": 2289289 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864312825, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2291862, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75095172, - "total_time_in_millis": 2557 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50341914470, - "reused_in_bytes": 0, - "total_in_bytes": 50341914470 - }, - "source_throttle_time_in_millis": 76615, - "target_throttle_time_in_millis": 21, - "total_time_in_millis": 2194317 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864217504, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2196542, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75185065, - "total_time_in_millis": 2214 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50128875836, - "reused_in_bytes": 0, - "total_in_bytes": 50128875836 - }, - "source_throttle_time_in_millis": 510222, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 1774170 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569865758411, - "stop_time_in_millis": 1569867538189, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1779778, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75135060, - "total_time_in_millis": 2343 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50830670929, - "reused_in_bytes": 0, - "total_in_bytes": 50830670929 - }, - "source_throttle_time_in_millis": 72543, - "target_throttle_time_in_millis": 14587, - "total_time_in_millis": 2264081 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864288036, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2267073, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75274196, - "total_time_in_millis": 2471 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50270249456, - "reused_in_bytes": 0, - "total_in_bytes": 50270249456 - }, - "source_throttle_time_in_millis": 66414, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2171903 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864195806, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2174844, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75202827, - "total_time_in_millis": 2294 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50270249456, - "reused_in_bytes": 0, - "total_in_bytes": 50270249456 - }, - "source_throttle_time_in_millis": 60448, - "target_throttle_time_in_millis": 156, - "total_time_in_millis": 2171328 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864195300, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2174338, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75202827, - "total_time_in_millis": 2399 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49586434528, - "reused_in_bytes": 0, - "total_in_bytes": 49586434528 - }, - "source_throttle_time_in_millis": 191642, - "target_throttle_time_in_millis": 39791, - "total_time_in_millis": 1383440 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569960193260, - "stop_time_in_millis": 1569961577347, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1384086, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73792636, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50344234257, - "reused_in_bytes": 0, - "total_in_bytes": 50344234257 - }, - "source_throttle_time_in_millis": 71160, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2086386 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864110751, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2089789, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75255400, - "total_time_in_millis": 2380 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50777566449, - "reused_in_bytes": 0, - "total_in_bytes": 50777566449 - }, - "source_throttle_time_in_millis": 60865, - "target_throttle_time_in_millis": 41772, - "total_time_in_millis": 2106259 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020966, - "stop_time_in_millis": 1569864130544, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2109578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75207968, - "total_time_in_millis": 2292 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50344234257, - "reused_in_bytes": 0, - "total_in_bytes": 50344234257 - }, - "source_throttle_time_in_millis": 55610, - "target_throttle_time_in_millis": 9164, - "total_time_in_millis": 2123417 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020964, - "stop_time_in_millis": 1569864147876, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2126912, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75255400, - "total_time_in_millis": 2470 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48852662191, - "reused_in_bytes": 0, - "total_in_bytes": 48852662191 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 157, - "total_time_in_millis": 1209011 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947297998, - "stop_time_in_millis": 1569948507786, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1209787, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73774975, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48890928804, - "reused_in_bytes": 0, - "total_in_bytes": 48890928804 - }, - "source_throttle_time_in_millis": 164486, - "target_throttle_time_in_millis": 53856, - "total_time_in_millis": 1331972 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569934600588, - "stop_time_in_millis": 1569935933175, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1332587, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73756450, - "total_time_in_millis": 606 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50363314596, - "reused_in_bytes": 0, - "total_in_bytes": 50363314596 - }, - "source_throttle_time_in_millis": 87286, - "target_throttle_time_in_millis": 23453, - "total_time_in_millis": 2223453 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864249625, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2228662, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75230049, - "total_time_in_millis": 2359 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50952249837, - "reused_in_bytes": 0, - "total_in_bytes": 50952249837 - }, - "source_throttle_time_in_millis": 66219, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2209375 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020964, - "stop_time_in_millis": 1569864233364, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2212399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75269596, - "total_time_in_millis": 2500 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50291448109, - "reused_in_bytes": 0, - "total_in_bytes": 50291448109 - }, - "source_throttle_time_in_millis": 43055, - "target_throttle_time_in_millis": 76160, - "total_time_in_millis": 2811649 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020977, - "stop_time_in_millis": 1569864839562, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2818584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75179109, - "total_time_in_millis": 2825 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50337553046, - "reused_in_bytes": 0, - "total_in_bytes": 50337553046 - }, - "source_throttle_time_in_millis": 73437, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2153213 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864177169, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2156207, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75206830, - "total_time_in_millis": 2409 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49498850215, - "reused_in_bytes": 0, - "total_in_bytes": 49498850215 - }, - "source_throttle_time_in_millis": 19136, - "target_throttle_time_in_millis": 41920, - "total_time_in_millis": 1286209 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930439490, - "stop_time_in_millis": 1569931726390, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1286899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73809201, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50122700473, - "reused_in_bytes": 0, - "total_in_bytes": 50122700473 - }, - "source_throttle_time_in_millis": 51496, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3754002 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569865777919, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 3756958, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75207433, - "total_time_in_millis": 2430 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50851951898, - "reused_in_bytes": 0, - "total_in_bytes": 50851951898 - }, - "source_throttle_time_in_millis": 68298, - "target_throttle_time_in_millis": 14955, - "total_time_in_millis": 2381800 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864405822, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2384860, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75177317, - "total_time_in_millis": 2522 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5254 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864168607, - "stop_time_in_millis": 1569864174717, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49070152773, - "reused_in_bytes": 0, - "total_in_bytes": 49070152773 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 1222488 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569895132858, - "stop_time_in_millis": 1569896355981, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1223123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73794194, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50252855893, - "reused_in_bytes": 0, - "total_in_bytes": 50252855893 - }, - "source_throttle_time_in_millis": 68177, - "target_throttle_time_in_millis": 14300, - "total_time_in_millis": 2190280 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020962, - "stop_time_in_millis": 1569864214180, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2193217, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75144216, - "total_time_in_millis": 2416 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50213268257, - "reused_in_bytes": 0, - "total_in_bytes": 50213268257 - }, - "source_throttle_time_in_millis": 76598, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2160107 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864183453, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2162492, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75203010, - "total_time_in_millis": 2369 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50213268257, - "reused_in_bytes": 0, - "total_in_bytes": 50213268257 - }, - "source_throttle_time_in_millis": 57711, - "target_throttle_time_in_millis": 64411, - "total_time_in_millis": 2250958 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020968, - "stop_time_in_millis": 1569864274794, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2253826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75203010, - "total_time_in_millis": 2340 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50043139632, - "reused_in_bytes": 0, - "total_in_bytes": 50043139632 - }, - "source_throttle_time_in_millis": 81220, - "target_throttle_time_in_millis": 48423, - "total_time_in_millis": 2181518 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864204753, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2183791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75095172, - "total_time_in_millis": 2258 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50857119195, - "reused_in_bytes": 0, - "total_in_bytes": 50857119195 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 116, - "total_time_in_millis": 1197355 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864147985, - "stop_time_in_millis": 1569865347835, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1199849, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75213701, - "total_time_in_millis": 2473 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50341914470, - "reused_in_bytes": 0, - "total_in_bytes": 50341914470 - }, - "source_throttle_time_in_millis": 54474, - "target_throttle_time_in_millis": 34913, - "total_time_in_millis": 2297422 - }, - "index_name": "om-iu-bro-2019.09.28-000994", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862020961, - "stop_time_in_millis": 1569864323763, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2302802, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75185065, - "total_time_in_millis": 2200 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 67 - }, - "index_name": ".reporting-2019.09.15", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1568810341546, - "stop_time_in_millis": 1568810341975, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 429, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 176 - }, - "index_name": ".reporting-2019.09.15", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568810343019, - "stop_time_in_millis": 1568810343333, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 313, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 107 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 50 - }, - "index_name": ".watcher-history-9-2019.09.29", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569715202752, - "stop_time_in_millis": 1569715202857, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 104, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 48 - }, - "index_name": ".watcher-history-9-2019.09.29", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569715207077, - "stop_time_in_millis": 1569715207822, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 745, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52946729349, - "reused_in_bytes": 0, - "total_in_bytes": 52946729349 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 4708686, - "total_time_in_millis": 4668559 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569848925632, - "stop_time_in_millis": 1569853598602, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 4672969, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74144667, - "total_time_in_millis": 3977 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52181956723, - "reused_in_bytes": 0, - "total_in_bytes": 52181956723 - }, - "source_throttle_time_in_millis": 4313346, - "target_throttle_time_in_millis": 5253676, - "total_time_in_millis": 8982070 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794242773, - "stop_time_in_millis": 1569803228366, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 8985593, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74225965, - "total_time_in_millis": 3009 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52909787156, - "reused_in_bytes": 0, - "total_in_bytes": 52909787156 - }, - "source_throttle_time_in_millis": 2523702, - "target_throttle_time_in_millis": 3990838, - "total_time_in_millis": 6622388 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803528717, - "stop_time_in_millis": 1569810153402, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 6624684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74084572, - "total_time_in_millis": 2284 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51530385556, - "reused_in_bytes": 0, - "total_in_bytes": 51530385556 - }, - "source_throttle_time_in_millis": 4853291, - "target_throttle_time_in_millis": 6017103, - "total_time_in_millis": 10467800 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808409979, - "stop_time_in_millis": 1569818881611, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 10471632, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73814757, - "total_time_in_millis": 3805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53157125215, - "reused_in_bytes": 0, - "total_in_bytes": 53157125215 - }, - "source_throttle_time_in_millis": 34230, - "target_throttle_time_in_millis": 6596075, - "total_time_in_millis": 7607820 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569779560659, - "stop_time_in_millis": 1569787172278, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 7611618, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74285085, - "total_time_in_millis": 3717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52990439451, - "reused_in_bytes": 0, - "total_in_bytes": 52990439451 - }, - "source_throttle_time_in_millis": 4839007, - "target_throttle_time_in_millis": 4336243, - "total_time_in_millis": 9621638 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823616578, - "stop_time_in_millis": 1569833241538, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 9624959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74090881, - "total_time_in_millis": 3309 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52334519413, - "reused_in_bytes": 0, - "total_in_bytes": 52334519413 - }, - "source_throttle_time_in_millis": 21046, - "target_throttle_time_in_millis": 3621521, - "total_time_in_millis": 5322157 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778480897, - "stop_time_in_millis": 1569783806343, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5325445, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74302218, - "total_time_in_millis": 3275 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52156821086, - "reused_in_bytes": 0, - "total_in_bytes": 52156821086 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 251, - "total_time_in_millis": 1229415 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918667345, - "stop_time_in_millis": 1569919899301, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1231955, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74205900, - "total_time_in_millis": 2529 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52950171545, - "reused_in_bytes": 0, - "total_in_bytes": 52950171545 - }, - "source_throttle_time_in_millis": 206357, - "target_throttle_time_in_millis": 178, - "total_time_in_millis": 1623385 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569857977414, - "stop_time_in_millis": 1569859603708, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1626293, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74157759, - "total_time_in_millis": 2900 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53157125212, - "reused_in_bytes": 0, - "total_in_bytes": 53157125212 - }, - "source_throttle_time_in_millis": 4208557, - "target_throttle_time_in_millis": 4516983, - "total_time_in_millis": 9270788 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812164391, - "stop_time_in_millis": 1569821438652, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 9274260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74285085, - "total_time_in_millis": 3453 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52233032773, - "reused_in_bytes": 0, - "total_in_bytes": 52233032773 - }, - "source_throttle_time_in_millis": 5673730, - "target_throttle_time_in_millis": 5103423, - "total_time_in_millis": 10513413 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569809572918, - "stop_time_in_millis": 1569820090708, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 10517790, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74241022, - "total_time_in_millis": 4344 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53068291315, - "reused_in_bytes": 0, - "total_in_bytes": 53068291315 - }, - "source_throttle_time_in_millis": 41147, - "target_throttle_time_in_millis": 4498269, - "total_time_in_millis": 6033952 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778882356, - "stop_time_in_millis": 1569784919856, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6037499, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74272024, - "total_time_in_millis": 3522 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52363907658, - "reused_in_bytes": 0, - "total_in_bytes": 52363907658 - }, - "source_throttle_time_in_millis": 157729, - "target_throttle_time_in_millis": 2405, - "total_time_in_millis": 1534728 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855189121, - "stop_time_in_millis": 1569856726695, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1537573, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74268294, - "total_time_in_millis": 2834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51457810285, - "reused_in_bytes": 0, - "total_in_bytes": 51457810285 - }, - "source_throttle_time_in_millis": 2913093, - "target_throttle_time_in_millis": 5953912, - "total_time_in_millis": 8442980 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816271782, - "stop_time_in_millis": 1569824718015, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 8446233, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73555587, - "total_time_in_millis": 3241 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52226136402, - "reused_in_bytes": 0, - "total_in_bytes": 52226136402 - }, - "source_throttle_time_in_millis": 5068279, - "target_throttle_time_in_millis": 2702542, - "total_time_in_millis": 8337776 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820027448, - "stop_time_in_millis": 1569828368621, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 8341172, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74244825, - "total_time_in_millis": 3142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52144119187, - "reused_in_bytes": 0, - "total_in_bytes": 52144119187 - }, - "source_throttle_time_in_millis": 55912, - "target_throttle_time_in_millis": 33839, - "total_time_in_millis": 1569525 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977362161, - "stop_time_in_millis": 1569978934265, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1572103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74416708, - "total_time_in_millis": 2566 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52087744661, - "reused_in_bytes": 0, - "total_in_bytes": 52087744661 - }, - "source_throttle_time_in_millis": 31133, - "target_throttle_time_in_millis": 4099734, - "total_time_in_millis": 5339617 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780686234, - "stop_time_in_millis": 1569786029038, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 5342803, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74350706, - "total_time_in_millis": 3172 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52324550310, - "reused_in_bytes": 0, - "total_in_bytes": 52324550310 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 155390, - "total_time_in_millis": 1375121 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569864405896, - "stop_time_in_millis": 1569865783479, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1377583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74361684, - "total_time_in_millis": 2444 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52950171545, - "reused_in_bytes": 0, - "total_in_bytes": 52950171545 - }, - "source_throttle_time_in_millis": 239188, - "target_throttle_time_in_millis": 125, - "total_time_in_millis": 1532674 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918592004, - "stop_time_in_millis": 1569920127280, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1535275, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74157759, - "total_time_in_millis": 2592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51457810285, - "reused_in_bytes": 0, - "total_in_bytes": 51457810285 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 18363, - "total_time_in_millis": 1190316 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917651138, - "stop_time_in_millis": 1569918844014, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1192876, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73555587, - "total_time_in_millis": 2551 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52253385863, - "reused_in_bytes": 0, - "total_in_bytes": 52253385863 - }, - "source_throttle_time_in_millis": 3748389, - "target_throttle_time_in_millis": 1796835, - "total_time_in_millis": 6783275 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830187040, - "stop_time_in_millis": 1569836972991, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6785951, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74220049, - "total_time_in_millis": 2664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52181956723, - "reused_in_bytes": 0, - "total_in_bytes": 52181956723 - }, - "source_throttle_time_in_millis": 315644, - "target_throttle_time_in_millis": 75858, - "total_time_in_millis": 1754400 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867941029, - "stop_time_in_millis": 1569869697725, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1756696, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74225965, - "total_time_in_millis": 2286 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52909787156, - "reused_in_bytes": 0, - "total_in_bytes": 52909787156 - }, - "source_throttle_time_in_millis": 4, - "target_throttle_time_in_millis": 24606, - "total_time_in_millis": 1639880 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569869058839, - "stop_time_in_millis": 1569870700743, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1641904, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74084572, - "total_time_in_millis": 2012 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52990439451, - "reused_in_bytes": 0, - "total_in_bytes": 52990439451 - }, - "source_throttle_time_in_millis": 5549496, - "target_throttle_time_in_millis": 4005998, - "total_time_in_millis": 10161573 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805079779, - "stop_time_in_millis": 1569815245004, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 10165224, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74090881, - "total_time_in_millis": 3626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52226136405, - "reused_in_bytes": 0, - "total_in_bytes": 52226136405 - }, - "source_throttle_time_in_millis": 25298, - "target_throttle_time_in_millis": 5350263, - "total_time_in_millis": 6553327 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780514004, - "stop_time_in_millis": 1569787070904, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6556899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74244825, - "total_time_in_millis": 3001 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52334519410, - "reused_in_bytes": 0, - "total_in_bytes": 52334519410 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 79500, - "total_time_in_millis": 1398074 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569921261320, - "stop_time_in_millis": 1569922663694, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1402373, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74302218, - "total_time_in_millis": 4290 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52363907658, - "reused_in_bytes": 0, - "total_in_bytes": 52363907658 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 545, - "total_time_in_millis": 1339095 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569872078249, - "stop_time_in_millis": 1569873420217, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1341967, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74268294, - "total_time_in_millis": 2863 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51530385556, - "reused_in_bytes": 0, - "total_in_bytes": 51530385556 - }, - "source_throttle_time_in_millis": 7652, - "target_throttle_time_in_millis": 3, - "total_time_in_millis": 1331053 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859468711, - "stop_time_in_millis": 1569860802197, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1333485, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73814757, - "total_time_in_millis": 2421 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52946729349, - "reused_in_bytes": 0, - "total_in_bytes": 52946729349 - }, - "source_throttle_time_in_millis": 52085, - "target_throttle_time_in_millis": 149, - "total_time_in_millis": 1358497 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930116378, - "stop_time_in_millis": 1569931477893, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1361515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74144667, - "total_time_in_millis": 3008 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52324550313, - "reused_in_bytes": 0, - "total_in_bytes": 52324550313 - }, - "source_throttle_time_in_millis": 33793, - "target_throttle_time_in_millis": 5302929, - "total_time_in_millis": 6547594 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780676153, - "stop_time_in_millis": 1569787226761, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6550608, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74361684, - "total_time_in_millis": 2989 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52253385863, - "reused_in_bytes": 0, - "total_in_bytes": 52253385863 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 45954, - "total_time_in_millis": 1313923 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970059943, - "stop_time_in_millis": 1569971376128, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1316185, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74220049, - "total_time_in_millis": 2253 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53068291315, - "reused_in_bytes": 0, - "total_in_bytes": 53068291315 - }, - "source_throttle_time_in_millis": 34313, - "target_throttle_time_in_millis": 5495559, - "total_time_in_millis": 6622309 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778944383, - "stop_time_in_millis": 1569785570053, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6625670, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74272024, - "total_time_in_millis": 3334 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52144119190, - "reused_in_bytes": 0, - "total_in_bytes": 52144119190 - }, - "source_throttle_time_in_millis": 24322, - "target_throttle_time_in_millis": 6211678, - "total_time_in_millis": 7005615 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569779007448, - "stop_time_in_millis": 1569786018041, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 7010593, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74416708, - "total_time_in_millis": 4963 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52233032773, - "reused_in_bytes": 0, - "total_in_bytes": 52233032773 - }, - "source_throttle_time_in_millis": 1281704, - "target_throttle_time_in_millis": 4565360, - "total_time_in_millis": 6216884 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784792919, - "stop_time_in_millis": 1569791014902, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 6221983, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74241022, - "total_time_in_millis": 3437 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52156821086, - "reused_in_bytes": 0, - "total_in_bytes": 52156821086 - }, - "source_throttle_time_in_millis": 22394, - "target_throttle_time_in_millis": 125998, - "total_time_in_millis": 1816846 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569924230515, - "stop_time_in_millis": 1569926050403, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1819888, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74205900, - "total_time_in_millis": 3031 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52087744661, - "reused_in_bytes": 0, - "total_in_bytes": 52087744661 - }, - "source_throttle_time_in_millis": 29813, - "target_throttle_time_in_millis": 7008031, - "total_time_in_millis": 7365401 - }, - "index_name": "om-iu-bro-2019.09.27-000990", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780536926, - "stop_time_in_millis": 1569787906585, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 7369658, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74350706, - "total_time_in_millis": 4217 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 36 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293719, - "stop_time_in_millis": 1569940294514, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 795, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 33 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 167 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940298370, - "stop_time_in_millis": 1569940298700, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 330, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 140 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "98.6%", - "recovered": 279, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "77.1%", - "recovered_in_bytes": 40980017786, - "reused_in_bytes": 0, - "total_in_bytes": 53135723857 - }, - "source_throttle_time_in_millis": 68747, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1759773 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1759779, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75595767, - "total_on_start": 75595767, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "98.6%", - "recovered": 278, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "78.3%", - "recovered_in_bytes": 41682909324, - "reused_in_bytes": 0, - "total_in_bytes": 53215619715 - }, - "source_throttle_time_in_millis": 16986, - "target_throttle_time_in_millis": 33, - "total_time_in_millis": 1759226 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1759779, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75369684, - "total_on_start": 75369684, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "98.9%", - "recovered": 262, - "reused": 0, - "total": 265 - }, - "size": { - "percent": "78.9%", - "recovered_in_bytes": 42282029967, - "reused_in_bytes": 0, - "total_in_bytes": 53570298653 - }, - "source_throttle_time_in_millis": 51596, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 1759267 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1759778, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75107593, - "total_on_start": 75107593, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 121 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294528, - "stop_time_in_millis": 1569940294807, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 278, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 112 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 29 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293685, - "stop_time_in_millis": 1569940293761, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 75, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "98.3%", - "recovered": 284, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "70.9%", - "recovered_in_bytes": 37613415604, - "reused_in_bytes": 0, - "total_in_bytes": 53059696105 - }, - "source_throttle_time_in_millis": 54042, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 1759774 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901684, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75377324, - "total_on_start": 75377324, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 84 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940298366, - "stop_time_in_millis": 1569940298520, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 153, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 20 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293689, - "stop_time_in_millis": 1569940293736, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 46, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 13 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 579 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294527, - "stop_time_in_millis": 1569940295802, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 1274, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 91 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 43 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293687, - "stop_time_in_millis": 1569940293786, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 98, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "96.9%", - "recovered": 286, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "45.4%", - "recovered_in_bytes": 23822640640, - "reused_in_bytes": 0, - "total_in_bytes": 52519412129 - }, - "source_throttle_time_in_millis": 23421, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759234 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1759779, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75065208, - "total_on_start": 75065208, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "98.8%", - "recovered": 321, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "79.8%", - "recovered_in_bytes": 42492480664, - "reused_in_bytes": 0, - "total_in_bytes": 53219048495 - }, - "source_throttle_time_in_millis": 53229, - "target_throttle_time_in_millis": 91, - "total_time_in_millis": 1759771 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901679, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1759778, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75498857, - "total_on_start": 75498857, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "96.6%", - "recovered": 282, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "43.2%", - "recovered_in_bytes": 22712796011, - "reused_in_bytes": 0, - "total_in_bytes": 52616754026 - }, - "source_throttle_time_in_millis": 21663, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1759772 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1759779, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75059324, - "total_on_start": 75059324, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "98.6%", - "recovered": 291, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "76.0%", - "recovered_in_bytes": 40721500663, - "reused_in_bytes": 0, - "total_in_bytes": 53613060649 - }, - "source_throttle_time_in_millis": 78861, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1759767 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901681, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1759775, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 74971657, - "total_on_start": 74971657, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "98.7%", - "recovered": 315, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "79.2%", - "recovered_in_bytes": 42180416356, - "reused_in_bytes": 0, - "total_in_bytes": 53241246207 - }, - "source_throttle_time_in_millis": 22474, - "target_throttle_time_in_millis": 125, - "total_time_in_millis": 1759772 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1759780, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75509126, - "total_on_start": 75509126, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "98.0%", - "recovered": 289, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "64.0%", - "recovered_in_bytes": 34318728633, - "reused_in_bytes": 0, - "total_in_bytes": 53613060649 - }, - "source_throttle_time_in_millis": 54414, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759804 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901679, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1759815, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 74971657, - "total_on_start": 74971657, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 91 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294526, - "stop_time_in_millis": 1569940295225, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 699, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 63 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 96 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293683, - "stop_time_in_millis": 1569940294493, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 809, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 156 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294872, - "stop_time_in_millis": 1569940295583, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 711, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 184 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 185 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293683, - "stop_time_in_millis": 1569940293916, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 232, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 29 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 124 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294533, - "stop_time_in_millis": 1569940294817, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 283, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 125 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 52 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293683, - "stop_time_in_millis": 1569940293766, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 83, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 19 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "99.0%", - "recovered": 298, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "86.6%", - "recovered_in_bytes": 45833406077, - "reused_in_bytes": 0, - "total_in_bytes": 52952778080 - }, - "source_throttle_time_in_millis": 57933, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1759773 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1759780, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75424359, - "total_on_start": 75424359, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "96.6%", - "recovered": 282, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "43.2%", - "recovered_in_bytes": 22711223147, - "reused_in_bytes": 0, - "total_in_bytes": 52616754026 - }, - "source_throttle_time_in_millis": 21610, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1759772 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1759780, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75059324, - "total_on_start": 75059324, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 244 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293687, - "stop_time_in_millis": 1569940294161, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 473, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 28 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 110 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294526, - "stop_time_in_millis": 1569940295595, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 1069, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 114 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 40 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293704, - "stop_time_in_millis": 1569940293801, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 97, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 41 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 189 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294532, - "stop_time_in_millis": 1569940294890, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 358, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 120 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "98.7%", - "recovered": 232, - "reused": 0, - "total": 235 - }, - "size": { - "percent": "78.8%", - "recovered_in_bytes": 42258361433, - "reused_in_bytes": 0, - "total_in_bytes": 53629651037 - }, - "source_throttle_time_in_millis": 50693, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759773 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1759780, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75002375, - "total_on_start": 75002375, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "99.1%", - "recovered": 337, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "83.1%", - "recovered_in_bytes": 44280007246, - "reused_in_bytes": 0, - "total_in_bytes": 53270402241 - }, - "source_throttle_time_in_millis": 55381, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759269 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901676, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75549613, - "total_on_start": 75549613, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 139 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294530, - "stop_time_in_millis": 1569940294884, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 354, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 93 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 59 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293742, - "stop_time_in_millis": 1569940293853, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 27 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 55 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293699, - "stop_time_in_millis": 1569940293808, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 36 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 937 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294524, - "stop_time_in_millis": 1569940295824, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 1300, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 315 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "98.9%", - "recovered": 280, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "78.2%", - "recovered_in_bytes": 42102135220, - "reused_in_bytes": 0, - "total_in_bytes": 53820613036 - }, - "source_throttle_time_in_millis": 55036, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 1759268 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1759780, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75358921, - "total_on_start": 75358921, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 28 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293702, - "stop_time_in_millis": 1569940293786, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 84, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 29 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 109 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294595, - "stop_time_in_millis": 1569940295006, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 260 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "98.9%", - "recovered": 280, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "78.2%", - "recovered_in_bytes": 42110523828, - "reused_in_bytes": 0, - "total_in_bytes": 53820613036 - }, - "source_throttle_time_in_millis": 54331, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759260 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1759781, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75358921, - "total_on_start": 75358921, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "98.7%", - "recovered": 315, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "79.2%", - "recovered_in_bytes": 42177794916, - "reused_in_bytes": 0, - "total_in_bytes": 53241246207 - }, - "source_throttle_time_in_millis": 26644, - "target_throttle_time_in_millis": 57, - "total_time_in_millis": 1759773 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1759781, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75509126, - "total_on_start": 75509126, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 203 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294525, - "stop_time_in_millis": 1569940294803, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 278, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 27 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293689, - "stop_time_in_millis": 1569940293773, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 84, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 35 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "98.7%", - "recovered": 232, - "reused": 0, - "total": 235 - }, - "size": { - "percent": "78.8%", - "recovered_in_bytes": 42258885721, - "reused_in_bytes": 0, - "total_in_bytes": 53629651037 - }, - "source_throttle_time_in_millis": 49636, - "target_throttle_time_in_millis": 38, - "total_time_in_millis": 1759775 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75002375, - "total_on_start": 75002375, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "98.8%", - "recovered": 256, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "80.4%", - "recovered_in_bytes": 43115553829, - "reused_in_bytes": 0, - "total_in_bytes": 53626626981 - }, - "source_throttle_time_in_millis": 55013, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1759259 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75200161, - "total_on_start": 75200161, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "99.0%", - "recovered": 295, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "81.5%", - "recovered_in_bytes": 43268433377, - "reused_in_bytes": 0, - "total_in_bytes": 53066135858 - }, - "source_throttle_time_in_millis": 53835, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1759148 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901676, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1759783, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75296236, - "total_on_start": 75296236, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "99.0%", - "recovered": 295, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "83.6%", - "recovered_in_bytes": 44340602337, - "reused_in_bytes": 0, - "total_in_bytes": 53066135858 - }, - "source_throttle_time_in_millis": 55741, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1759143 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75296236, - "total_on_start": 75296236, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "99.1%", - "recovered": 337, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "83.1%", - "recovered_in_bytes": 44279482958, - "reused_in_bytes": 0, - "total_in_bytes": 53270402241 - }, - "source_throttle_time_in_millis": 50305, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759269 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75549613, - "total_on_start": 75549613, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "98.9%", - "recovered": 279, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "85.0%", - "recovered_in_bytes": 45007160426, - "reused_in_bytes": 0, - "total_in_bytes": 52931107796 - }, - "source_throttle_time_in_millis": 54762, - "target_throttle_time_in_millis": 21, - "total_time_in_millis": 1759265 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75243961, - "total_on_start": 75243961, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "98.2%", - "recovered": 278, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "70.3%", - "recovered_in_bytes": 37347534334, - "reused_in_bytes": 0, - "total_in_bytes": 53135723857 - }, - "source_throttle_time_in_millis": 53374, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 1759765 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901684, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1759778, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75595767, - "total_on_start": 75595767, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 187 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294524, - "stop_time_in_millis": 1569940296189, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 1665, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 243 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 126 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293710, - "stop_time_in_millis": 1569940293959, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 249, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 95 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "98.6%", - "recovered": 285, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "80.6%", - "recovered_in_bytes": 42771896243, - "reused_in_bytes": 0, - "total_in_bytes": 53059696105 - }, - "source_throttle_time_in_millis": 75830, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 1759811 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1759818, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75377324, - "total_on_start": 75377324, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 103 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294526, - "stop_time_in_millis": 1569940295351, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 122 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 42 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293687, - "stop_time_in_millis": 1569940293769, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 82, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 24 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 322 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294556, - "stop_time_in_millis": 1569940296489, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 1932, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 274 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 158 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293688, - "stop_time_in_millis": 1569940293915, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 226, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 29 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 103 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294527, - "stop_time_in_millis": 1569940294710, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 182, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 51 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 78 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293681, - "stop_time_in_millis": 1569940293810, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 27 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "96.9%", - "recovered": 286, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "45.4%", - "recovered_in_bytes": 23825786368, - "reused_in_bytes": 0, - "total_in_bytes": 52519412129 - }, - "source_throttle_time_in_millis": 20664, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759266 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75065208, - "total_on_start": 75065208, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "98.7%", - "recovered": 235, - "reused": 0, - "total": 238 - }, - "size": { - "percent": "83.0%", - "recovered_in_bytes": 43937909105, - "reused_in_bytes": 0, - "total_in_bytes": 52962401688 - }, - "source_throttle_time_in_millis": 58871, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1759270 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901676, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1759783, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75157689, - "total_on_start": 75157689, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "98.8%", - "recovered": 247, - "reused": 0, - "total": 250 - }, - "size": { - "percent": "78.2%", - "recovered_in_bytes": 41929714829, - "reused_in_bytes": 0, - "total_in_bytes": 53652727918 - }, - "source_throttle_time_in_millis": 54453, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1759775 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75075736, - "total_on_start": 75075736, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 51 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940294529, - "stop_time_in_millis": 1569940294671, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 141, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 57 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569940293681, - "stop_time_in_millis": 1569940293771, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 90, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "98.9%", - "recovered": 279, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "85.0%", - "recovered_in_bytes": 45006636138, - "reused_in_bytes": 0, - "total_in_bytes": 52931107796 - }, - "source_throttle_time_in_millis": 55193, - "target_throttle_time_in_millis": 43, - "total_time_in_millis": 1759777 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1759783, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75243961, - "total_on_start": 75243961, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "98.8%", - "recovered": 256, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "80.4%", - "recovered_in_bytes": 43116602405, - "reused_in_bytes": 0, - "total_in_bytes": 53626626981 - }, - "source_throttle_time_in_millis": 54332, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1759271 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75200161, - "total_on_start": 75200161, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "98.8%", - "recovered": 321, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "79.8%", - "recovered_in_bytes": 42493004952, - "reused_in_bytes": 0, - "total_in_bytes": 53219048495 - }, - "source_throttle_time_in_millis": 51494, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 1759279 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901677, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1759790, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75498857, - "total_on_start": 75498857, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "98.7%", - "recovered": 235, - "reused": 0, - "total": 238 - }, - "size": { - "percent": "82.6%", - "recovered_in_bytes": 43731863921, - "reused_in_bytes": 0, - "total_in_bytes": 52962401688 - }, - "source_throttle_time_in_millis": 50268, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 1759272 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1759783, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75157689, - "total_on_start": 75157689, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "98.9%", - "recovered": 262, - "reused": 0, - "total": 265 - }, - "size": { - "percent": "78.9%", - "recovered_in_bytes": 42282029967, - "reused_in_bytes": 0, - "total_in_bytes": 53570298653 - }, - "source_throttle_time_in_millis": 53003, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 1759265 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901679, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75107593, - "total_on_start": 75107593, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "99.0%", - "recovered": 298, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "86.6%", - "recovered_in_bytes": 45862241917, - "reused_in_bytes": 0, - "total_in_bytes": 52952778080 - }, - "source_throttle_time_in_millis": 57992, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 1759777 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901679, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1759783, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75424359, - "total_on_start": 75424359, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "98.8%", - "recovered": 247, - "reused": 0, - "total": 250 - }, - "size": { - "percent": "78.2%", - "recovered_in_bytes": 41979522189, - "reused_in_bytes": 0, - "total_in_bytes": 53652727918 - }, - "source_throttle_time_in_millis": 55373, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759774 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75075736, - "total_on_start": 75075736, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "98.6%", - "recovered": 278, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "78.3%", - "recovered_in_bytes": 41669277836, - "reused_in_bytes": 0, - "total_in_bytes": 53215619715 - }, - "source_throttle_time_in_millis": 19251, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1759230 - }, - "index_name": "om-iu-bro-2019.10.01-001007", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "INDEX", - "start_time_in_millis": 1570129901678, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1759782, - "translog": { - "percent": "0.0%", - "recovered": 0, - "total": 75369684, - "total_on_start": 75369684, - "total_time_in_millis": 0 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 385 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502710, - "stop_time_in_millis": 1569974503366, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 655, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 171 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 70 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494342, - "stop_time_in_millis": 1569974494470, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 31 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 211 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502699, - "stop_time_in_millis": 1569974503311, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 612, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 170 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 78 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494342, - "stop_time_in_millis": 1569974494480, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 137, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 196 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974505648, - "stop_time_in_millis": 1569974506047, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 164 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 220 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494336, - "stop_time_in_millis": 1569974494655, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 83 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 607 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502699, - "stop_time_in_millis": 1569974503460, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 760, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 103 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 69 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494340, - "stop_time_in_millis": 1569974494974, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 633, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 537 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 147 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494372, - "stop_time_in_millis": 1569974495208, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 35 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 297 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502696, - "stop_time_in_millis": 1569974503144, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 447, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 92 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 126 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494334, - "stop_time_in_millis": 1569974495629, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 1295, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 114 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502695, - "stop_time_in_millis": 1569974503468, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 773, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 59 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 223 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502702, - "stop_time_in_millis": 1569974503672, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 970, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 97 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 118 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494341, - "stop_time_in_millis": 1569974494525, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 184, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 51 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494336, - "stop_time_in_millis": 1569974494429, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 92, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 228 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502753, - "stop_time_in_millis": 1569974503191, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 437, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 135 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 203 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502695, - "stop_time_in_millis": 1569974503072, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 376, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 137 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 91 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494335, - "stop_time_in_millis": 1569974495199, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 864, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 73 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 226 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502951, - "stop_time_in_millis": 1569974503349, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 397, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 116 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3254 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494334, - "stop_time_in_millis": 1569974502959, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 8625, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 266 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 30 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494333, - "stop_time_in_millis": 1569974494390, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 56, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 16 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 949 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502699, - "stop_time_in_millis": 1569974505047, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 2348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 128 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 158 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502697, - "stop_time_in_millis": 1569974502980, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 283, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 89 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 231 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494569, - "stop_time_in_millis": 1569974494983, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 414, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 106 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 82 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494353, - "stop_time_in_millis": 1569974494493, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 40 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 192 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502694, - "stop_time_in_millis": 1569974503086, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 391, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 144 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 112 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494344, - "stop_time_in_millis": 1569974497255, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 2910, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 2768 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 171 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502712, - "stop_time_in_millis": 1569974503040, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 110 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 52 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494334, - "stop_time_in_millis": 1569974494417, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 83, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 18 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 74 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502693, - "stop_time_in_millis": 1569974503780, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 1086, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 993 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 73 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502696, - "stop_time_in_millis": 1569974503422, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 725, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 87 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 17 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494349, - "stop_time_in_millis": 1569974494394, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 45, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 14 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 52 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494343, - "stop_time_in_millis": 1569974494436, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 93, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 23 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 89 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502696, - "stop_time_in_millis": 1569974502881, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 184, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 68 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 61 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974494333, - "stop_time_in_millis": 1569974494428, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 94, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 18 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 56 - }, - "index_name": "om-iu-bro-2019.10.02-001009", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974502697, - "stop_time_in_millis": 1569974502833, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 135, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 41 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 207, - "reused": 0, - "total": 207 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52565830317, - "reused_in_bytes": 0, - "total_in_bytes": 52565830317 - }, - "source_throttle_time_in_millis": 63437, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2022405 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700854, - "stop_time_in_millis": 1570115724734, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2023879, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75298394, - "total_time_in_millis": 1461 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4988 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115768225, - "stop_time_in_millis": 1570115774087, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 5862, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 824 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5462 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115862856, - "stop_time_in_millis": 1570115869216, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 6359, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 854 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53027097505, - "reused_in_bytes": 0, - "total_in_bytes": 53027097505 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 99, - "total_time_in_millis": 1561906 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117063447, - "stop_time_in_millis": 1570118628542, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1565094, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75331188, - "total_time_in_millis": 3175 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53453472042, - "reused_in_bytes": 0, - "total_in_bytes": 53453472042 - }, - "source_throttle_time_in_millis": 92781, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 2549918 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570116253333, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2552478, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75232570, - "total_time_in_millis": 1995 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5494 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115834436, - "stop_time_in_millis": 1570115840832, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 6396, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 850 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52837424833, - "reused_in_bytes": 0, - "total_in_bytes": 52837424833 - }, - "source_throttle_time_in_millis": 95939, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2205786 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115909971, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2209115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75353071, - "total_time_in_millis": 2806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4732 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115940365, - "stop_time_in_millis": 1570115945924, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 5558, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53453472042, - "reused_in_bytes": 0, - "total_in_bytes": 53453472042 - }, - "source_throttle_time_in_millis": 79459, - "target_throttle_time_in_millis": 92, - "total_time_in_millis": 2510071 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570116213637, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2512781, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75232570, - "total_time_in_millis": 2157 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53028922430, - "reused_in_bytes": 0, - "total_in_bytes": 53028922430 - }, - "source_throttle_time_in_millis": 63049, - "target_throttle_time_in_millis": 87, - "total_time_in_millis": 2518968 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700861, - "stop_time_in_millis": 1570116222466, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2521605, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75530497, - "total_time_in_millis": 2107 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115876516, - "stop_time_in_millis": 1570115877389, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 873, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 823 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52724679771, - "reused_in_bytes": 0, - "total_in_bytes": 52724679771 - }, - "source_throttle_time_in_millis": 67165, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2124634 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115828132, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2127277, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75168238, - "total_time_in_millis": 2633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 207, - "reused": 0, - "total": 207 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52565830317, - "reused_in_bytes": 0, - "total_in_bytes": 52565830317 - }, - "source_throttle_time_in_millis": 64150, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2021256 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115724819, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2023964, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75298394, - "total_time_in_millis": 1550 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53028922430, - "reused_in_bytes": 0, - "total_in_bytes": 53028922430 - }, - "source_throttle_time_in_millis": 90932, - "target_throttle_time_in_millis": 88, - "total_time_in_millis": 2225826 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115928722, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2227866, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75530497, - "total_time_in_millis": 2028 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53077925676, - "reused_in_bytes": 0, - "total_in_bytes": 53077925676 - }, - "source_throttle_time_in_millis": 68091, - "target_throttle_time_in_millis": 147, - "total_time_in_millis": 2129519 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700854, - "stop_time_in_millis": 1570115833775, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2132920, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75607684, - "total_time_in_millis": 2864 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52165655455, - "reused_in_bytes": 0, - "total_in_bytes": 52165655455 - }, - "source_throttle_time_in_millis": 46850, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 4311571 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570118015360, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 4314503, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74718834, - "total_time_in_millis": 2412 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52853667505, - "reused_in_bytes": 0, - "total_in_bytes": 52853667505 - }, - "source_throttle_time_in_millis": 62633, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2064307 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115768189, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2067333, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75341749, - "total_time_in_millis": 2486 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53433425271, - "reused_in_bytes": 0, - "total_in_bytes": 53433425271 - }, - "source_throttle_time_in_millis": 64193, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2101124 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570115804357, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2103501, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75340809, - "total_time_in_millis": 1849 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52165655455, - "reused_in_bytes": 0, - "total_in_bytes": 52165655455 - }, - "source_throttle_time_in_millis": 47828, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 3701711 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700853, - "stop_time_in_millis": 1570117405131, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 3704277, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74718834, - "total_time_in_millis": 2534 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53548771050, - "reused_in_bytes": 0, - "total_in_bytes": 53548771050 - }, - "source_throttle_time_in_millis": 72663, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2182378 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115885859, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2185004, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75303047, - "total_time_in_millis": 2068 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52650457064, - "reused_in_bytes": 0, - "total_in_bytes": 52650457064 - }, - "source_throttle_time_in_millis": 68261, - "target_throttle_time_in_millis": 133, - "total_time_in_millis": 2231944 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115935909, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2235054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75442030, - "total_time_in_millis": 2565 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53468352669, - "reused_in_bytes": 0, - "total_in_bytes": 53468352669 - }, - "source_throttle_time_in_millis": 65122, - "target_throttle_time_in_millis": 18, - "total_time_in_millis": 2082539 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115785428, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2084572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75276114, - "total_time_in_millis": 2001 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52765679774, - "reused_in_bytes": 0, - "total_in_bytes": 52765679774 - }, - "source_throttle_time_in_millis": 62443, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2068098 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570115772255, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2071399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75464506, - "total_time_in_millis": 2756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52837424830, - "reused_in_bytes": 0, - "total_in_bytes": 52837424830 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 105, - "total_time_in_millis": 1519574 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115915108, - "stop_time_in_millis": 1570117437818, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1522710, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75353071, - "total_time_in_millis": 3119 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115845842, - "stop_time_in_millis": 1570115846728, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 830 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52724679771, - "reused_in_bytes": 0, - "total_in_bytes": 52724679771 - }, - "source_throttle_time_in_millis": 62221, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2131986 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115836069, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2135213, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75168238, - "total_time_in_millis": 2711 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52765679774, - "reused_in_bytes": 0, - "total_in_bytes": 52765679774 - }, - "source_throttle_time_in_millis": 66066, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2053428 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570115757448, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2056592, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75464506, - "total_time_in_millis": 2636 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53390772956, - "reused_in_bytes": 0, - "total_in_bytes": 53390772956 - }, - "source_throttle_time_in_millis": 66446, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2158495 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700853, - "stop_time_in_millis": 1570115861644, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2160791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75069017, - "total_time_in_millis": 1779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5260 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115804641, - "stop_time_in_millis": 1570115810773, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6131, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5790 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570115885901, - "stop_time_in_millis": 1570115892596, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6694, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 861 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52947698910, - "reused_in_bytes": 0, - "total_in_bytes": 52947698910 - }, - "source_throttle_time_in_millis": 70724, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2140037 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570115844347, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2143491, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75436669, - "total_time_in_millis": 2937 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53429073051, - "reused_in_bytes": 0, - "total_in_bytes": 53429073051 - }, - "source_throttle_time_in_millis": 65278, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2169810 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570115873940, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2173084, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75316256, - "total_time_in_millis": 1920 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53468352669, - "reused_in_bytes": 0, - "total_in_bytes": 53468352669 - }, - "source_throttle_time_in_millis": 67813, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2082034 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570115785444, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2084589, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75276114, - "total_time_in_millis": 2021 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52299643402, - "reused_in_bytes": 0, - "total_in_bytes": 52299643402 - }, - "source_throttle_time_in_millis": 47020, - "target_throttle_time_in_millis": 16346, - "total_time_in_millis": 3808285 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570117511982, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 3811125, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75111591, - "total_time_in_millis": 2318 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53027097508, - "reused_in_bytes": 0, - "total_in_bytes": 53027097508 - }, - "source_throttle_time_in_millis": 96376, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2159148 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700856, - "stop_time_in_millis": 1570115863791, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2162934, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75331188, - "total_time_in_millis": 3270 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52299643402, - "reused_in_bytes": 0, - "total_in_bytes": 52299643402 - }, - "source_throttle_time_in_millis": 46195, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 3780708 - }, - "index_name": "om-iu-bro-2019.10.01-001006", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113700855, - "stop_time_in_millis": 1570117483916, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 3783060, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75111591, - "total_time_in_millis": 2341 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 65, - "reused": 0, - "total": 65 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 138208391, - "reused_in_bytes": 0, - "total_in_bytes": 138208391 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8298 - }, - "index_name": ".reporting-2019.03.31", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567386002597, - "stop_time_in_millis": 1567386011042, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 8445, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 128 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 30 - }, - "index_name": ".reporting-2019.03.31", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322775079, - "stop_time_in_millis": 1566322775925, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 535 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5754 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099144656, - "stop_time_in_millis": 1570099152661, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 8005, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2207 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54493863666, - "reused_in_bytes": 0, - "total_in_bytes": 54493863666 - }, - "source_throttle_time_in_millis": 68005, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2220485 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898812, - "stop_time_in_millis": 1570099122010, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2223197, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76963710, - "total_time_in_millis": 2195 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54240871577, - "reused_in_bytes": 0, - "total_in_bytes": 54240871577 - }, - "source_throttle_time_in_millis": 70480, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2105890 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099006901, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2108087, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76916107, - "total_time_in_millis": 2187 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54663512385, - "reused_in_bytes": 0, - "total_in_bytes": 54663512385 - }, - "source_throttle_time_in_millis": 70939, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2695880 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898815, - "stop_time_in_millis": 1570099597908, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2699093, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77181399, - "total_time_in_millis": 2684 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5401 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099158321, - "stop_time_in_millis": 1570099164544, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 6222, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55191222283, - "reused_in_bytes": 0, - "total_in_bytes": 55191222283 - }, - "source_throttle_time_in_millis": 70056, - "target_throttle_time_in_millis": 106, - "total_time_in_millis": 2267739 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898812, - "stop_time_in_millis": 1570099169210, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2270397, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76796690, - "total_time_in_millis": 2120 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4849 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099226545, - "stop_time_in_millis": 1570099232255, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 813 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55224425437, - "reused_in_bytes": 0, - "total_in_bytes": 55224425437 - }, - "source_throttle_time_in_millis": 100500, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2303195 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898814, - "stop_time_in_millis": 1570099205387, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2306573, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76857270, - "total_time_in_millis": 2259 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53586168375, - "reused_in_bytes": 0, - "total_in_bytes": 53586168375 - }, - "source_throttle_time_in_millis": 53822, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 4128636 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898812, - "stop_time_in_millis": 1570101030221, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 4131408, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76074446, - "total_time_in_millis": 2245 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53586168375, - "reused_in_bytes": 0, - "total_in_bytes": 53586168375 - }, - "source_throttle_time_in_millis": 47937, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 4577894 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898822, - "stop_time_in_millis": 1570101479664, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 4580841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76074446, - "total_time_in_millis": 2419 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54409982060, - "reused_in_bytes": 0, - "total_in_bytes": 54409982060 - }, - "source_throttle_time_in_millis": 66851, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2153443 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898842, - "stop_time_in_millis": 1570099054434, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2155591, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76973396, - "total_time_in_millis": 2137 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5223 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099171178, - "stop_time_in_millis": 1570099177280, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 840 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54698776365, - "reused_in_bytes": 0, - "total_in_bytes": 54698776365 - }, - "source_throttle_time_in_millis": 63232, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2317897 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898812, - "stop_time_in_millis": 1570099219690, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2320877, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77068404, - "total_time_in_millis": 2448 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55319714839, - "reused_in_bytes": 0, - "total_in_bytes": 55319714839 - }, - "source_throttle_time_in_millis": 35074, - "target_throttle_time_in_millis": 180, - "total_time_in_millis": 2530425 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099432014, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2533201, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76940139, - "total_time_in_millis": 2248 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6139 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099054548, - "stop_time_in_millis": 1570099061565, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7017, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 842 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55280274554, - "reused_in_bytes": 0, - "total_in_bytes": 55280274554 - }, - "source_throttle_time_in_millis": 75702, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2214810 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099116640, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2217826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77078183, - "total_time_in_millis": 2474 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54663512385, - "reused_in_bytes": 0, - "total_in_bytes": 54663512385 - }, - "source_throttle_time_in_millis": 77997, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2497995 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099400438, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2501624, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77181399, - "total_time_in_millis": 3617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54698776365, - "reused_in_bytes": 0, - "total_in_bytes": 54698776365 - }, - "source_throttle_time_in_millis": 70322, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2263435 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898812, - "stop_time_in_millis": 1570099164654, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2265841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77068404, - "total_time_in_millis": 2390 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55280274554, - "reused_in_bytes": 0, - "total_in_bytes": 55280274554 - }, - "source_throttle_time_in_millis": 67701, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 2215318 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099116596, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2217783, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77078183, - "total_time_in_millis": 2443 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55319714839, - "reused_in_bytes": 0, - "total_in_bytes": 55319714839 - }, - "source_throttle_time_in_millis": 37112, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2530422 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898814, - "stop_time_in_millis": 1570099432079, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2533264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76940139, - "total_time_in_millis": 2313 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55364033478, - "reused_in_bytes": 0, - "total_in_bytes": 55364033478 - }, - "source_throttle_time_in_millis": 69203, - "target_throttle_time_in_millis": 38, - "total_time_in_millis": 2318239 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099220087, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2321274, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76895841, - "total_time_in_millis": 2519 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54786498193, - "reused_in_bytes": 0, - "total_in_bytes": 54786498193 - }, - "source_throttle_time_in_millis": 64416, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2219491 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099121253, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2222440, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77174169, - "total_time_in_millis": 2403 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54461093119, - "reused_in_bytes": 0, - "total_in_bytes": 54461093119 - }, - "source_throttle_time_in_millis": 63617, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2226762 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099128272, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2229459, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77075964, - "total_time_in_millis": 2179 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55224425434, - "reused_in_bytes": 0, - "total_in_bytes": 55224425434 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 69, - "total_time_in_millis": 1587979 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099210714, - "stop_time_in_millis": 1570100801226, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1590511, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76857270, - "total_time_in_millis": 2510 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5561 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099124580, - "stop_time_in_millis": 1570099131025, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6445, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 840 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54240871577, - "reused_in_bytes": 0, - "total_in_bytes": 54240871577 - }, - "source_throttle_time_in_millis": 68897, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2105383 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099006973, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2108159, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76916107, - "total_time_in_millis": 2258 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5088 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099089151, - "stop_time_in_millis": 1570099095119, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5968, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 840 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54461093119, - "reused_in_bytes": 0, - "total_in_bytes": 54461093119 - }, - "source_throttle_time_in_millis": 68134, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2226766 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099128411, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2229598, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77075964, - "total_time_in_millis": 2315 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54318762897, - "reused_in_bytes": 0, - "total_in_bytes": 54318762897 - }, - "source_throttle_time_in_millis": 71566, - "target_throttle_time_in_millis": 28, - "total_time_in_millis": 2187767 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898812, - "stop_time_in_millis": 1570099088966, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2190153, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76771463, - "total_time_in_millis": 1864 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 315, - "reused": 0, - "total": 315 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53797733408, - "reused_in_bytes": 0, - "total_in_bytes": 53797733408 - }, - "source_throttle_time_in_millis": 58134, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4002893 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898814, - "stop_time_in_millis": 1570100904318, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 4005503, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76490020, - "total_time_in_millis": 2089 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 315, - "reused": 0, - "total": 315 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53797733408, - "reused_in_bytes": 0, - "total_in_bytes": 53797733408 - }, - "source_throttle_time_in_millis": 57139, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3922580 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898814, - "stop_time_in_millis": 1570100824101, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 3925286, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76490020, - "total_time_in_millis": 2177 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55243091389, - "reused_in_bytes": 0, - "total_in_bytes": 55243091389 - }, - "source_throttle_time_in_millis": 69956, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2254295 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099155742, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2256929, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76895327, - "total_time_in_millis": 2098 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5332 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570099053350, - "stop_time_in_millis": 1570099059582, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 6232, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 850 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 339, - "reused": 0, - "total": 339 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54624575425, - "reused_in_bytes": 0, - "total_in_bytes": 54624575425 - }, - "source_throttle_time_in_millis": 68864, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2151572 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099053320, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2154506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76971018, - "total_time_in_millis": 2384 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54576608387, - "reused_in_bytes": 0, - "total_in_bytes": 54576608387 - }, - "source_throttle_time_in_millis": 64935, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2242763 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099144624, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2245810, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77014535, - "total_time_in_millis": 2529 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54786498193, - "reused_in_bytes": 0, - "total_in_bytes": 54786498193 - }, - "source_throttle_time_in_millis": 65798, - "target_throttle_time_in_millis": 3, - "total_time_in_millis": 2201408 - }, - "index_name": "om-iu-bro-2019.10.01-001005", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096898813, - "stop_time_in_millis": 1570099102593, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2203780, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77174169, - "total_time_in_millis": 2359 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 261, - "reused_in_bytes": 0, - "total_in_bytes": 261 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 496 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568638295489, - "stop_time_in_millis": 1568638296170, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 681, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 91 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 261, - "reused_in_bytes": 0, - "total_in_bytes": 261 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 141 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569595294804, - "stop_time_in_millis": 1569595295608, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 803, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 73 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481080167, - "stop_time_in_millis": 1566481080296, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 129, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 92 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322775068, - "stop_time_in_millis": 1566322775440, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 372, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 326 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 16 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886815, - "stop_time_in_millis": 1568995887094, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 279, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 163 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 4, - "reused": 0, - "total": 4 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 5994, - "reused_in_bytes": 0, - "total_in_bytes": 5994 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 173 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421303535, - "stop_time_in_millis": 1569421303833, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 298, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 70 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903141, - "stop_time_in_millis": 1566313903595, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 454, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 296 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 24 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491918930, - "stop_time_in_millis": 1566491919370, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 439, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 231 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 21 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781843, - "stop_time_in_millis": 1568304781949, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 105, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 61 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 168 - }, - "index_name": ".ml-anomalies-.write-bro-eps-low-mean", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928370, - "stop_time_in_millis": 1568306928632, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 262, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 74 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 144, - "reused": 0, - "total": 144 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 640038803, - "reused_in_bytes": 0, - "total_in_bytes": 640038803 - }, - "source_throttle_time_in_millis": 2012, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 56572 - }, - "index_name": "om-iu-suricata-2019.09.30-000119", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117070409, - "stop_time_in_millis": 1570117127097, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 56687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 171353, - "total_time_in_millis": 100 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 149, - "reused": 0, - "total": 149 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 645344692, - "reused_in_bytes": 0, - "total_in_bytes": 645344692 - }, - "source_throttle_time_in_millis": 610, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 25672 - }, - "index_name": "om-iu-suricata-2019.09.30-000119", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117070410, - "stop_time_in_millis": 1570117096202, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 25791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 173654, - "total_time_in_millis": 107 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 144, - "reused": 0, - "total": 144 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 640038803, - "reused_in_bytes": 0, - "total_in_bytes": 640038803 - }, - "source_throttle_time_in_millis": 2281, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 67569 - }, - "index_name": "om-iu-suricata-2019.09.30-000119", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117070409, - "stop_time_in_millis": 1570117138094, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 67684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 171353, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 149, - "reused": 0, - "total": 149 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 645344692, - "reused_in_bytes": 0, - "total_in_bytes": 645344692 - }, - "source_throttle_time_in_millis": 595, - "target_throttle_time_in_millis": 250, - "total_time_in_millis": 26015 - }, - "index_name": "om-iu-suricata-2019.09.30-000119", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117070409, - "stop_time_in_millis": 1570117097607, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 27197, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 173654, - "total_time_in_millis": 153 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 130, - "reused": 0, - "total": 130 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 588773764, - "reused_in_bytes": 0, - "total_in_bytes": 588773764 - }, - "source_throttle_time_in_millis": 2895, - "target_throttle_time_in_millis": 7225, - "total_time_in_millis": 57807 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995440851, - "stop_time_in_millis": 1568995498870, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 58019, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 185 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304639747, - "stop_time_in_millis": 1568304640499, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 752, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 342 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397056307, - "stop_time_in_millis": 1566397057221, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 914, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 868 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481083527, - "stop_time_in_millis": 1566481085045, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 1517, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 1459 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886777, - "stop_time_in_millis": 1568995888191, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 1413, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 718 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 110, - "reused": 0, - "total": 110 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 588723385, - "reused_in_bytes": 0, - "total_in_bytes": 588723385 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 217, - "total_time_in_millis": 56648 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566320795632, - "stop_time_in_millis": 1566320853001, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 57369, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 124 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491931729, - "stop_time_in_millis": 1566491935073, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 3343, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 3177 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411484701, - "stop_time_in_millis": 1566411485662, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 960, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 857 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781852, - "stop_time_in_millis": 1568304782481, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 628, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 566 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 9 - }, - "index_name": "eb-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928419, - "stop_time_in_millis": 1568306929101, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 681, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 320 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 203 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502137, - "stop_time_in_millis": 1569956502501, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 364, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 53 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497902, - "stop_time_in_millis": 1569956499186, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 1283, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 291 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502149, - "stop_time_in_millis": 1569956502622, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 120 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 132 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497929, - "stop_time_in_millis": 1569956498122, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 70 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497889, - "stop_time_in_millis": 1569956498052, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 162, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 53 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 404 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502128, - "stop_time_in_millis": 1569956503273, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 70 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497894, - "stop_time_in_millis": 1569956498294, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 400, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 146 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 128 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502130, - "stop_time_in_millis": 1569956506947, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 4817, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 94 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 332 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502129, - "stop_time_in_millis": 1569956502975, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 138 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1170 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497889, - "stop_time_in_millis": 1569956500522, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 2633, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 31 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 227 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502130, - "stop_time_in_millis": 1569956502473, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 342, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 62 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 88 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497882, - "stop_time_in_millis": 1569956498017, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 135, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 27 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 78 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497886, - "stop_time_in_millis": 1569956498012, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 126, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 198 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502130, - "stop_time_in_millis": 1569956502983, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 853, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 95 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 68 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502128, - "stop_time_in_millis": 1569956506996, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 4868, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 68 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 81 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497957, - "stop_time_in_millis": 1569956498109, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 151, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 152 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502136, - "stop_time_in_millis": 1569956502964, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 828, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 115 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 139 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497888, - "stop_time_in_millis": 1569956498081, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 83 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502131, - "stop_time_in_millis": 1569956502282, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 151, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 36 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497884, - "stop_time_in_millis": 1569956497960, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 76, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 22 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 98 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502134, - "stop_time_in_millis": 1569956502627, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 493, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 62 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 264 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497883, - "stop_time_in_millis": 1569956498207, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 123 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497891, - "stop_time_in_millis": 1569956498090, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 199, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 42 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 181 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502241, - "stop_time_in_millis": 1569956502978, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 737, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 468 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 131 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502150, - "stop_time_in_millis": 1569956502535, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 384, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 220 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 61 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497881, - "stop_time_in_millis": 1569956497996, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 31 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 78 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497889, - "stop_time_in_millis": 1569956498031, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 142, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 42 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 274 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502135, - "stop_time_in_millis": 1569956503550, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 1415, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1104 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 332 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502132, - "stop_time_in_millis": 1569956503330, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 1198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 239 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 94 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497886, - "stop_time_in_millis": 1569956498086, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 200, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 15 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 172 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497891, - "stop_time_in_millis": 1569956499407, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 1515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 221 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502131, - "stop_time_in_millis": 1569956502461, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 330, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 73 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 211 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502148, - "stop_time_in_millis": 1569956502828, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 679, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 112 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 65 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956498080, - "stop_time_in_millis": 1569956498217, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 137, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 57 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 50 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569956497891, - "stop_time_in_millis": 1569956498083, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 191, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 127 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 174 - }, - "index_name": "om-iu-bro-2019.10.01-001008", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956502132, - "stop_time_in_millis": 1569956506282, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 4149, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 3935 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 631040819, - "reused_in_bytes": 0, - "total_in_bytes": 631040819 - }, - "source_throttle_time_in_millis": 3564, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 20669 - }, - "index_name": "om-iu-suricata-2019.09.25-000114", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978786643, - "stop_time_in_millis": 1569978807347, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 20704, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 156555, - "total_time_in_millis": 27 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 631040819, - "reused_in_bytes": 0, - "total_in_bytes": 631040819 - }, - "source_throttle_time_in_millis": 86238, - "target_throttle_time_in_millis": 74959, - "total_time_in_millis": 152488 - }, - "index_name": "om-iu-suricata-2019.09.25-000114", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789496615, - "stop_time_in_millis": 1569789649657, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 153041, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 156555, - "total_time_in_millis": 32 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 629603061, - "reused_in_bytes": 0, - "total_in_bytes": 629603061 - }, - "source_throttle_time_in_millis": 1835, - "target_throttle_time_in_millis": 579, - "total_time_in_millis": 21867 - }, - "index_name": "om-iu-suricata-2019.09.25-000114", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027162560, - "stop_time_in_millis": 1570027184477, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 21917, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 155751, - "total_time_in_millis": 38 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 141, - "reused": 0, - "total": 141 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 635100318, - "reused_in_bytes": 0, - "total_in_bytes": 635100318 - }, - "source_throttle_time_in_millis": 1070, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 24172 - }, - "index_name": "om-iu-suricata-2019.09.25-000114", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569682292353, - "stop_time_in_millis": 1569682316625, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 24271, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 155751, - "total_time_in_millis": 88 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 8049, - "reused_in_bytes": 0, - "total_in_bytes": 8049 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1472 - }, - "index_name": ".kibana_task_manager", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567558803336, - "stop_time_in_millis": 1567558805494, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 2158, - "translog": { - "percent": "100.0%", - "recovered": 12, - "total": 12, - "total_on_start": 12, - "total_time_in_millis": 132 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 8046, - "reused_in_bytes": 0, - "total_in_bytes": 8046 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 779 - }, - "index_name": ".kibana_task_manager", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567731605602, - "stop_time_in_millis": 1567731606919, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 1316, - "translog": { - "percent": "100.0%", - "recovered": 4, - "total": 4, - "total_on_start": 4, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 9 - }, - "index_name": ".reporting-2019.01.27", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481082614, - "stop_time_in_millis": 1566481083200, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 585, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 533 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 26 - }, - "index_name": ".reporting-2019.01.27", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995885750, - "stop_time_in_millis": 1568995886583, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 833, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 231 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 70 - }, - "index_name": ".watcher-history-9-2019.09.30", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569801606970, - "stop_time_in_millis": 1569801607079, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 108, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 24 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 97 - }, - "index_name": ".watcher-history-9-2019.09.30", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801614437, - "stop_time_in_millis": 1569801615225, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 100 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 724827342, - "reused_in_bytes": 0, - "total_in_bytes": 724827342 - }, - "source_throttle_time_in_millis": 80428, - "target_throttle_time_in_millis": 75045, - "total_time_in_millis": 144993 - }, - "index_name": "om-iu-suricata-2019.09.23-000112", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811647807, - "stop_time_in_millis": 1569811792903, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 145095, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 185085, - "total_time_in_millis": 83 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 728538741, - "reused_in_bytes": 0, - "total_in_bytes": 728538741 - }, - "source_throttle_time_in_millis": 62984, - "target_throttle_time_in_millis": 67260, - "total_time_in_millis": 133029 - }, - "index_name": "om-iu-suricata-2019.09.23-000112", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803767792, - "stop_time_in_millis": 1569803900959, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 133167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 185510, - "total_time_in_millis": 95 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 728538741, - "reused_in_bytes": 0, - "total_in_bytes": 728538741 - }, - "source_throttle_time_in_millis": 25462, - "target_throttle_time_in_millis": 39370, - "total_time_in_millis": 82664 - }, - "index_name": "om-iu-suricata-2019.09.23-000112", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775505491, - "stop_time_in_millis": 1569775588236, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 82745, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 185510, - "total_time_in_millis": 71 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 68, - "reused": 0, - "total": 68 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 727622998, - "reused_in_bytes": 0, - "total_in_bytes": 727622998 - }, - "source_throttle_time_in_millis": 778, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 27888 - }, - "index_name": "om-iu-suricata-2019.09.23-000112", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569508302185, - "stop_time_in_millis": 1569508330669, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 28483, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 185085, - "total_time_in_millis": 75 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6 - }, - "index_name": ".ml-annotations-6", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397036237, - "stop_time_in_millis": 1566397036354, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 117, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 71 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 7, - "reused": 0, - "total": 7 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 12416, - "reused_in_bytes": 0, - "total_in_bytes": 12416 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 237 - }, - "index_name": ".ml-annotations-6", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569042634502, - "stop_time_in_millis": 1569042634973, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 470, - "translog": { - "percent": "100.0%", - "recovered": 10, - "total": 10, - "total_on_start": 10, - "total_time_in_millis": 185 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 107, - "reused": 0, - "total": 107 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 604325109, - "reused_in_bytes": 0, - "total_in_bytes": 604325109 - }, - "source_throttle_time_in_millis": 1020, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 28684 - }, - "index_name": "om-iu-suricata-2019.09.29-000118", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030295864, - "stop_time_in_millis": 1570030324815, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 28950, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 159555, - "total_time_in_millis": 149 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 107, - "reused": 0, - "total": 107 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 604325109, - "reused_in_bytes": 0, - "total_in_bytes": 604325109 - }, - "source_throttle_time_in_millis": 632, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 28533 - }, - "index_name": "om-iu-suricata-2019.09.29-000118", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030295864, - "stop_time_in_millis": 1570030326020, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 30156, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 159555, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 104, - "reused": 0, - "total": 104 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 604529839, - "reused_in_bytes": 0, - "total_in_bytes": 604529839 - }, - "source_throttle_time_in_millis": 757, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 23756 - }, - "index_name": "om-iu-suricata-2019.09.29-000118", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030295866, - "stop_time_in_millis": 1570030320263, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 24396, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 159972, - "total_time_in_millis": 108 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 104, - "reused": 0, - "total": 104 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 604529839, - "reused_in_bytes": 0, - "total_in_bytes": 604529839 - }, - "source_throttle_time_in_millis": 593, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 24690 - }, - "index_name": "om-iu-suricata-2019.09.29-000118", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030295864, - "stop_time_in_millis": 1570030321206, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 25341, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 159972, - "total_time_in_millis": 117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 104, - "reused": 0, - "total": 104 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 494404275, - "reused_in_bytes": 0, - "total_in_bytes": 494404275 - }, - "source_throttle_time_in_millis": 617, - "target_throttle_time_in_millis": 1626, - "total_time_in_millis": 22125 - }, - "index_name": "om-iu-suricata-2019.09.27-000116", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855969648, - "stop_time_in_millis": 1569855991910, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 22262, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 107641, - "total_time_in_millis": 109 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 104, - "reused": 0, - "total": 104 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 494404274, - "reused_in_bytes": 0, - "total_in_bytes": 494404274 - }, - "source_throttle_time_in_millis": 1903, - "target_throttle_time_in_millis": 588, - "total_time_in_millis": 19617 - }, - "index_name": "om-iu-suricata-2019.09.27-000116", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855992037, - "stop_time_in_millis": 1569856011760, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 19723, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 107641, - "total_time_in_millis": 94 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 86, - "reused": 0, - "total": 86 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 494483906, - "reused_in_bytes": 0, - "total_in_bytes": 494483906 - }, - "source_throttle_time_in_millis": 515, - "target_throttle_time_in_millis": 7284, - "total_time_in_millis": 31488 - }, - "index_name": "om-iu-suricata-2019.09.27-000116", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855969637, - "stop_time_in_millis": 1569856001293, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 31655, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 108185, - "total_time_in_millis": 146 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 86, - "reused": 0, - "total": 86 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 494483906, - "reused_in_bytes": 0, - "total_in_bytes": 494483906 - }, - "source_throttle_time_in_millis": 850, - "target_throttle_time_in_millis": 1871, - "total_time_in_millis": 30709 - }, - "index_name": "om-iu-suricata-2019.09.27-000116", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855969632, - "stop_time_in_millis": 1569856000553, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 30920, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 108185, - "total_time_in_millis": 192 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52440698537, - "reused_in_bytes": 0, - "total_in_bytes": 52440698537 - }, - "source_throttle_time_in_millis": 199150, - "target_throttle_time_in_millis": 20404, - "total_time_in_millis": 1645385 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860900357, - "stop_time_in_millis": 1569862546396, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1646038, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74257872, - "total_time_in_millis": 644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51345995847, - "reused_in_bytes": 0, - "total_in_bytes": 51345995847 - }, - "source_throttle_time_in_millis": 57175, - "target_throttle_time_in_millis": 98, - "total_time_in_millis": 1288242 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569939240058, - "stop_time_in_millis": 1569940529455, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1289396, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74196410, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51798185366, - "reused_in_bytes": 0, - "total_in_bytes": 51798185366 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 8170, - "total_time_in_millis": 1208817 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957878891, - "stop_time_in_millis": 1569959088385, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1209493, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74325031, - "total_time_in_millis": 669 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51332800423, - "reused_in_bytes": 0, - "total_in_bytes": 51332800423 - }, - "source_throttle_time_in_millis": 3156714, - "target_throttle_time_in_millis": 5311767, - "total_time_in_millis": 8155429 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797346645, - "stop_time_in_millis": 1569805502997, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 8156351, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74195805, - "total_time_in_millis": 907 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53224141838, - "reused_in_bytes": 0, - "total_in_bytes": 53224141838 - }, - "source_throttle_time_in_millis": 63166, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 1881989 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893034, - "stop_time_in_millis": 1569693776938, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1883904, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75960201, - "total_time_in_millis": 1902 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53151956189, - "reused_in_bytes": 0, - "total_in_bytes": 53151956189 - }, - "source_throttle_time_in_millis": 62881, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 1953684 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569693848489, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1955455, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75869635, - "total_time_in_millis": 1757 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51768622538, - "reused_in_bytes": 0, - "total_in_bytes": 51768622538 - }, - "source_throttle_time_in_millis": 2821520, - "target_throttle_time_in_millis": 5604513, - "total_time_in_millis": 8013016 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796639386, - "stop_time_in_millis": 1569804653229, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8013843, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74259220, - "total_time_in_millis": 815 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51767422806, - "reused_in_bytes": 0, - "total_in_bytes": 51767422806 - }, - "source_throttle_time_in_millis": 319934, - "target_throttle_time_in_millis": 5772189, - "total_time_in_millis": 6298882 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807854546, - "stop_time_in_millis": 1569814154179, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6299632, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74430004, - "total_time_in_millis": 737 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52449650896, - "reused_in_bytes": 0, - "total_in_bytes": 52449650896 - }, - "source_throttle_time_in_millis": 49067, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3310801 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893032, - "stop_time_in_millis": 1569695206604, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 3313572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75436275, - "total_time_in_millis": 2757 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52423851807, - "reused_in_bytes": 0, - "total_in_bytes": 52423851807 - }, - "source_throttle_time_in_millis": 118897, - "target_throttle_time_in_millis": 28636, - "total_time_in_millis": 1783666 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976681075, - "stop_time_in_millis": 1569978465456, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1784381, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74032453, - "total_time_in_millis": 704 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51345995847, - "reused_in_bytes": 0, - "total_in_bytes": 51345995847 - }, - "source_throttle_time_in_millis": 46482, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1273109 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906660480, - "stop_time_in_millis": 1569907934267, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1273786, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74196410, - "total_time_in_millis": 663 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52406362831, - "reused_in_bytes": 0, - "total_in_bytes": 52406362831 - }, - "source_throttle_time_in_millis": 3963333, - "target_throttle_time_in_millis": 5831676, - "total_time_in_millis": 9336288 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810992007, - "stop_time_in_millis": 1569820329179, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 9337171, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74077918, - "total_time_in_millis": 859 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53068641340, - "reused_in_bytes": 0, - "total_in_bytes": 53068641340 - }, - "source_throttle_time_in_millis": 66975, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 1977095 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569693872017, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1978984, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75740783, - "total_time_in_millis": 1872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53030635795, - "reused_in_bytes": 0, - "total_in_bytes": 53030635795 - }, - "source_throttle_time_in_millis": 61683, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1919117 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569693813881, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1920847, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75819485, - "total_time_in_millis": 1713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51764881697, - "reused_in_bytes": 0, - "total_in_bytes": 51764881697 - }, - "source_throttle_time_in_millis": 1075324, - "target_throttle_time_in_millis": 5110684, - "total_time_in_millis": 6663658 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813019666, - "stop_time_in_millis": 1569819684149, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6664483, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74272440, - "total_time_in_millis": 814 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51767422806, - "reused_in_bytes": 0, - "total_in_bytes": 51767422806 - }, - "source_throttle_time_in_millis": 1580010, - "target_throttle_time_in_millis": 3887638, - "total_time_in_millis": 5971301 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829789266, - "stop_time_in_millis": 1569835762425, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 5973158, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74430004, - "total_time_in_millis": 871 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54041566935, - "reused_in_bytes": 0, - "total_in_bytes": 54041566935 - }, - "source_throttle_time_in_millis": 18127, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2046791 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893034, - "stop_time_in_millis": 1569693942460, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2049426, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75886006, - "total_time_in_millis": 2118 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53047012641, - "reused_in_bytes": 0, - "total_in_bytes": 53047012641 - }, - "source_throttle_time_in_millis": 63652, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 1917570 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893036, - "stop_time_in_millis": 1569693812383, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1919346, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75885803, - "total_time_in_millis": 1764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51747831680, - "reused_in_bytes": 0, - "total_in_bytes": 51747831680 - }, - "source_throttle_time_in_millis": 26977, - "target_throttle_time_in_millis": 214795, - "total_time_in_millis": 1407359 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569942658408, - "stop_time_in_millis": 1569944066470, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1408061, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74372415, - "total_time_in_millis": 693 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52440698537, - "reused_in_bytes": 0, - "total_in_bytes": 52440698537 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 44592, - "total_time_in_millis": 1605965 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569971782545, - "stop_time_in_millis": 1569973389149, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1606603, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74257872, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52406362831, - "reused_in_bytes": 0, - "total_in_bytes": 52406362831 - }, - "source_throttle_time_in_millis": 2150733, - "target_throttle_time_in_millis": 2631121, - "total_time_in_millis": 6051212 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820333561, - "stop_time_in_millis": 1569826385662, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6052101, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74077918, - "total_time_in_millis": 861 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51618074777, - "reused_in_bytes": 0, - "total_in_bytes": 51618074777 - }, - "source_throttle_time_in_millis": 659257, - "target_throttle_time_in_millis": 504812, - "total_time_in_millis": 2606193 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732134, - "stop_time_in_millis": 1569838339001, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2606866, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74420116, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51014293482, - "reused_in_bytes": 0, - "total_in_bytes": 51014293482 - }, - "source_throttle_time_in_millis": 260582, - "target_throttle_time_in_millis": 4253407, - "total_time_in_millis": 5343994 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810313060, - "stop_time_in_millis": 1569815657812, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 5344751, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73876583, - "total_time_in_millis": 746 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52912330710, - "reused_in_bytes": 0, - "total_in_bytes": 52912330710 - }, - "source_throttle_time_in_millis": 61357, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2279148 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893042, - "stop_time_in_millis": 1569694174048, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2281005, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75922416, - "total_time_in_millis": 1841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51127930187, - "reused_in_bytes": 0, - "total_in_bytes": 51127930187 - }, - "source_throttle_time_in_millis": 437939, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1653244 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569883559369, - "stop_time_in_millis": 1569885213232, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1653862, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73853755, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52470351721, - "reused_in_bytes": 0, - "total_in_bytes": 52470351721 - }, - "source_throttle_time_in_millis": 5066990, - "target_throttle_time_in_millis": 6210883, - "total_time_in_millis": 10166942 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688510, - "stop_time_in_millis": 1569766856156, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 10167646, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74165039, - "total_time_in_millis": 690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51874003198, - "reused_in_bytes": 0, - "total_in_bytes": 51874003198 - }, - "source_throttle_time_in_millis": 395707, - "target_throttle_time_in_millis": 2661563, - "total_time_in_millis": 4579145 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808768722, - "stop_time_in_millis": 1569813348836, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 4580114, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74425586, - "total_time_in_millis": 931 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53219544457, - "reused_in_bytes": 0, - "total_in_bytes": 53219544457 - }, - "source_throttle_time_in_millis": 57367, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 1980024 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569693875936, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1982903, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75722084, - "total_time_in_millis": 2868 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52665821793, - "reused_in_bytes": 0, - "total_in_bytes": 52665821793 - }, - "source_throttle_time_in_millis": 417789, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2408965 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569694304728, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2411694, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75663751, - "total_time_in_millis": 2716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52423851807, - "reused_in_bytes": 0, - "total_in_bytes": 52423851807 - }, - "source_throttle_time_in_millis": 2771, - "target_throttle_time_in_millis": 236347, - "total_time_in_millis": 1420438 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569913780914, - "stop_time_in_millis": 1569915202036, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1421121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74032453, - "total_time_in_millis": 674 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53219544457, - "reused_in_bytes": 0, - "total_in_bytes": 53219544457 - }, - "source_throttle_time_in_millis": 61530, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 1980026 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569693876001, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1982967, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75722084, - "total_time_in_millis": 2929 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52470351721, - "reused_in_bytes": 0, - "total_in_bytes": 52470351721 - }, - "source_throttle_time_in_millis": 674264, - "target_throttle_time_in_millis": 1550225, - "total_time_in_millis": 4406644 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330102, - "stop_time_in_millis": 1569825737938, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 4407836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74165039, - "total_time_in_millis": 1183 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52606838305, - "reused_in_bytes": 0, - "total_in_bytes": 52606838305 - }, - "source_throttle_time_in_millis": 256126, - "target_throttle_time_in_millis": 2777729, - "total_time_in_millis": 3961518 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796114386, - "stop_time_in_millis": 1569800076643, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 3962257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74325161, - "total_time_in_millis": 731 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53047012641, - "reused_in_bytes": 0, - "total_in_bytes": 53047012641 - }, - "source_throttle_time_in_millis": 63534, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 1917570 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569691893033, - "stop_time_in_millis": 1569693812347, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1919314, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75885803, - "total_time_in_millis": 1732 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51798185366, - "reused_in_bytes": 0, - "total_in_bytes": 51798185366 - }, - "source_throttle_time_in_millis": 6570000, - "target_throttle_time_in_millis": 3132961, - "total_time_in_millis": 10520118 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783196249, - "stop_time_in_millis": 1569793717678, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 10521428, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74325031, - "total_time_in_millis": 758 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51127930187, - "reused_in_bytes": 0, - "total_in_bytes": 51127930187 - }, - "source_throttle_time_in_millis": 90576, - "target_throttle_time_in_millis": 39619, - "total_time_in_millis": 1553370 - }, - "index_name": "om-iu-bro-2019.09.26-000985", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896324741, - "stop_time_in_millis": 1569897878798, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1554057, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73853755, - "total_time_in_millis": 678 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54406637363, - "reused_in_bytes": 0, - "total_in_bytes": 54406637363 - }, - "source_throttle_time_in_millis": 60987, - "target_throttle_time_in_millis": 51, - "total_time_in_millis": 2026727 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295296, - "stop_time_in_millis": 1569711324169, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2028872, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76353339, - "total_time_in_millis": 2129 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5014 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569711315475, - "stop_time_in_millis": 1569711321309, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 5833, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52415171263, - "reused_in_bytes": 0, - "total_in_bytes": 52415171263 - }, - "source_throttle_time_in_millis": 39513, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1563919 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873749065, - "stop_time_in_millis": 1569875313571, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1564506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73416050, - "total_time_in_millis": 578 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52415171263, - "reused_in_bytes": 0, - "total_in_bytes": 52415171263 - }, - "source_throttle_time_in_millis": 3746712, - "target_throttle_time_in_millis": 2642847, - "total_time_in_millis": 7253679 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790090033, - "stop_time_in_millis": 1569797344500, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7254466, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73416050, - "total_time_in_millis": 767 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51627919049, - "reused_in_bytes": 0, - "total_in_bytes": 51627919049 - }, - "source_throttle_time_in_millis": 6231277, - "target_throttle_time_in_millis": 1188731, - "total_time_in_millis": 8686753 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801414360, - "stop_time_in_millis": 1569810101999, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 8687639, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73292348, - "total_time_in_millis": 869 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51688551892, - "reused_in_bytes": 0, - "total_in_bytes": 51688551892 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 218, - "total_time_in_millis": 1278870 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873420287, - "stop_time_in_millis": 1569874699759, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1279471, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73321039, - "total_time_in_millis": 592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52493643195, - "reused_in_bytes": 0, - "total_in_bytes": 52493643195 - }, - "source_throttle_time_in_millis": 5041858, - "target_throttle_time_in_millis": 4580603, - "total_time_in_millis": 9509650 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483151, - "stop_time_in_millis": 1569834993630, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9510478, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73208651, - "total_time_in_millis": 805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52546066767, - "reused_in_bytes": 0, - "total_in_bytes": 52546066767 - }, - "source_throttle_time_in_millis": 5736498, - "target_throttle_time_in_millis": 5539333, - "total_time_in_millis": 10751353 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810004646, - "stop_time_in_millis": 1569820756806, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 10752159, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73296681, - "total_time_in_millis": 784 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4749 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569711378125, - "stop_time_in_millis": 1569711383744, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5618, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 829 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52306767129, - "reused_in_bytes": 0, - "total_in_bytes": 52306767129 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 21861, - "total_time_in_millis": 1456629 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855571860, - "stop_time_in_millis": 1569857029159, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1457299, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73252442, - "total_time_in_millis": 656 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54504562305, - "reused_in_bytes": 0, - "total_in_bytes": 54504562305 - }, - "source_throttle_time_in_millis": 77249, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2153216 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295297, - "stop_time_in_millis": 1569711451504, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2156206, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76857390, - "total_time_in_millis": 2461 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54240291814, - "reused_in_bytes": 0, - "total_in_bytes": 54240291814 - }, - "source_throttle_time_in_millis": 93748, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2111168 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295300, - "stop_time_in_millis": 1569711408498, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2113198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76255840, - "total_time_in_millis": 2016 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52384361810, - "reused_in_bytes": 0, - "total_in_bytes": 52384361810 - }, - "source_throttle_time_in_millis": 5427958, - "target_throttle_time_in_millis": 2965436, - "total_time_in_millis": 9246494 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795354988, - "stop_time_in_millis": 1569804602341, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9247352, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73211126, - "total_time_in_millis": 827 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54491967578, - "reused_in_bytes": 0, - "total_in_bytes": 54491967578 - }, - "source_throttle_time_in_millis": 60835, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2017073 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295296, - "stop_time_in_millis": 1569711315177, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2019880, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76489289, - "total_time_in_millis": 2289 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51639093943, - "reused_in_bytes": 0, - "total_in_bytes": 51639093943 - }, - "source_throttle_time_in_millis": 34103, - "target_throttle_time_in_millis": 212, - "total_time_in_millis": 1236148 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876169616, - "stop_time_in_millis": 1569877406354, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1236737, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73469701, - "total_time_in_millis": 579 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51769133273, - "reused_in_bytes": 0, - "total_in_bytes": 51769133273 - }, - "source_throttle_time_in_millis": 1117737, - "target_throttle_time_in_millis": 6221902, - "total_time_in_millis": 6994605 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827328492, - "stop_time_in_millis": 1569834323976, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6995483, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73337742, - "total_time_in_millis": 857 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52306767129, - "reused_in_bytes": 0, - "total_in_bytes": 52306767129 - }, - "source_throttle_time_in_millis": 4679866, - "target_throttle_time_in_millis": 3043696, - "total_time_in_millis": 8288393 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801476864, - "stop_time_in_millis": 1569809766596, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 8289732, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73252442, - "total_time_in_millis": 805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52400054867, - "reused_in_bytes": 0, - "total_in_bytes": 52400054867 - }, - "source_throttle_time_in_millis": 6769827, - "target_throttle_time_in_millis": 2170700, - "total_time_in_millis": 10030744 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781875063, - "stop_time_in_millis": 1569791906503, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 10031440, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73298314, - "total_time_in_millis": 668 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51226437099, - "reused_in_bytes": 0, - "total_in_bytes": 51226437099 - }, - "source_throttle_time_in_millis": 93982, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 1329815 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569927864153, - "stop_time_in_millis": 1569929194587, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1330434, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73055093, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51632019539, - "reused_in_bytes": 0, - "total_in_bytes": 51632019539 - }, - "source_throttle_time_in_millis": 5155507, - "target_throttle_time_in_millis": 4231986, - "total_time_in_millis": 9597424 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801240181, - "stop_time_in_millis": 1569810838362, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 9598180, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73252871, - "total_time_in_millis": 691 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51692959258, - "reused_in_bytes": 0, - "total_in_bytes": 51692959258 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 139, - "total_time_in_millis": 1165718 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569900803568, - "stop_time_in_millis": 1569901969888, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1166320, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73402577, - "total_time_in_millis": 593 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51374531005, - "reused_in_bytes": 0, - "total_in_bytes": 51374531005 - }, - "source_throttle_time_in_millis": 4309344, - "target_throttle_time_in_millis": 3506658, - "total_time_in_millis": 8669888 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800321220, - "stop_time_in_millis": 1569808992012, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 8670791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73289750, - "total_time_in_millis": 886 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51829460493, - "reused_in_bytes": 0, - "total_in_bytes": 51829460493 - }, - "source_throttle_time_in_millis": 4173523, - "target_throttle_time_in_millis": 1790281, - "total_time_in_millis": 7029132 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818401265, - "stop_time_in_millis": 1569825431796, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 7030530, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73446770, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52493643195, - "reused_in_bytes": 0, - "total_in_bytes": 52493643195 - }, - "source_throttle_time_in_millis": 68477, - "target_throttle_time_in_millis": 71764, - "total_time_in_millis": 1575943 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569882851711, - "stop_time_in_millis": 1569884428286, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1576574, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73208651, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54398910856, - "reused_in_bytes": 0, - "total_in_bytes": 54398910856 - }, - "source_throttle_time_in_millis": 34200, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2196725 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295297, - "stop_time_in_millis": 1569711494316, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2199018, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76445893, - "total_time_in_millis": 2279 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51639093943, - "reused_in_bytes": 0, - "total_in_bytes": 51639093943 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 145545, - "total_time_in_millis": 1344850 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569880306507, - "stop_time_in_millis": 1569881651986, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1345479, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73469701, - "total_time_in_millis": 619 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51560050211, - "reused_in_bytes": 0, - "total_in_bytes": 51560050211 - }, - "source_throttle_time_in_millis": 3098980, - "target_throttle_time_in_millis": 4002969, - "total_time_in_millis": 7453398 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798398988, - "stop_time_in_millis": 1569805854113, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 7455125, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73479814, - "total_time_in_millis": 1714 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54580474638, - "reused_in_bytes": 0, - "total_in_bytes": 54580474638 - }, - "source_throttle_time_in_millis": 58206, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1970980 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295297, - "stop_time_in_millis": 1569711268436, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1973139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76623494, - "total_time_in_millis": 2145 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5744 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569711380472, - "stop_time_in_millis": 1569711387159, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 898 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51652872054, - "reused_in_bytes": 0, - "total_in_bytes": 51652872054 - }, - "source_throttle_time_in_millis": 69690, - "target_throttle_time_in_millis": 103994, - "total_time_in_millis": 1377045 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929643944, - "stop_time_in_millis": 1569931021587, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1377643, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73307672, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51374531005, - "reused_in_bytes": 0, - "total_in_bytes": 51374531005 - }, - "source_throttle_time_in_millis": 4119932, - "target_throttle_time_in_millis": 3810919, - "total_time_in_millis": 8329772 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772805590, - "stop_time_in_millis": 1569781136367, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 8330776, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73289750, - "total_time_in_millis": 974 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51226437099, - "reused_in_bytes": 0, - "total_in_bytes": 51226437099 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 31669, - "total_time_in_millis": 1294949 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569934178228, - "stop_time_in_millis": 1569935473789, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1295560, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73055093, - "total_time_in_millis": 600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51688551892, - "reused_in_bytes": 0, - "total_in_bytes": 51688551892 - }, - "source_throttle_time_in_millis": 293007, - "target_throttle_time_in_millis": 77, - "total_time_in_millis": 1548575 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569878757257, - "stop_time_in_millis": 1569880306447, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1549190, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73321039, - "total_time_in_millis": 605 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51692959258, - "reused_in_bytes": 0, - "total_in_bytes": 51692959258 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 209782, - "total_time_in_millis": 1358516 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569905301218, - "stop_time_in_millis": 1569906660389, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1359171, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73402577, - "total_time_in_millis": 646 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54415762053, - "reused_in_bytes": 0, - "total_in_bytes": 54415762053 - }, - "source_throttle_time_in_millis": 66723, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2020422 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569709295296, - "stop_time_in_millis": 1569711317952, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2022655, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76477850, - "total_time_in_millis": 2212 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52546066767, - "reused_in_bytes": 0, - "total_in_bytes": 52546066767 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 227440, - "total_time_in_millis": 1753356 - }, - "index_name": "om-iu-bro-2019.09.26-000986", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569853598752, - "stop_time_in_millis": 1569855353055, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1754303, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73296681, - "total_time_in_millis": 938 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52192436868, - "reused_in_bytes": 0, - "total_in_bytes": 52192436868 - }, - "source_throttle_time_in_millis": 490315, - "target_throttle_time_in_millis": 4315415, - "total_time_in_millis": 5094645 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810528801, - "stop_time_in_millis": 1569815624387, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 5095585, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72840018, - "total_time_in_millis": 921 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52866070459, - "reused_in_bytes": 0, - "total_in_bytes": 52866070459 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 91, - "total_time_in_millis": 1427596 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892273454, - "stop_time_in_millis": 1569893701658, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1428204, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72693775, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52115625875, - "reused_in_bytes": 0, - "total_in_bytes": 52115625875 - }, - "source_throttle_time_in_millis": 6491022, - "target_throttle_time_in_millis": 1770178, - "total_time_in_millis": 9643945 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783806485, - "stop_time_in_millis": 1569793451653, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9645167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72901242, - "total_time_in_millis": 701 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51398152300, - "reused_in_bytes": 0, - "total_in_bytes": 51398152300 - }, - "source_throttle_time_in_millis": 4381, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1445647 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569905250569, - "stop_time_in_millis": 1569906696857, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1446287, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72221186, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55159360495, - "reused_in_bytes": 0, - "total_in_bytes": 55159360495 - }, - "source_throttle_time_in_millis": 70681, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2217724 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698447, - "stop_time_in_millis": 1569659921544, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2223097, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76420168, - "total_time_in_millis": 2309 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52098504889, - "reused_in_bytes": 0, - "total_in_bytes": 52098504889 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1284226 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569868129107, - "stop_time_in_millis": 1569869413933, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1284825, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72831537, - "total_time_in_millis": 578 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55998446664, - "reused_in_bytes": 0, - "total_in_bytes": 55998446664 - }, - "source_throttle_time_in_millis": 72740, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2249440 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698448, - "stop_time_in_millis": 1569659950294, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2251845, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76531979, - "total_time_in_millis": 2391 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52179992266, - "reused_in_bytes": 0, - "total_in_bytes": 52179992266 - }, - "source_throttle_time_in_millis": 124806, - "target_throttle_time_in_millis": 72178, - "total_time_in_millis": 1632363 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569953208808, - "stop_time_in_millis": 1569954841832, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1633024, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72771307, - "total_time_in_millis": 650 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52067477928, - "reused_in_bytes": 0, - "total_in_bytes": 52067477928 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 98679, - "total_time_in_millis": 1361230 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569919899357, - "stop_time_in_millis": 1569921261261, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1361903, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72832179, - "total_time_in_millis": 663 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52729569522, - "reused_in_bytes": 0, - "total_in_bytes": 52729569522 - }, - "source_throttle_time_in_millis": 2939289, - "target_throttle_time_in_millis": 6371033, - "total_time_in_millis": 8754297 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677500, - "stop_time_in_millis": 1569835432597, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 8755096, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72548935, - "total_time_in_millis": 785 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52791507737, - "reused_in_bytes": 0, - "total_in_bytes": 52791507737 - }, - "source_throttle_time_in_millis": 42296, - "target_throttle_time_in_millis": 25365, - "total_time_in_millis": 1420765 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569894812697, - "stop_time_in_millis": 1569896234097, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1421399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72824879, - "total_time_in_millis": 621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5380 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569659983399, - "stop_time_in_millis": 1569659989640, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6240, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52149086197, - "reused_in_bytes": 0, - "total_in_bytes": 52149086197 - }, - "source_throttle_time_in_millis": 1071977, - "target_throttle_time_in_millis": 2101722, - "total_time_in_millis": 3870514 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706980, - "stop_time_in_millis": 1569842578245, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 3871265, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72888240, - "total_time_in_millis": 742 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52115625875, - "reused_in_bytes": 0, - "total_in_bytes": 52115625875 - }, - "source_throttle_time_in_millis": 4973751, - "target_throttle_time_in_millis": 4423000, - "total_time_in_millis": 9779419 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772197224, - "stop_time_in_millis": 1569781979102, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 9781877, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72901242, - "total_time_in_millis": 2443 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52240220929, - "reused_in_bytes": 0, - "total_in_bytes": 52240220929 - }, - "source_throttle_time_in_millis": 3219267, - "target_throttle_time_in_millis": 4845616, - "total_time_in_millis": 8605193 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813385602, - "stop_time_in_millis": 1569821994220, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 8608617, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72850260, - "total_time_in_millis": 3404 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52729569522, - "reused_in_bytes": 0, - "total_in_bytes": 52729569522 - }, - "source_throttle_time_in_millis": 32175, - "target_throttle_time_in_millis": 1460262, - "total_time_in_millis": 2421718 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569912701746, - "stop_time_in_millis": 1569915124134, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2422387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72548935, - "total_time_in_millis": 657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51948074910, - "reused_in_bytes": 0, - "total_in_bytes": 51948074910 - }, - "source_throttle_time_in_millis": 1631059, - "target_throttle_time_in_millis": 4251969, - "total_time_in_millis": 6107386 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829789256, - "stop_time_in_millis": 1569835897388, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6108132, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72894541, - "total_time_in_millis": 671 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52164366419, - "reused_in_bytes": 0, - "total_in_bytes": 52164366419 - }, - "source_throttle_time_in_millis": 5013919, - "target_throttle_time_in_millis": 5144288, - "total_time_in_millis": 10012379 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812040402, - "stop_time_in_millis": 1569822053881, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 10013479, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72899402, - "total_time_in_millis": 844 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51450582418, - "reused_in_bytes": 0, - "total_in_bytes": 51450582418 - }, - "source_throttle_time_in_millis": 2104975, - "target_throttle_time_in_millis": 5413521, - "total_time_in_millis": 7115396 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603825, - "stop_time_in_millis": 1569831720080, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 7116255, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72163663, - "total_time_in_millis": 846 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52738924475, - "reused_in_bytes": 0, - "total_in_bytes": 52738924475 - }, - "source_throttle_time_in_millis": 1960788, - "target_throttle_time_in_millis": 2839853, - "total_time_in_millis": 5780451 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320029, - "stop_time_in_millis": 1569838101144, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5781115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72720991, - "total_time_in_millis": 653 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55195358008, - "reused_in_bytes": 0, - "total_in_bytes": 55195358008 - }, - "source_throttle_time_in_millis": 71622, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2202352 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698447, - "stop_time_in_millis": 1569659903301, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2204853, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76403437, - "total_time_in_millis": 2490 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51450582418, - "reused_in_bytes": 0, - "total_in_bytes": 51450582418 - }, - "source_throttle_time_in_millis": 1062476, - "target_throttle_time_in_millis": 4483558, - "total_time_in_millis": 6436803 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817504884, - "stop_time_in_millis": 1569823942491, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 6437607, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72163663, - "total_time_in_millis": 785 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55052386249, - "reused_in_bytes": 0, - "total_in_bytes": 55052386249 - }, - "source_throttle_time_in_millis": 69430, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2187815 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698448, - "stop_time_in_millis": 1569659889088, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2190640, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76349612, - "total_time_in_millis": 2299 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52904787007, - "reused_in_bytes": 0, - "total_in_bytes": 52904787007 - }, - "source_throttle_time_in_millis": 3062954, - "target_throttle_time_in_millis": 2045454, - "total_time_in_millis": 6960800 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818859989, - "stop_time_in_millis": 1569825823193, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 6963203, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72787261, - "total_time_in_millis": 859 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569659908946, - "stop_time_in_millis": 1569659909839, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 843 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55834503599, - "reused_in_bytes": 0, - "total_in_bytes": 55834503599 - }, - "source_throttle_time_in_millis": 72714, - "target_throttle_time_in_millis": 112, - "total_time_in_millis": 2449784 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698448, - "stop_time_in_millis": 1569660151431, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2452982, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76286059, - "total_time_in_millis": 2671 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52866070459, - "reused_in_bytes": 0, - "total_in_bytes": 52866070459 - }, - "source_throttle_time_in_millis": 73259, - "target_throttle_time_in_millis": 89853, - "total_time_in_millis": 1642843 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896356045, - "stop_time_in_millis": 1569897999581, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1643535, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72693775, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52179992266, - "reused_in_bytes": 0, - "total_in_bytes": 52179992266 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 41997, - "total_time_in_millis": 1191530 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931299714, - "stop_time_in_millis": 1569932491841, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1192126, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72771307, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52192436868, - "reused_in_bytes": 0, - "total_in_bytes": 52192436868 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 188, - "total_time_in_millis": 1211885 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876387471, - "stop_time_in_millis": 1569877599973, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1212502, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72840018, - "total_time_in_millis": 606 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52820312376, - "reused_in_bytes": 0, - "total_in_bytes": 52820312376 - }, - "source_throttle_time_in_millis": 3615300, - "target_throttle_time_in_millis": 5148001, - "total_time_in_millis": 8229595 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831547869, - "stop_time_in_millis": 1569839778771, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 8230901, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72764244, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51398152300, - "reused_in_bytes": 0, - "total_in_bytes": 51398152300 - }, - "source_throttle_time_in_millis": 1351923, - "target_throttle_time_in_millis": 5491161, - "total_time_in_millis": 6975326 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790064781, - "stop_time_in_millis": 1569797040853, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 6976072, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72221186, - "total_time_in_millis": 731 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55229680613, - "reused_in_bytes": 0, - "total_in_bytes": 55229680613 - }, - "source_throttle_time_in_millis": 63442, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2280872 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698447, - "stop_time_in_millis": 1569659981986, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2283539, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76526152, - "total_time_in_millis": 2142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52098504889, - "reused_in_bytes": 0, - "total_in_bytes": 52098504889 - }, - "source_throttle_time_in_millis": 66734, - "target_throttle_time_in_millis": 450728, - "total_time_in_millis": 1816616 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935462361, - "stop_time_in_millis": 1569937280199, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1817837, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72831537, - "total_time_in_millis": 677 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55245504788, - "reused_in_bytes": 0, - "total_in_bytes": 55245504788 - }, - "source_throttle_time_in_millis": 65641, - "target_throttle_time_in_millis": 105, - "total_time_in_millis": 2167068 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698447, - "stop_time_in_millis": 1569659868460, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2170012, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76360581, - "total_time_in_millis": 2279 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52904787007, - "reused_in_bytes": 0, - "total_in_bytes": 52904787007 - }, - "source_throttle_time_in_millis": 4830670, - "target_throttle_time_in_millis": 3145768, - "total_time_in_millis": 8904989 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825824142, - "stop_time_in_millis": 1569834730294, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 8906151, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72787261, - "total_time_in_millis": 1077 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54993090164, - "reused_in_bytes": 0, - "total_in_bytes": 54993090164 - }, - "source_throttle_time_in_millis": 65431, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2186586 - }, - "index_name": "om-iu-bro-2019.09.26-000983", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569657698448, - "stop_time_in_millis": 1569659887872, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2189424, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76484464, - "total_time_in_millis": 2309 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50318329811, - "reused_in_bytes": 0, - "total_in_bytes": 50318329811 - }, - "source_throttle_time_in_millis": 63806, - "target_throttle_time_in_millis": 54, - "total_time_in_millis": 1311144 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973656755, - "stop_time_in_millis": 1569974968480, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1311724, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73112519, - "total_time_in_millis": 570 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51043063453, - "reused_in_bytes": 0, - "total_in_bytes": 51043063453 - }, - "source_throttle_time_in_millis": 369073, - "target_throttle_time_in_millis": 4378973, - "total_time_in_millis": 5108165 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814609650, - "stop_time_in_millis": 1569819719083, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 5109432, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73063354, - "total_time_in_millis": 746 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49770965648, - "reused_in_bytes": 0, - "total_in_bytes": 49770965648 - }, - "source_throttle_time_in_millis": 5262065, - "target_throttle_time_in_millis": 3208604, - "total_time_in_millis": 8959184 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810161777, - "stop_time_in_millis": 1569819121773, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8959996, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72717120, - "total_time_in_millis": 792 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50961027133, - "reused_in_bytes": 0, - "total_in_bytes": 50961027133 - }, - "source_throttle_time_in_millis": 158037, - "target_throttle_time_in_millis": 113643, - "total_time_in_millis": 1879588 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569913454972, - "stop_time_in_millis": 1569915335253, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1880280, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73092335, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52086742054, - "reused_in_bytes": 0, - "total_in_bytes": 52086742054 - }, - "source_throttle_time_in_millis": 18572, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3673611 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569678770132, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 3676694, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75460913, - "total_time_in_millis": 2560 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52706809307, - "reused_in_bytes": 0, - "total_in_bytes": 52706809307 - }, - "source_throttle_time_in_millis": 57608, - "target_throttle_time_in_millis": 74, - "total_time_in_millis": 1871925 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093439, - "stop_time_in_millis": 1569676967704, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1874265, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75778821, - "total_time_in_millis": 2327 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52657153740, - "reused_in_bytes": 0, - "total_in_bytes": 52657153740 - }, - "source_throttle_time_in_millis": 72499, - "target_throttle_time_in_millis": 133, - "total_time_in_millis": 1989440 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569677085439, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1992001, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75715265, - "total_time_in_millis": 2549 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51083080732, - "reused_in_bytes": 0, - "total_in_bytes": 51083080732 - }, - "source_throttle_time_in_millis": 3613019, - "target_throttle_time_in_millis": 5356484, - "total_time_in_millis": 8768891 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810102060, - "stop_time_in_millis": 1569818871719, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 8769659, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73078275, - "total_time_in_millis": 743 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50065257641, - "reused_in_bytes": 0, - "total_in_bytes": 50065257641 - }, - "source_throttle_time_in_millis": 5556373, - "target_throttle_time_in_millis": 4301662, - "total_time_in_millis": 9920180 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816688946, - "stop_time_in_millis": 1569826611278, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 9922332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73119318, - "total_time_in_millis": 2140 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51062072932, - "reused_in_bytes": 0, - "total_in_bytes": 51062072932 - }, - "source_throttle_time_in_millis": 4931337, - "target_throttle_time_in_millis": 3339258, - "total_time_in_millis": 8727706 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797830909, - "stop_time_in_millis": 1569806559443, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 8728534, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73049004, - "total_time_in_millis": 814 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50266753466, - "reused_in_bytes": 0, - "total_in_bytes": 50266753466 - }, - "source_throttle_time_in_millis": 91836, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 1400133 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569926050463, - "stop_time_in_millis": 1569927451206, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1400742, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73131724, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52701496663, - "reused_in_bytes": 0, - "total_in_bytes": 52701496663 - }, - "source_throttle_time_in_millis": 63302, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1820935 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569676917309, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1823871, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75702077, - "total_time_in_millis": 2413 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50374413026, - "reused_in_bytes": 0, - "total_in_bytes": 50374413026 - }, - "source_throttle_time_in_millis": 85783, - "target_throttle_time_in_millis": 568339, - "total_time_in_millis": 1717605 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569880832461, - "stop_time_in_millis": 1569882550695, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1718233, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73110428, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52797045684, - "reused_in_bytes": 0, - "total_in_bytes": 52797045684 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 490, - "total_time_in_millis": 1233698 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569676967458, - "stop_time_in_millis": 1569678203747, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1236288, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75782698, - "total_time_in_millis": 2569 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50337872786, - "reused_in_bytes": 0, - "total_in_bytes": 50337872786 - }, - "source_throttle_time_in_millis": 251465, - "target_throttle_time_in_millis": 6483130, - "total_time_in_millis": 6234852 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706908, - "stop_time_in_millis": 1569844945390, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6238481, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73100758, - "total_time_in_millis": 3619 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52399568583, - "reused_in_bytes": 0, - "total_in_bytes": 52399568583 - }, - "source_throttle_time_in_millis": 60207, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1808164 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569676904078, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1810639, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75755487, - "total_time_in_millis": 2465 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51062072932, - "reused_in_bytes": 0, - "total_in_bytes": 51062072932 - }, - "source_throttle_time_in_millis": 1516015, - "target_throttle_time_in_millis": 5387323, - "total_time_in_millis": 6735374 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825973620, - "stop_time_in_millis": 1569832710300, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6736680, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73049004, - "total_time_in_millis": 756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50213198741, - "reused_in_bytes": 0, - "total_in_bytes": 50213198741 - }, - "source_throttle_time_in_millis": 40329, - "target_throttle_time_in_millis": 2253, - "total_time_in_millis": 1815576 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906696913, - "stop_time_in_millis": 1569908513092, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1816179, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73184479, - "total_time_in_millis": 594 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 262, - "reused": 0, - "total": 262 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53238193588, - "reused_in_bytes": 0, - "total_in_bytes": 53238193588 - }, - "source_throttle_time_in_millis": 58211, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 1925692 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569677020990, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1927551, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75447089, - "total_time_in_millis": 1846 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50961027133, - "reused_in_bytes": 0, - "total_in_bytes": 50961027133 - }, - "source_throttle_time_in_millis": 10803, - "target_throttle_time_in_millis": 41300, - "total_time_in_millis": 1572485 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569971713619, - "stop_time_in_millis": 1569973286763, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1573144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73092335, - "total_time_in_millis": 645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51074219500, - "reused_in_bytes": 0, - "total_in_bytes": 51074219500 - }, - "source_throttle_time_in_millis": 4470196, - "target_throttle_time_in_millis": 1252707, - "total_time_in_millis": 6867255 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093281, - "stop_time_in_millis": 1569836961250, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6867969, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72937320, - "total_time_in_millis": 702 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52103373977, - "reused_in_bytes": 0, - "total_in_bytes": 52103373977 - }, - "source_throttle_time_in_millis": 52726, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3378263 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093439, - "stop_time_in_millis": 1569678474474, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 3381035, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75330701, - "total_time_in_millis": 2760 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 275, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 3788, - "reused_in_bytes": 53339473588, - "total_in_bytes": 53339477376 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4889 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569676948557, - "stop_time_in_millis": 1569676954428, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 5871, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75706083, - "total_time_in_millis": 940 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51093773719, - "reused_in_bytes": 0, - "total_in_bytes": 51093773719 - }, - "source_throttle_time_in_millis": 119887, - "target_throttle_time_in_millis": 140066, - "total_time_in_millis": 1721295 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948660173, - "stop_time_in_millis": 1569950382160, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1721987, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72956129, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50266753466, - "reused_in_bytes": 0, - "total_in_bytes": 50266753466 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 107930, - "total_time_in_millis": 1236621 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961380137, - "stop_time_in_millis": 1569962617468, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1237331, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73131724, - "total_time_in_millis": 700 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50331278594, - "reused_in_bytes": 0, - "total_in_bytes": 50331278594 - }, - "source_throttle_time_in_millis": 3551248, - "target_throttle_time_in_millis": 3480505, - "total_time_in_millis": 7507033 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432744, - "stop_time_in_millis": 1569835940526, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 7507781, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73097656, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50358288473, - "reused_in_bytes": 0, - "total_in_bytes": 50358288473 - }, - "source_throttle_time_in_millis": 393947, - "target_throttle_time_in_millis": 5327538, - "total_time_in_millis": 5839816 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816423913, - "stop_time_in_millis": 1569822264495, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5840581, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73106705, - "total_time_in_millis": 754 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50428621323, - "reused_in_bytes": 0, - "total_in_bytes": 50428621323 - }, - "source_throttle_time_in_millis": 883643, - "target_throttle_time_in_millis": 4388145, - "total_time_in_millis": 5898488 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818139957, - "stop_time_in_millis": 1569824039691, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 5899734, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73120574, - "total_time_in_millis": 723 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52806868499, - "reused_in_bytes": 0, - "total_in_bytes": 52806868499 - }, - "source_throttle_time_in_millis": 59458, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 1871508 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569676968257, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1874819, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75845604, - "total_time_in_millis": 3300 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50213198741, - "reused_in_bytes": 0, - "total_in_bytes": 50213198741 - }, - "source_throttle_time_in_millis": 2203537, - "target_throttle_time_in_millis": 5720579, - "total_time_in_millis": 7605000 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803528739, - "stop_time_in_millis": 1569811134562, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 7605822, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73184479, - "total_time_in_millis": 811 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 300, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 4541, - "reused_in_bytes": 53427840897, - "total_in_bytes": 53427845438 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5478 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569677011176, - "stop_time_in_millis": 1569677017511, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 6334, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75452530, - "total_time_in_millis": 775 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50420304077, - "reused_in_bytes": 0, - "total_in_bytes": 50420304077 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 84, - "total_time_in_millis": 1245490 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569898407706, - "stop_time_in_millis": 1569899653779, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1246073, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73140245, - "total_time_in_millis": 572 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50318329811, - "reused_in_bytes": 0, - "total_in_bytes": 50318329811 - }, - "source_throttle_time_in_millis": 3649305, - "target_throttle_time_in_millis": 4787245, - "total_time_in_millis": 8474753 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569771138338, - "stop_time_in_millis": 1569779613886, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8475548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73112519, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50374413026, - "reused_in_bytes": 0, - "total_in_bytes": 50374413026 - }, - "source_throttle_time_in_millis": 4255565, - "target_throttle_time_in_millis": 3847325, - "total_time_in_millis": 8139759 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569804710387, - "stop_time_in_millis": 1569812850960, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 8140573, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73110428, - "total_time_in_millis": 799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53234406076, - "reused_in_bytes": 0, - "total_in_bytes": 53234406076 - }, - "source_throttle_time_in_millis": 58318, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1946221 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569675093438, - "stop_time_in_millis": 1569677042285, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1948846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75548273, - "total_time_in_millis": 2072 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49712812353, - "reused_in_bytes": 0, - "total_in_bytes": 49712812353 - }, - "source_throttle_time_in_millis": 4266678, - "target_throttle_time_in_millis": 4234485, - "total_time_in_millis": 9135058 - }, - "index_name": "om-iu-bro-2019.09.26-000984", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813019644, - "stop_time_in_millis": 1569822156095, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 9136451, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72755779, - "total_time_in_millis": 872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 369724654, - "reused_in_bytes": 0, - "total_in_bytes": 369724654 - }, - "source_throttle_time_in_millis": 6731, - "target_throttle_time_in_millis": 39215, - "total_time_in_millis": 46328 - }, - "index_name": "om-iu-suricata-2019.09.21-000110", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569777285357, - "stop_time_in_millis": 1569777331750, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 46392, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 96676, - "total_time_in_millis": 53 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 361788254, - "reused_in_bytes": 0, - "total_in_bytes": 361788254 - }, - "source_throttle_time_in_millis": 556, - "target_throttle_time_in_millis": 311, - "total_time_in_millis": 11956 - }, - "index_name": "om-iu-suricata-2019.09.21-000110", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569563056678, - "stop_time_in_millis": 1569563068679, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 12001, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 95524, - "total_time_in_millis": 28 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 98, - "reused": 0, - "total": 98 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 366265868, - "reused_in_bytes": 0, - "total_in_bytes": 366265868 - }, - "source_throttle_time_in_millis": 158, - "target_throttle_time_in_millis": 162, - "total_time_in_millis": 15279 - }, - "index_name": "om-iu-suricata-2019.09.21-000110", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569333896553, - "stop_time_in_millis": 1569333912441, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 15888, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 95524, - "total_time_in_millis": 73 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 369724654, - "reused_in_bytes": 0, - "total_in_bytes": 369724654 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10469 - }, - "index_name": "om-iu-suricata-2019.09.21-000110", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978316964, - "stop_time_in_millis": 1569978327469, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 10504, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 96676, - "total_time_in_millis": 25 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55961652056, - "reused_in_bytes": 0, - "total_in_bytes": 55961652056 - }, - "source_throttle_time_in_millis": 72536, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1966154 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729268969, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1969133, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76579174, - "total_time_in_millis": 2458 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51957944087, - "reused_in_bytes": 0, - "total_in_bytes": 51957944087 - }, - "source_throttle_time_in_millis": 3891240, - "target_throttle_time_in_millis": 5653091, - "total_time_in_millis": 9026684 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818492086, - "stop_time_in_millis": 1569827519651, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 9027564, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72736288, - "total_time_in_millis": 853 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51797707309, - "reused_in_bytes": 0, - "total_in_bytes": 51797707309 - }, - "source_throttle_time_in_millis": 5088419, - "target_throttle_time_in_millis": 4056833, - "total_time_in_millis": 9300242 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432725, - "stop_time_in_millis": 1569837738129, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9305403, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72752891, - "total_time_in_millis": 3615 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55101250448, - "reused_in_bytes": 0, - "total_in_bytes": 55101250448 - }, - "source_throttle_time_in_millis": 62470, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2315874 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299840, - "stop_time_in_millis": 1569729618835, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2318995, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76399948, - "total_time_in_millis": 2590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4938 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569729354344, - "stop_time_in_millis": 1569729360185, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 5840, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52634448482, - "reused_in_bytes": 0, - "total_in_bytes": 52634448482 - }, - "source_throttle_time_in_millis": 3640384, - "target_throttle_time_in_millis": 1318345, - "total_time_in_millis": 6305326 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569804710401, - "stop_time_in_millis": 1569811016470, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 6306068, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72561344, - "total_time_in_millis": 726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51908237243, - "reused_in_bytes": 0, - "total_in_bytes": 51908237243 - }, - "source_throttle_time_in_millis": 5745289, - "target_throttle_time_in_millis": 1946899, - "total_time_in_millis": 8825759 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806119699, - "stop_time_in_millis": 1569814946811, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8827111, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72677797, - "total_time_in_millis": 801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52489808298, - "reused_in_bytes": 0, - "total_in_bytes": 52489808298 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 26788, - "total_time_in_millis": 1375624 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569950640252, - "stop_time_in_millis": 1569952016492, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1376240, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72482390, - "total_time_in_millis": 605 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51957944087, - "reused_in_bytes": 0, - "total_in_bytes": 51957944087 - }, - "source_throttle_time_in_millis": 137776, - "target_throttle_time_in_millis": 539, - "total_time_in_millis": 1375178 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962617516, - "stop_time_in_millis": 1569963993347, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1375831, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72736288, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 357, - "reused": 0, - "total": 357 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55200817827, - "reused_in_bytes": 0, - "total_in_bytes": 55200817827 - }, - "source_throttle_time_in_millis": 64092, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2351321 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299841, - "stop_time_in_millis": 1569729653982, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2354140, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76486147, - "total_time_in_millis": 2799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 273, - "reused": 0, - "total": 273 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53959703689, - "reused_in_bytes": 0, - "total_in_bytes": 53959703689 - }, - "source_throttle_time_in_millis": 466116, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2449772 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729751710, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2451874, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75269789, - "total_time_in_millis": 2088 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55961652056, - "reused_in_bytes": 0, - "total_in_bytes": 55961652056 - }, - "source_throttle_time_in_millis": 61081, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1966155 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729269003, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1969168, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76579174, - "total_time_in_millis": 2489 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51908237243, - "reused_in_bytes": 0, - "total_in_bytes": 51908237243 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 134, - "total_time_in_millis": 1145943 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569939009939, - "stop_time_in_millis": 1569940156472, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1146533, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72677797, - "total_time_in_millis": 582 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 273, - "reused": 0, - "total": 273 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53959703689, - "reused_in_bytes": 0, - "total_in_bytes": 53959703689 - }, - "source_throttle_time_in_millis": 454881, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2391471 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299836, - "stop_time_in_millis": 1569729693366, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2393530, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75269789, - "total_time_in_millis": 2050 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52612812081, - "reused_in_bytes": 0, - "total_in_bytes": 52612812081 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 1916336, - "total_time_in_millis": 2800186 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435637, - "stop_time_in_millis": 1569846236492, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2800854, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72578299, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55260631212, - "reused_in_bytes": 0, - "total_in_bytes": 55260631212 - }, - "source_throttle_time_in_millis": 63472, - "target_throttle_time_in_millis": 61, - "total_time_in_millis": 1970548 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729272745, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1972910, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76509412, - "total_time_in_millis": 2350 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51786716111, - "reused_in_bytes": 0, - "total_in_bytes": 51786716111 - }, - "source_throttle_time_in_millis": 4824673, - "target_throttle_time_in_millis": 4823019, - "total_time_in_millis": 9522122 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820697977, - "stop_time_in_millis": 1569830223090, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 9525113, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72820837, - "total_time_in_millis": 2954 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52004560719, - "reused_in_bytes": 0, - "total_in_bytes": 52004560719 - }, - "source_throttle_time_in_millis": 2099122, - "target_throttle_time_in_millis": 3981774, - "total_time_in_millis": 6696763 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822899576, - "stop_time_in_millis": 1569829597087, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 6697510, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72794827, - "total_time_in_millis": 726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52598834194, - "reused_in_bytes": 0, - "total_in_bytes": 52598834194 - }, - "source_throttle_time_in_millis": 47860, - "target_throttle_time_in_millis": 5225, - "total_time_in_millis": 1430137 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569925088620, - "stop_time_in_millis": 1569926519419, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1430798, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72578240, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56001036546, - "reused_in_bytes": 0, - "total_in_bytes": 56001036546 - }, - "source_throttle_time_in_millis": 107646, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2096502 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299836, - "stop_time_in_millis": 1569729400704, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2100868, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76407060, - "total_time_in_millis": 2323 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52617642087, - "reused_in_bytes": 0, - "total_in_bytes": 52617642087 - }, - "source_throttle_time_in_millis": 263675, - "target_throttle_time_in_millis": 12346, - "total_time_in_millis": 1590405 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963422088, - "stop_time_in_millis": 1569965013177, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1591088, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72695786, - "total_time_in_millis": 673 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54649681317, - "reused_in_bytes": 0, - "total_in_bytes": 54649681317 - }, - "source_throttle_time_in_millis": 469067, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2413883 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729715685, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2415849, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76272449, - "total_time_in_millis": 1953 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51557865002, - "reused_in_bytes": 0, - "total_in_bytes": 51557865002 - }, - "source_throttle_time_in_millis": 5395649, - "target_throttle_time_in_millis": 4197313, - "total_time_in_millis": 9582962 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810313032, - "stop_time_in_millis": 1569819896884, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 9583852, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72625356, - "total_time_in_millis": 877 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51164566748, - "reused_in_bytes": 0, - "total_in_bytes": 51164566748 - }, - "source_throttle_time_in_millis": 3718486, - "target_throttle_time_in_millis": 4388073, - "total_time_in_millis": 8460969 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772290325, - "stop_time_in_millis": 1569780751989, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 8461663, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72024220, - "total_time_in_millis": 668 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55823811369, - "reused_in_bytes": 0, - "total_in_bytes": 55823811369 - }, - "source_throttle_time_in_millis": 65028, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1996282 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729298534, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1998698, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76358042, - "total_time_in_millis": 2405 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51797707309, - "reused_in_bytes": 0, - "total_in_bytes": 51797707309 - }, - "source_throttle_time_in_millis": 35097, - "target_throttle_time_in_millis": 53346, - "total_time_in_millis": 1610754 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569922805779, - "stop_time_in_millis": 1569924417229, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1611449, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72752891, - "total_time_in_millis": 684 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51164566748, - "reused_in_bytes": 0, - "total_in_bytes": 51164566748 - }, - "source_throttle_time_in_millis": 4619340, - "target_throttle_time_in_millis": 5130219, - "total_time_in_millis": 9272522 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827328509, - "stop_time_in_millis": 1569836601783, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 9273274, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72024220, - "total_time_in_millis": 736 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51282664657, - "reused_in_bytes": 0, - "total_in_bytes": 51282664657 - }, - "source_throttle_time_in_millis": 4173060, - "target_throttle_time_in_millis": 6134797, - "total_time_in_millis": 9286410 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801633165, - "stop_time_in_millis": 1569810920415, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9287250, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72317643, - "total_time_in_millis": 830 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51831964510, - "reused_in_bytes": 0, - "total_in_bytes": 51831964510 - }, - "source_throttle_time_in_millis": 42112, - "target_throttle_time_in_millis": 42615, - "total_time_in_millis": 1433960 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873918915, - "stop_time_in_millis": 1569875353531, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1434616, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72705110, - "total_time_in_millis": 644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52598834194, - "reused_in_bytes": 0, - "total_in_bytes": 52598834194 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 179688, - "total_time_in_millis": 1359506 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569911963226, - "stop_time_in_millis": 1569913323321, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1360095, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72578240, - "total_time_in_millis": 576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52006191311, - "reused_in_bytes": 0, - "total_in_bytes": 52006191311 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 37407, - "total_time_in_millis": 1456609 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935152701, - "stop_time_in_millis": 1569936609946, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1457245, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72739702, - "total_time_in_millis": 627 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51282664657, - "reused_in_bytes": 0, - "total_in_bytes": 51282664657 - }, - "source_throttle_time_in_millis": 3262845, - "target_throttle_time_in_millis": 4136419, - "total_time_in_millis": 8043674 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823879969, - "stop_time_in_millis": 1569831924367, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 8044397, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72317643, - "total_time_in_millis": 697 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51786716111, - "reused_in_bytes": 0, - "total_in_bytes": 51786716111 - }, - "source_throttle_time_in_millis": 1738639, - "target_throttle_time_in_millis": 3683012, - "total_time_in_millis": 5862836 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789496612, - "stop_time_in_millis": 1569795360654, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 5864042, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72820837, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55101250448, - "reused_in_bytes": 0, - "total_in_bytes": 55101250448 - }, - "source_throttle_time_in_millis": 94942, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2033602 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299836, - "stop_time_in_millis": 1569729335578, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2035742, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76399948, - "total_time_in_millis": 2127 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55865776642, - "reused_in_bytes": 0, - "total_in_bytes": 55865776642 - }, - "source_throttle_time_in_millis": 65793, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2025384 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569727299835, - "stop_time_in_millis": 1569729327980, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2028144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76288791, - "total_time_in_millis": 2749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51831964510, - "reused_in_bytes": 0, - "total_in_bytes": 51831964510 - }, - "source_throttle_time_in_millis": 65991, - "target_throttle_time_in_millis": 38853, - "total_time_in_millis": 1655685 - }, - "index_name": "om-iu-bro-2019.09.26-000987", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569862011278, - "stop_time_in_millis": 1569863667607, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1656328, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72705110, - "total_time_in_millis": 633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10 - }, - "index_name": ".tasks", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322749488, - "stop_time_in_millis": 1566322749752, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 171 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 4, - "reused": 0, - "total": 4 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 6408, - "reused_in_bytes": 0, - "total_in_bytes": 6408 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 106 - }, - "index_name": ".tasks", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569459606614, - "stop_time_in_millis": 1569459608004, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 1390, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 135 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 70 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898050, - "stop_time_in_millis": 1570042898171, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 161 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901987, - "stop_time_in_millis": 1570042904441, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 2454, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 69 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 237 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901987, - "stop_time_in_millis": 1570042905029, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 3041, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 61 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 74 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898056, - "stop_time_in_millis": 1570042898194, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 138, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 40 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 67 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898134, - "stop_time_in_millis": 1570042898267, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 133, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 27 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 74 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901984, - "stop_time_in_millis": 1570042903811, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1827, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 103 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 55 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898188, - "stop_time_in_millis": 1570042898292, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 27 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 241 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901987, - "stop_time_in_millis": 1570042904937, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 2949, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 94 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 213 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042902021, - "stop_time_in_millis": 1570042902583, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 124 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 126 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898056, - "stop_time_in_millis": 1570042898477, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 421, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 150 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 323 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042902004, - "stop_time_in_millis": 1570042902541, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 536, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 176 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 30 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898043, - "stop_time_in_millis": 1570042898312, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 231 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042902000, - "stop_time_in_millis": 1570042902451, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 451, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 137 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 350 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898057, - "stop_time_in_millis": 1570042898511, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 453, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 58 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 96 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898068, - "stop_time_in_millis": 1570042898220, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 151, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 248 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901985, - "stop_time_in_millis": 1570042904508, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 2523, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 64 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 19 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898045, - "stop_time_in_millis": 1570042898103, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 58, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 29 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 187 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901984, - "stop_time_in_millis": 1570042902459, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 64 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 64 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901986, - "stop_time_in_millis": 1570042902129, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 143, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 56 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 66 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898047, - "stop_time_in_millis": 1570042898179, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 132, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 41 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 87 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898057, - "stop_time_in_millis": 1570042898212, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 155, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 18 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 138 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901990, - "stop_time_in_millis": 1570042902320, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 330, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 149 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 219 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898061, - "stop_time_in_millis": 1570042900304, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 2243, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 137 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 103 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042902102, - "stop_time_in_millis": 1570042902621, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 518, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 336 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042902003, - "stop_time_in_millis": 1570042902831, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 827, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 277 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 141 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898072, - "stop_time_in_millis": 1570042898268, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 195, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 129 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901987, - "stop_time_in_millis": 1570042904341, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 2353, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1581 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 141 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898053, - "stop_time_in_millis": 1570042898263, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 65 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898046, - "stop_time_in_millis": 1570042898147, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 101, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 28 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 133 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901992, - "stop_time_in_millis": 1570042902760, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 768, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 80 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 156 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901990, - "stop_time_in_millis": 1570042902401, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 223 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 132 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898049, - "stop_time_in_millis": 1570042898265, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 216, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 141 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898181, - "stop_time_in_millis": 1570042898526, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 344, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 144 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 110 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901985, - "stop_time_in_millis": 1570042902825, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 839, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 44 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042901987, - "stop_time_in_millis": 1570042902113, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 126, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 149 - }, - "index_name": "om-iu-bro-2019.10.02-001013", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570042898045, - "stop_time_in_millis": 1570042898230, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 185, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 23 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 20 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696900, - "stop_time_in_millis": 1570026696959, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 58, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 23 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 116 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026702956, - "stop_time_in_millis": 1570026703146, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 189, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 54 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 34 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696932, - "stop_time_in_millis": 1570026696999, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 67, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 20 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 588 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700478, - "stop_time_in_millis": 1570026702232, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 1754, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 327 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 248 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700468, - "stop_time_in_millis": 1570026701487, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1019, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 134 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 91 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696915, - "stop_time_in_millis": 1570026697078, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 162, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 47 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 41 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696911, - "stop_time_in_millis": 1570026696985, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 74, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 19 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 553 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700488, - "stop_time_in_millis": 1570026701200, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 711, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 118 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 56 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696901, - "stop_time_in_millis": 1570026697000, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 98, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 23 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 127 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700475, - "stop_time_in_millis": 1570026700718, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 243, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 82 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 52 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696902, - "stop_time_in_millis": 1570026696981, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 79, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 17 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 119 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700471, - "stop_time_in_millis": 1570026701223, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 751, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 74 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 271 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700483, - "stop_time_in_millis": 1570026700948, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 465, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 133 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 14 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696900, - "stop_time_in_millis": 1570026696939, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 38, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 12 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 115 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700471, - "stop_time_in_millis": 1570026701222, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 751, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 81 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 41 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696924, - "stop_time_in_millis": 1570026697024, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 100, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 1 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 32 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696899, - "stop_time_in_millis": 1570026696973, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 73, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 23 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 149 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700474, - "stop_time_in_millis": 1570026700946, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 190 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 396 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700468, - "stop_time_in_millis": 1570026700995, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 527, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 69 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 46 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696898, - "stop_time_in_millis": 1570026696971, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 72, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 15 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 104 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700468, - "stop_time_in_millis": 1570026700869, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 401, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 255 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 204 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696922, - "stop_time_in_millis": 1570026697187, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 265, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 47 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696907, - "stop_time_in_millis": 1570026697031, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 115 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700492, - "stop_time_in_millis": 1570026700868, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 375, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 101 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 319 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700504, - "stop_time_in_millis": 1570026701055, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 550, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 130 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 45 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696915, - "stop_time_in_millis": 1570026697043, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 239 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700469, - "stop_time_in_millis": 1570026701394, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 924, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 118 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 58 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696947, - "stop_time_in_millis": 1570026697078, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 130, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 95 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700470, - "stop_time_in_millis": 1570026701216, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 745, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 46 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696955, - "stop_time_in_millis": 1570026697068, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 113, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 52 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 67 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696900, - "stop_time_in_millis": 1570026697023, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 122, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 38 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 240 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700469, - "stop_time_in_millis": 1570026701332, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 862, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 85 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 116 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700523, - "stop_time_in_millis": 1570026700727, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 204, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 64 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2056 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696893, - "stop_time_in_millis": 1570026700523, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 3630, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 65 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 119 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570026696899, - "stop_time_in_millis": 1570026697287, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 222 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 267 - }, - "index_name": "om-iu-bro-2019.10.02-001012", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026700589, - "stop_time_in_millis": 1570026701039, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 450, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 114 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 111 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892805, - "stop_time_in_millis": 1570009893829, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 1024, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 888 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 114 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009897564, - "stop_time_in_millis": 1570009898362, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 798, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 95 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 41 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892747, - "stop_time_in_millis": 1570009892838, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 91, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 516 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894683, - "stop_time_in_millis": 1570009895332, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 649, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 96 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894679, - "stop_time_in_millis": 1570009894873, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 58 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 108 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892736, - "stop_time_in_millis": 1570009894245, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1508, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 152 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894754, - "stop_time_in_millis": 1570009895182, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 427, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 222 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 23 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892738, - "stop_time_in_millis": 1570009892797, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 58, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 17 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 25 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892734, - "stop_time_in_millis": 1570009892800, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 65, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 132 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894681, - "stop_time_in_millis": 1570009894922, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 241, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 82 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 117 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894841, - "stop_time_in_millis": 1570009895113, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 271, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 69 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 25 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892735, - "stop_time_in_millis": 1570009892787, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 51, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 17 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 35 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892738, - "stop_time_in_millis": 1570009892839, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 100, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 271 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894688, - "stop_time_in_millis": 1570009895074, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 386, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 67 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 392 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894679, - "stop_time_in_millis": 1570009895261, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 582, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 147 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 36 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892788, - "stop_time_in_millis": 1570009892865, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 77, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 15 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 143 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894686, - "stop_time_in_millis": 1570009895013, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 141 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 205 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892742, - "stop_time_in_millis": 1570009894757, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 2015, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 50 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892759, - "stop_time_in_millis": 1570009892861, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 31 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 80 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894701, - "stop_time_in_millis": 1570009894935, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 233, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 64 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 73 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894735, - "stop_time_in_millis": 1570009894921, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 185, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 81 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 240 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892737, - "stop_time_in_millis": 1570009893228, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 491, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 231 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 29 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892735, - "stop_time_in_millis": 1570009892796, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 61, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 14 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 429 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894681, - "stop_time_in_millis": 1570009895814, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 1132, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 94 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 257 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894680, - "stop_time_in_millis": 1570009895729, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 1048, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 88 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 142 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892739, - "stop_time_in_millis": 1570009892980, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 240, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 58 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 35 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892738, - "stop_time_in_millis": 1570009892857, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 118, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 346 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894711, - "stop_time_in_millis": 1570009895324, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 613, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 189 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 192 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894761, - "stop_time_in_millis": 1570009895078, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 316, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 89 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 166 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892746, - "stop_time_in_millis": 1570009893050, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 303, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 35 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 41 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892736, - "stop_time_in_millis": 1570009892823, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 87, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 83 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894681, - "stop_time_in_millis": 1570009895434, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 753, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 102 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894682, - "stop_time_in_millis": 1570009894895, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 212, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 75 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 59 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892732, - "stop_time_in_millis": 1570009892849, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 117, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 40 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 29 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570009892733, - "stop_time_in_millis": 1570009892794, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 61, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2261 - }, - "index_name": "om-iu-bro-2019.10.02-001011", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009894687, - "stop_time_in_millis": 1570009897585, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 2897, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 98 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496279, - "stop_time_in_millis": 1569992496507, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 228, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 81 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 243 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992504389, - "stop_time_in_millis": 1569992505069, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 680, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 380 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4165 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496278, - "stop_time_in_millis": 1569992500527, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 4248, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 68 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 290 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502197, - "stop_time_in_millis": 1569992502931, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 733, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 302 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 92 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502170, - "stop_time_in_millis": 1569992503558, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1253 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 486 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496301, - "stop_time_in_millis": 1569992496890, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 589, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 469 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502181, - "stop_time_in_millis": 1569992503424, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 1242, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 153 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 118 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496285, - "stop_time_in_millis": 1569992496479, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 79 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496254, - "stop_time_in_millis": 1569992496461, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 206, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 47 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 200 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502166, - "stop_time_in_millis": 1569992503000, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 833, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 93 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 55 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496279, - "stop_time_in_millis": 1569992496440, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 160, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 25 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 373 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502182, - "stop_time_in_millis": 1569992502891, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 248 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 215 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502172, - "stop_time_in_millis": 1569992502524, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 351, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 85 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 135 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496283, - "stop_time_in_millis": 1569992496500, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 217, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 35 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 225 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502168, - "stop_time_in_millis": 1569992502520, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 352, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 88 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 78 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496360, - "stop_time_in_millis": 1569992496493, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 133, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 19 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 82 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496268, - "stop_time_in_millis": 1569992496410, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 141, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 101 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502171, - "stop_time_in_millis": 1569992502446, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 275, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 133 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 58 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496263, - "stop_time_in_millis": 1569992496367, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 31 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 242 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502166, - "stop_time_in_millis": 1569992503160, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 994, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 87 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 352 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496276, - "stop_time_in_millis": 1569992496724, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 448, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 394 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502289, - "stop_time_in_millis": 1569992503067, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 777, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 318 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 327 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502443, - "stop_time_in_millis": 1569992503047, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 604, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 190 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 334 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496275, - "stop_time_in_millis": 1569992498686, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 2411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 231 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 288 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502169, - "stop_time_in_millis": 1569992503875, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 1706, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 270 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 50 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496267, - "stop_time_in_millis": 1569992496541, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 274, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 106 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496268, - "stop_time_in_millis": 1569992496588, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 166 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 380 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502346, - "stop_time_in_millis": 1569992503484, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 1138, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 144 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 192 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502170, - "stop_time_in_millis": 1569992502766, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 595, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 350 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 51 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496271, - "stop_time_in_millis": 1569992496402, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 131, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 67 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 149 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502317, - "stop_time_in_millis": 1569992503215, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 898, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1008 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496263, - "stop_time_in_millis": 1569992502383, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 6120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 298 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502169, - "stop_time_in_millis": 1569992504097, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 1928, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 63 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496269, - "stop_time_in_millis": 1569992496395, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 126, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 36 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 175 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569992502312, - "stop_time_in_millis": 1569992503076, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 763, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 226 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 111 - }, - "index_name": "om-iu-bro-2019.10.02-001010", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569992496556, - "stop_time_in_millis": 1569992496790, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 234, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 47 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 116, - "reused": 0, - "total": 116 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 571187149, - "reused_in_bytes": 0, - "total_in_bytes": 571187149 - }, - "source_throttle_time_in_millis": 1013, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 25512 - }, - "index_name": "om-iu-suricata-2019.09.08-000097", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568203050816, - "stop_time_in_millis": 1568203076932, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 26116, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 139187, - "total_time_in_millis": 85 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 568770485, - "reused_in_bytes": 0, - "total_in_bytes": 568770485 - }, - "source_throttle_time_in_millis": 19059, - "target_throttle_time_in_millis": 77376, - "total_time_in_millis": 87859 - }, - "index_name": "om-iu-suricata-2019.09.08-000097", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782925246, - "stop_time_in_millis": 1569783013177, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 87931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 139187, - "total_time_in_millis": 47 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 85, - "reused": 0, - "total": 85 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 569182860, - "reused_in_bytes": 0, - "total_in_bytes": 569182860 - }, - "source_throttle_time_in_millis": 425, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 21212 - }, - "index_name": "om-iu-suricata-2019.09.08-000097", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568203050817, - "stop_time_in_millis": 1568203072122, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 21304, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 138855, - "total_time_in_millis": 80 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 566865657, - "reused_in_bytes": 0, - "total_in_bytes": 566865657 - }, - "source_throttle_time_in_millis": 58245, - "target_throttle_time_in_millis": 59087, - "total_time_in_millis": 128318 - }, - "index_name": "om-iu-suricata-2019.09.08-000097", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568884884374, - "stop_time_in_millis": 1568885012812, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 128437, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 138855, - "total_time_in_millis": 88 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 714954947, - "reused_in_bytes": 0, - "total_in_bytes": 714954947 - }, - "source_throttle_time_in_millis": 20732, - "target_throttle_time_in_millis": 23883, - "total_time_in_millis": 60804 - }, - "index_name": "om-iu-suricata-2019.09.06-000095", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568904072929, - "stop_time_in_millis": 1568904134317, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 61387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 171723, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 714954947, - "reused_in_bytes": 0, - "total_in_bytes": 714954947 - }, - "source_throttle_time_in_millis": 45614, - "target_throttle_time_in_millis": 41023, - "total_time_in_millis": 103250 - }, - "index_name": "om-iu-suricata-2019.09.06-000095", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320045, - "stop_time_in_millis": 1569832423355, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 103309, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 171723, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 713598581, - "reused_in_bytes": 0, - "total_in_bytes": 713598581 - }, - "source_throttle_time_in_millis": 87423, - "target_throttle_time_in_millis": 67614, - "total_time_in_millis": 151950 - }, - "index_name": "om-iu-suricata-2019.09.06-000095", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817955392, - "stop_time_in_millis": 1569818107418, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 152025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 170963, - "total_time_in_millis": 64 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 713598581, - "reused_in_bytes": 0, - "total_in_bytes": 713598581 - }, - "source_throttle_time_in_millis": 51969, - "target_throttle_time_in_millis": 50878, - "total_time_in_millis": 108130 - }, - "index_name": "om-iu-suricata-2019.09.06-000095", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867308, - "stop_time_in_millis": 1569835977010, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 109701, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 170963, - "total_time_in_millis": 35 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 729806185, - "reused_in_bytes": 0, - "total_in_bytes": 729806185 - }, - "source_throttle_time_in_millis": 53133, - "target_throttle_time_in_millis": 82088, - "total_time_in_millis": 127457 - }, - "index_name": "om-iu-suricata-2019.09.19-000108", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822899586, - "stop_time_in_millis": 1569823027109, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 127522, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 188805, - "total_time_in_millis": 54 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 730169315, - "reused_in_bytes": 0, - "total_in_bytes": 730169315 - }, - "source_throttle_time_in_millis": 61899, - "target_throttle_time_in_millis": 47665, - "total_time_in_millis": 119516 - }, - "index_name": "om-iu-suricata-2019.09.19-000108", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784949156, - "stop_time_in_millis": 1569785069720, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 120564, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 188955, - "total_time_in_millis": 39 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 94, - "reused": 0, - "total": 94 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 733853027, - "reused_in_bytes": 0, - "total_in_bytes": 733853027 - }, - "source_throttle_time_in_millis": 631, - "target_throttle_time_in_millis": 119, - "total_time_in_millis": 54233 - }, - "index_name": "om-iu-suricata-2019.09.19-000108", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160306251, - "stop_time_in_millis": 1569160361092, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 54841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 188805, - "total_time_in_millis": 84 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 730169315, - "reused_in_bytes": 0, - "total_in_bytes": 730169315 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 3481, - "total_time_in_millis": 22275 - }, - "index_name": "om-iu-suricata-2019.09.19-000108", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976960793, - "stop_time_in_millis": 1569976983115, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 22322, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 188955, - "total_time_in_millis": 38 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 617410523, - "reused_in_bytes": 0, - "total_in_bytes": 617410523 - }, - "source_throttle_time_in_millis": 74392, - "target_throttle_time_in_millis": 10068, - "total_time_in_millis": 105125 - }, - "index_name": "om-iu-suricata-2019.09.18-000107", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811115572, - "stop_time_in_millis": 1569811221328, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 105756, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 155137, - "total_time_in_millis": 80 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 614598253, - "reused_in_bytes": 0, - "total_in_bytes": 614598253 - }, - "source_throttle_time_in_millis": 300, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 18080 - }, - "index_name": "om-iu-suricata-2019.09.18-000107", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978061859, - "stop_time_in_millis": 1569978079981, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 18121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 154587, - "total_time_in_millis": 30 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 614598253, - "reused_in_bytes": 0, - "total_in_bytes": 614598253 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 3184, - "total_time_in_millis": 19676 - }, - "index_name": "om-iu-suricata-2019.09.18-000107", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027184518, - "stop_time_in_millis": 1570027204247, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 19728, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 154587, - "total_time_in_millis": 34 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 31 - }, - "index_name": "om-iu-suricata-2019.09.18-000107", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569072888319, - "stop_time_in_millis": 1569072888450, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 130, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 76 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50760284897, - "reused_in_bytes": 0, - "total_in_bytes": 50760284897 - }, - "source_throttle_time_in_millis": 4766540, - "target_throttle_time_in_millis": 4799580, - "total_time_in_millis": 9107043 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867300, - "stop_time_in_millis": 1569844976535, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 9109234, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72801186, - "total_time_in_millis": 649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53106105410, - "reused_in_bytes": 0, - "total_in_bytes": 53106105410 - }, - "source_throttle_time_in_millis": 70205, - "target_throttle_time_in_millis": 51, - "total_time_in_millis": 2179873 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187773, - "stop_time_in_millis": 1569458370159, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2182385, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74659079, - "total_time_in_millis": 1981 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50429931898, - "reused_in_bytes": 0, - "total_in_bytes": 50429931898 - }, - "source_throttle_time_in_millis": 5114543, - "target_throttle_time_in_millis": 4565246, - "total_time_in_millis": 9564516 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813019642, - "stop_time_in_millis": 1569822585030, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9565388, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72782884, - "total_time_in_millis": 839 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50748602695, - "reused_in_bytes": 0, - "total_in_bytes": 50748602695 - }, - "source_throttle_time_in_millis": 3514235, - "target_throttle_time_in_millis": 4569204, - "total_time_in_millis": 8666938 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827328492, - "stop_time_in_millis": 1569835996184, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 8667691, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72753421, - "total_time_in_millis": 722 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52897905249, - "reused_in_bytes": 0, - "total_in_bytes": 52897905249 - }, - "source_throttle_time_in_millis": 68261, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2200678 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187775, - "stop_time_in_millis": 1569458390768, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2202992, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74569970, - "total_time_in_millis": 1791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50436412764, - "reused_in_bytes": 0, - "total_in_bytes": 50436412764 - }, - "source_throttle_time_in_millis": 94665, - "target_throttle_time_in_millis": 75329, - "total_time_in_millis": 1712918 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884428389, - "stop_time_in_millis": 1569886141927, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1713538, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72780940, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52255740277, - "reused_in_bytes": 0, - "total_in_bytes": 52255740277 - }, - "source_throttle_time_in_millis": 65577, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2141083 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187775, - "stop_time_in_millis": 1569458334431, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2146656, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74690761, - "total_time_in_millis": 2471 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50698176878, - "reused_in_bytes": 0, - "total_in_bytes": 50698176878 - }, - "source_throttle_time_in_millis": 4798762, - "target_throttle_time_in_millis": 5459693, - "total_time_in_millis": 9790687 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794242772, - "stop_time_in_millis": 1569804034247, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 9791474, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72796526, - "total_time_in_millis": 776 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53116951894, - "reused_in_bytes": 0, - "total_in_bytes": 53116951894 - }, - "source_throttle_time_in_millis": 66796, - "target_throttle_time_in_millis": 92, - "total_time_in_millis": 2194468 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187775, - "stop_time_in_millis": 1569458386828, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2199053, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74636454, - "total_time_in_millis": 3057 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52265089781, - "reused_in_bytes": 0, - "total_in_bytes": 52265089781 - }, - "source_throttle_time_in_millis": 61783, - "target_throttle_time_in_millis": 54, - "total_time_in_millis": 2476557 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187788, - "stop_time_in_millis": 1569458667252, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2479464, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74815185, - "total_time_in_millis": 2889 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50748602695, - "reused_in_bytes": 0, - "total_in_bytes": 50748602695 - }, - "source_throttle_time_in_millis": 4632644, - "target_throttle_time_in_millis": 904947, - "total_time_in_millis": 6974044 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831547862, - "stop_time_in_millis": 1569838522576, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 6974713, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72753421, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4741 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569458392283, - "stop_time_in_millis": 1569458397868, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 5585, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 788 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51449427914, - "reused_in_bytes": 0, - "total_in_bytes": 51449427914 - }, - "source_throttle_time_in_millis": 807434, - "target_throttle_time_in_millis": 2197842, - "total_time_in_millis": 3930178 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706963, - "stop_time_in_millis": 1569842637885, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 3930922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72734894, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53063041734, - "reused_in_bytes": 0, - "total_in_bytes": 53063041734 - }, - "source_throttle_time_in_millis": 89207, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2246820 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187774, - "stop_time_in_millis": 1569458436452, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2248677, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74673103, - "total_time_in_millis": 1839 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52467836134, - "reused_in_bytes": 0, - "total_in_bytes": 52467836134 - }, - "source_throttle_time_in_millis": 66187, - "target_throttle_time_in_millis": 104, - "total_time_in_millis": 2251167 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187774, - "stop_time_in_millis": 1569458446318, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2258543, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74745250, - "total_time_in_millis": 2759 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50712230413, - "reused_in_bytes": 0, - "total_in_bytes": 50712230413 - }, - "source_throttle_time_in_millis": 94629, - "target_throttle_time_in_millis": 284, - "total_time_in_millis": 1358859 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569939115285, - "stop_time_in_millis": 1569940474800, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1359514, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72792677, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50302381525, - "reused_in_bytes": 0, - "total_in_bytes": 50302381525 - }, - "source_throttle_time_in_millis": 3114876, - "target_throttle_time_in_millis": 4695055, - "total_time_in_millis": 7765746 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821535809, - "stop_time_in_millis": 1569829302737, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 7766927, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72689546, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51295227443, - "reused_in_bytes": 0, - "total_in_bytes": 51295227443 - }, - "source_throttle_time_in_millis": 1382720, - "target_throttle_time_in_millis": 5449921, - "total_time_in_millis": 7013967 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813385587, - "stop_time_in_millis": 1569820400495, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 7014908, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72754234, - "total_time_in_millis": 925 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52097586675, - "reused_in_bytes": 0, - "total_in_bytes": 52097586675 - }, - "source_throttle_time_in_millis": 50679, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3973955 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187774, - "stop_time_in_millis": 1569460164704, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 3976929, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74711755, - "total_time_in_millis": 2444 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52477891916, - "reused_in_bytes": 0, - "total_in_bytes": 52477891916 - }, - "source_throttle_time_in_millis": 35160, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2449693 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187774, - "stop_time_in_millis": 1569458639979, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2452205, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74685681, - "total_time_in_millis": 2498 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50631369613, - "reused_in_bytes": 0, - "total_in_bytes": 50631369613 - }, - "source_throttle_time_in_millis": 207465, - "target_throttle_time_in_millis": 374152, - "total_time_in_millis": 1899581 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756263581, - "stop_time_in_millis": 1569758164389, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1900807, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72774719, - "total_time_in_millis": 709 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52301615283, - "reused_in_bytes": 0, - "total_in_bytes": 52301615283 - }, - "source_throttle_time_in_millis": 62599, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2217790 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187773, - "stop_time_in_millis": 1569458408543, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2220770, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74609368, - "total_time_in_millis": 2454 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53207112213, - "reused_in_bytes": 0, - "total_in_bytes": 53207112213 - }, - "source_throttle_time_in_millis": 68030, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2181918 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187774, - "stop_time_in_millis": 1569458372751, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2184976, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74610490, - "total_time_in_millis": 3028 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52444040606, - "reused_in_bytes": 0, - "total_in_bytes": 52444040606 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 164, - "total_time_in_millis": 1485663 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569458632671, - "stop_time_in_millis": 1569460121725, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1489054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74658478, - "total_time_in_millis": 3368 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50616113286, - "reused_in_bytes": 0, - "total_in_bytes": 50616113286 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 109780, - "total_time_in_millis": 1260083 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889440539, - "stop_time_in_millis": 1569890701275, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1260736, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72705201, - "total_time_in_millis": 645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51449427914, - "reused_in_bytes": 0, - "total_in_bytes": 51449427914 - }, - "source_throttle_time_in_millis": 2730613, - "target_throttle_time_in_millis": 3308130, - "total_time_in_millis": 6502511 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432777, - "stop_time_in_millis": 1569834936104, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 6503327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72734894, - "total_time_in_millis": 802 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52650181464, - "reused_in_bytes": 0, - "total_in_bytes": 52650181464 - }, - "source_throttle_time_in_millis": 62705, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 2163008 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187773, - "stop_time_in_millis": 1569458353681, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2165908, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74852670, - "total_time_in_millis": 2881 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50523197300, - "reused_in_bytes": 0, - "total_in_bytes": 50523197300 - }, - "source_throttle_time_in_millis": 3788981, - "target_throttle_time_in_millis": 3990985, - "total_time_in_millis": 7848319 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432718, - "stop_time_in_millis": 1569836282542, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 7849824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72784505, - "total_time_in_millis": 860 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52444040609, - "reused_in_bytes": 0, - "total_in_bytes": 52444040609 - }, - "source_throttle_time_in_millis": 48357, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2433363 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187775, - "stop_time_in_millis": 1569458627326, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2439550, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74658478, - "total_time_in_millis": 3141 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52238324075, - "reused_in_bytes": 0, - "total_in_bytes": 52238324075 - }, - "source_throttle_time_in_millis": 54194, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4113785 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187775, - "stop_time_in_millis": 1569460305693, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 4117918, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74789889, - "total_time_in_millis": 2582 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51431408503, - "reused_in_bytes": 0, - "total_in_bytes": 51431408503 - }, - "source_throttle_time_in_millis": 4360474, - "target_throttle_time_in_millis": 3679337, - "total_time_in_millis": 8614586 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330117, - "stop_time_in_millis": 1569829946150, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 8616032, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72785809, - "total_time_in_millis": 1430 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50750680287, - "reused_in_bytes": 0, - "total_in_bytes": 50750680287 - }, - "source_throttle_time_in_millis": 30456, - "target_throttle_time_in_millis": 43723, - "total_time_in_millis": 1250070 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569910211483, - "stop_time_in_millis": 1569911462121, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1250638, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72798997, - "total_time_in_millis": 559 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52480107574, - "reused_in_bytes": 0, - "total_in_bytes": 52480107574 - }, - "source_throttle_time_in_millis": 66529, - "target_throttle_time_in_millis": 61, - "total_time_in_millis": 2246186 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187774, - "stop_time_in_millis": 1569458437042, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2249267, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74754885, - "total_time_in_millis": 2561 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51396185620, - "reused_in_bytes": 0, - "total_in_bytes": 51396185620 - }, - "source_throttle_time_in_millis": 3699114, - "target_throttle_time_in_millis": 595531, - "total_time_in_millis": 6103873 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830770144, - "stop_time_in_millis": 1569836875345, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 6105200, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72795439, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53207112213, - "reused_in_bytes": 0, - "total_in_bytes": 53207112213 - }, - "source_throttle_time_in_millis": 64782, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2181915 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569456187775, - "stop_time_in_millis": 1569458373137, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2185362, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74610490, - "total_time_in_millis": 3418 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50698176878, - "reused_in_bytes": 0, - "total_in_bytes": 50698176878 - }, - "source_throttle_time_in_millis": 466450, - "target_throttle_time_in_millis": 31605, - "total_time_in_millis": 2152541 - }, - "index_name": "om-iu-bro-2019.09.23-000972", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569950177252, - "stop_time_in_millis": 1569952330527, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2153274, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72796526, - "total_time_in_millis": 721 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52685351256, - "reused_in_bytes": 0, - "total_in_bytes": 52685351256 - }, - "source_throttle_time_in_millis": 4210440, - "target_throttle_time_in_millis": 1519946, - "total_time_in_millis": 7600189 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821535804, - "stop_time_in_millis": 1569829136763, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 7600958, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73282247, - "total_time_in_millis": 745 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52230412976, - "reused_in_bytes": 0, - "total_in_bytes": 52230412976 - }, - "source_throttle_time_in_millis": 5157963, - "target_throttle_time_in_millis": 4503143, - "total_time_in_millis": 9455399 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821059465, - "stop_time_in_millis": 1569830515805, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 9456340, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728455, - "total_time_in_millis": 852 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55082660199, - "reused_in_bytes": 0, - "total_in_bytes": 55082660199 - }, - "source_throttle_time_in_millis": 53945, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2450126 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304386, - "stop_time_in_millis": 1569441757497, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2453110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77003617, - "total_time_in_millis": 2455 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55566648568, - "reused_in_bytes": 0, - "total_in_bytes": 55566648568 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 204, - "total_time_in_millis": 1559370 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569441747602, - "stop_time_in_millis": 1569443309419, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1561816, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76561829, - "total_time_in_millis": 2419 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52685351256, - "reused_in_bytes": 0, - "total_in_bytes": 52685351256 - }, - "source_throttle_time_in_millis": 140709, - "target_throttle_time_in_millis": 112478, - "total_time_in_millis": 2051959 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945574437, - "stop_time_in_millis": 1569947627100, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2052662, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73282247, - "total_time_in_millis": 691 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52121532657, - "reused_in_bytes": 0, - "total_in_bytes": 52121532657 - }, - "source_throttle_time_in_millis": 163642, - "target_throttle_time_in_millis": 71948, - "total_time_in_millis": 1405812 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569905270161, - "stop_time_in_millis": 1569906676597, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1406435, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73791666, - "total_time_in_millis": 615 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54425283696, - "reused_in_bytes": 0, - "total_in_bytes": 54425283696 - }, - "source_throttle_time_in_millis": 53110, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 4207154 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304391, - "stop_time_in_millis": 1569443513957, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 4209565, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76340209, - "total_time_in_millis": 2392 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55483797566, - "reused_in_bytes": 0, - "total_in_bytes": 55483797566 - }, - "source_throttle_time_in_millis": 72579, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2348498 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304387, - "stop_time_in_millis": 1569441655380, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2350993, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76408330, - "total_time_in_millis": 2473 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51384188938, - "reused_in_bytes": 0, - "total_in_bytes": 51384188938 - }, - "source_throttle_time_in_millis": 4519561, - "target_throttle_time_in_millis": 2966112, - "total_time_in_millis": 8141062 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677471, - "stop_time_in_millis": 1569834819484, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 8142013, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73030478, - "total_time_in_millis": 923 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52361663929, - "reused_in_bytes": 0, - "total_in_bytes": 52361663929 - }, - "source_throttle_time_in_millis": 6877002, - "target_throttle_time_in_millis": 3340939, - "total_time_in_millis": 10715403 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337286, - "stop_time_in_millis": 1569809054594, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 10717307, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73733150, - "total_time_in_millis": 862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52155433394, - "reused_in_bytes": 0, - "total_in_bytes": 52155433394 - }, - "source_throttle_time_in_millis": 36234, - "target_throttle_time_in_millis": 99, - "total_time_in_millis": 1431271 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920450593, - "stop_time_in_millis": 1569921882515, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1431922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73488399, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52306612290, - "reused_in_bytes": 0, - "total_in_bytes": 52306612290 - }, - "source_throttle_time_in_millis": 3140318, - "target_throttle_time_in_millis": 2479872, - "total_time_in_millis": 6366091 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575016, - "stop_time_in_millis": 1569833942121, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6367104, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73583246, - "total_time_in_millis": 938 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52759520713, - "reused_in_bytes": 0, - "total_in_bytes": 52759520713 - }, - "source_throttle_time_in_millis": 5459785, - "target_throttle_time_in_millis": 2982360, - "total_time_in_millis": 9306770 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795355005, - "stop_time_in_millis": 1569804663157, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9308152, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73121806, - "total_time_in_millis": 853 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52238967461, - "reused_in_bytes": 0, - "total_in_bytes": 52238967461 - }, - "source_throttle_time_in_millis": 2555225, - "target_throttle_time_in_millis": 2481714, - "total_time_in_millis": 5542341 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320005, - "stop_time_in_millis": 1569837863050, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 5543044, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73764089, - "total_time_in_millis": 694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5453 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569441575829, - "stop_time_in_millis": 1569441582196, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6367, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 842 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54893323163, - "reused_in_bytes": 0, - "total_in_bytes": 54893323163 - }, - "source_throttle_time_in_millis": 80270, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2309318 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304385, - "stop_time_in_millis": 1569441616702, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2312316, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76637797, - "total_time_in_millis": 2479 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51622249117, - "reused_in_bytes": 0, - "total_in_bytes": 51622249117 - }, - "source_throttle_time_in_millis": 4689, - "target_throttle_time_in_millis": 292437, - "total_time_in_millis": 1601284 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954432450, - "stop_time_in_millis": 1569956034483, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1602033, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73148290, - "total_time_in_millis": 739 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4887 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569441689199, - "stop_time_in_millis": 1569441694962, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 5762, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 831 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52291015120, - "reused_in_bytes": 0, - "total_in_bytes": 52291015120 - }, - "source_throttle_time_in_millis": 4556168, - "target_throttle_time_in_millis": 4843281, - "total_time_in_millis": 9193398 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813385614, - "stop_time_in_millis": 1569822579837, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 9194222, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72572769, - "total_time_in_millis": 808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52691101806, - "reused_in_bytes": 0, - "total_in_bytes": 52691101806 - }, - "source_throttle_time_in_millis": 4307711, - "target_throttle_time_in_millis": 4093324, - "total_time_in_millis": 8425243 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772928731, - "stop_time_in_millis": 1569781355580, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 8426849, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73246840, - "total_time_in_millis": 1026 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55617179329, - "reused_in_bytes": 0, - "total_in_bytes": 55617179329 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 246, - "total_time_in_millis": 1303604 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569441740310, - "stop_time_in_millis": 1569443046216, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1305905, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76285379, - "total_time_in_millis": 2286 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55177893897, - "reused_in_bytes": 0, - "total_in_bytes": 55177893897 - }, - "source_throttle_time_in_millis": 67105, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2296751 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304387, - "stop_time_in_millis": 1569441604158, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2299771, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77033718, - "total_time_in_millis": 2496 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55062696892, - "reused_in_bytes": 0, - "total_in_bytes": 55062696892 - }, - "source_throttle_time_in_millis": 68349, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2390495 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304385, - "stop_time_in_millis": 1569441697970, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2393584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76615440, - "total_time_in_millis": 2562 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54048518705, - "reused_in_bytes": 0, - "total_in_bytes": 54048518705 - }, - "source_throttle_time_in_millis": 47867, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 4984298 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304436, - "stop_time_in_millis": 1569444292442, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 4988005, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75988947, - "total_time_in_millis": 3679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569441655416, - "stop_time_in_millis": 1569441656330, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 913, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 871 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4977 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569441616746, - "stop_time_in_millis": 1569441622629, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 5882, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 858 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52450362811, - "reused_in_bytes": 0, - "total_in_bytes": 52450362811 - }, - "source_throttle_time_in_millis": 61830, - "target_throttle_time_in_millis": 295285, - "total_time_in_millis": 1760120 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973326864, - "stop_time_in_millis": 1569975087702, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1760838, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73767325, - "total_time_in_millis": 701 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52361663929, - "reused_in_bytes": 0, - "total_in_bytes": 52361663929 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 44387, - "total_time_in_millis": 1389327 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930797724, - "stop_time_in_millis": 1569932187665, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1389940, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73733150, - "total_time_in_millis": 604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52282635818, - "reused_in_bytes": 0, - "total_in_bytes": 52282635818 - }, - "source_throttle_time_in_millis": 4480947, - "target_throttle_time_in_millis": 5143496, - "total_time_in_millis": 9552178 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772805630, - "stop_time_in_millis": 1569782358788, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 9553157, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73725199, - "total_time_in_millis": 961 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52820369290, - "reused_in_bytes": 0, - "total_in_bytes": 52820369290 - }, - "source_throttle_time_in_millis": 138759, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 1374115 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899653843, - "stop_time_in_millis": 1569901028557, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1374714, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73489835, - "total_time_in_millis": 587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52264761548, - "reused_in_bytes": 0, - "total_in_bytes": 52264761548 - }, - "source_throttle_time_in_millis": 5786367, - "target_throttle_time_in_millis": 2696887, - "total_time_in_millis": 9546073 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805854273, - "stop_time_in_millis": 1569815401184, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9546910, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73700057, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55219651112, - "reused_in_bytes": 0, - "total_in_bytes": 55219651112 - }, - "source_throttle_time_in_millis": 61737, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2375820 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569439304387, - "stop_time_in_millis": 1569441683142, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2378755, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76908509, - "total_time_in_millis": 2309 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52230412976, - "reused_in_bytes": 0, - "total_in_bytes": 52230412976 - }, - "source_throttle_time_in_millis": 6081148, - "target_throttle_time_in_millis": 1742846, - "total_time_in_millis": 9017610 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812040421, - "stop_time_in_millis": 1569821058841, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 9018419, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728455, - "total_time_in_millis": 785 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52121532657, - "reused_in_bytes": 0, - "total_in_bytes": 52121532657 - }, - "source_throttle_time_in_millis": 5956332, - "target_throttle_time_in_millis": 3310735, - "total_time_in_millis": 9562266 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603841, - "stop_time_in_millis": 1569834167689, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 9563848, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73791666, - "total_time_in_millis": 761 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52155433394, - "reused_in_bytes": 0, - "total_in_bytes": 52155433394 - }, - "source_throttle_time_in_millis": 4373158, - "target_throttle_time_in_millis": 2813139, - "total_time_in_millis": 7975585 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827718542, - "stop_time_in_millis": 1569835694940, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 7976397, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73488399, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52691101806, - "reused_in_bytes": 0, - "total_in_bytes": 52691101806 - }, - "source_throttle_time_in_millis": 63655, - "target_throttle_time_in_millis": 1690956, - "total_time_in_millis": 2881620 - }, - "index_name": "om-iu-bro-2019.09.23-000971", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838707227, - "stop_time_in_millis": 1569841589586, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2882358, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73246840, - "total_time_in_millis": 731 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53532378644, - "reused_in_bytes": 0, - "total_in_bytes": 53532378644 - }, - "source_throttle_time_in_millis": 72994, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2194235 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423536077, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2196828, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76626807, - "total_time_in_millis": 2073 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50942018271, - "reused_in_bytes": 0, - "total_in_bytes": 50942018271 - }, - "source_throttle_time_in_millis": 30714, - "target_throttle_time_in_millis": 2277, - "total_time_in_millis": 1336789 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569894987251, - "stop_time_in_millis": 1569896324682, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1337430, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74675132, - "total_time_in_millis": 631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51587653223, - "reused_in_bytes": 0, - "total_in_bytes": 51587653223 - }, - "source_throttle_time_in_millis": 6441391, - "target_throttle_time_in_millis": 1783333, - "total_time_in_millis": 9570310 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783806449, - "stop_time_in_millis": 1569793378062, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9571612, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74494723, - "total_time_in_millis": 759 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50204339872, - "reused_in_bytes": 0, - "total_in_bytes": 50204339872 - }, - "source_throttle_time_in_millis": 19843, - "target_throttle_time_in_millis": 1626980, - "total_time_in_millis": 2641797 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569578768613, - "stop_time_in_millis": 1569581411121, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2642508, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74066940, - "total_time_in_millis": 698 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52787722763, - "reused_in_bytes": 0, - "total_in_bytes": 52787722763 - }, - "source_throttle_time_in_millis": 69005, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2143556 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423485782, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2146532, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76602691, - "total_time_in_millis": 2958 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51303279862, - "reused_in_bytes": 0, - "total_in_bytes": 51303279862 - }, - "source_throttle_time_in_millis": 263183, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1627031 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569926355142, - "stop_time_in_millis": 1569927982840, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1627698, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74803293, - "total_time_in_millis": 657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51199333654, - "reused_in_bytes": 0, - "total_in_bytes": 51199333654 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 126376, - "total_time_in_millis": 1265556 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906764348, - "stop_time_in_millis": 1569908030582, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1266233, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74808276, - "total_time_in_millis": 669 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51379034659, - "reused_in_bytes": 0, - "total_in_bytes": 51379034659 - }, - "source_throttle_time_in_millis": 93668, - "target_throttle_time_in_millis": 6476606, - "total_time_in_millis": 6425293 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569785709240, - "stop_time_in_millis": 1569792135335, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6426095, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74050149, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51379034659, - "reused_in_bytes": 0, - "total_in_bytes": 51379034659 - }, - "source_throttle_time_in_millis": 14820, - "target_throttle_time_in_millis": 541, - "total_time_in_millis": 1207585 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860189998, - "stop_time_in_millis": 1569861398248, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1208249, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74050149, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53185463707, - "reused_in_bytes": 0, - "total_in_bytes": 53185463707 - }, - "source_throttle_time_in_millis": 67477, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2609073 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339258, - "stop_time_in_millis": 1569423952095, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2612836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77006967, - "total_time_in_millis": 3238 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51041080817, - "reused_in_bytes": 0, - "total_in_bytes": 51041080817 - }, - "source_throttle_time_in_millis": 92986, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1380776 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873699187, - "stop_time_in_millis": 1569875080586, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1381399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74737122, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50903144235, - "reused_in_bytes": 0, - "total_in_bytes": 50903144235 - }, - "source_throttle_time_in_millis": 3724375, - "target_throttle_time_in_millis": 2161005, - "total_time_in_millis": 6671140 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575063, - "stop_time_in_millis": 1569834247107, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6672043, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74832570, - "total_time_in_millis": 895 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51091643506, - "reused_in_bytes": 0, - "total_in_bytes": 51091643506 - }, - "source_throttle_time_in_millis": 31757, - "target_throttle_time_in_millis": 49826, - "total_time_in_millis": 1276990 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930022044, - "stop_time_in_millis": 1569931299636, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1277592, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74766858, - "total_time_in_millis": 593 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51493057411, - "reused_in_bytes": 0, - "total_in_bytes": 51493057411 - }, - "source_throttle_time_in_millis": 167592, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1793815 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940078410, - "stop_time_in_millis": 1569941872855, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1794445, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74194979, - "total_time_in_millis": 621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49588784724, - "reused_in_bytes": 0, - "total_in_bytes": 49588784724 - }, - "source_throttle_time_in_millis": 3215417, - "target_throttle_time_in_millis": 1099223, - "total_time_in_millis": 5605131 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831079304, - "stop_time_in_millis": 1569836685229, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 5605925, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73016019, - "total_time_in_millis": 757 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52961491642, - "reused_in_bytes": 0, - "total_in_bytes": 52961491642 - }, - "source_throttle_time_in_millis": 66880, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2194187 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423535725, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2196476, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76843179, - "total_time_in_millis": 1752 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 261, - "reused": 0, - "total": 261 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53692074982, - "reused_in_bytes": 0, - "total_in_bytes": 53692074982 - }, - "source_throttle_time_in_millis": 67646, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2273722 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423615453, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2276204, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76822343, - "total_time_in_millis": 1957 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51548929722, - "reused_in_bytes": 0, - "total_in_bytes": 51548929722 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 1077185, - "total_time_in_millis": 2257534 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569563056667, - "stop_time_in_millis": 1569565314903, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2258236, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74211501, - "total_time_in_millis": 689 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52787722763, - "reused_in_bytes": 0, - "total_in_bytes": 52787722763 - }, - "source_throttle_time_in_millis": 70771, - "target_throttle_time_in_millis": 63, - "total_time_in_millis": 2143558 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423485793, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2146543, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76602691, - "total_time_in_millis": 2973 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53532378644, - "reused_in_bytes": 0, - "total_in_bytes": 53532378644 - }, - "source_throttle_time_in_millis": 70517, - "target_throttle_time_in_millis": 300, - "total_time_in_millis": 2194739 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339250, - "stop_time_in_millis": 1569423536074, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2196824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76626807, - "total_time_in_millis": 2072 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53007802272, - "reused_in_bytes": 0, - "total_in_bytes": 53007802272 - }, - "source_throttle_time_in_millis": 67048, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2124099 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423466247, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2126997, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76971016, - "total_time_in_millis": 2888 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50204339872, - "reused_in_bytes": 0, - "total_in_bytes": 50204339872 - }, - "source_throttle_time_in_millis": 5181548, - "target_throttle_time_in_millis": 5103648, - "total_time_in_millis": 9947781 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808768727, - "stop_time_in_millis": 1569818717319, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 9948592, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74066940, - "total_time_in_millis": 797 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51556784144, - "reused_in_bytes": 0, - "total_in_bytes": 51556784144 - }, - "source_throttle_time_in_millis": 52730, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4003109 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339250, - "stop_time_in_millis": 1569425347809, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 4008559, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75200681, - "total_time_in_millis": 2685 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53279735544, - "reused_in_bytes": 0, - "total_in_bytes": 53279735544 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 1511552 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569424854421, - "stop_time_in_millis": 1569426368343, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1513921, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76217569, - "total_time_in_millis": 2353 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53036435687, - "reused_in_bytes": 0, - "total_in_bytes": 53036435687 - }, - "source_throttle_time_in_millis": 31500, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2436351 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423778930, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2439680, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76867622, - "total_time_in_millis": 2776 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53335507301, - "reused_in_bytes": 0, - "total_in_bytes": 53335507301 - }, - "source_throttle_time_in_millis": 94166, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2449015 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339248, - "stop_time_in_millis": 1569423790864, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2451615, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76254668, - "total_time_in_millis": 2071 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50942018271, - "reused_in_bytes": 0, - "total_in_bytes": 50942018271 - }, - "source_throttle_time_in_millis": 6222103, - "target_throttle_time_in_millis": 3358713, - "total_time_in_millis": 10738086 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798473757, - "stop_time_in_millis": 1569809212706, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 10738948, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74675132, - "total_time_in_millis": 849 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51303279862, - "reused_in_bytes": 0, - "total_in_bytes": 51303279862 - }, - "source_throttle_time_in_millis": 5773854, - "target_throttle_time_in_millis": 2595889, - "total_time_in_millis": 8950869 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330107, - "stop_time_in_millis": 1569830281806, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 8951699, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74803293, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51810601468, - "reused_in_bytes": 0, - "total_in_bytes": 51810601468 - }, - "source_throttle_time_in_millis": 148529, - "target_throttle_time_in_millis": 206, - "total_time_in_millis": 1386469 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569911462175, - "stop_time_in_millis": 1569912849265, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1387089, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74706902, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51091643506, - "reused_in_bytes": 0, - "total_in_bytes": 51091643506 - }, - "source_throttle_time_in_millis": 4505284, - "target_throttle_time_in_millis": 5130140, - "total_time_in_millis": 9085132 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811861865, - "stop_time_in_millis": 1569820947744, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 9085878, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74766858, - "total_time_in_millis": 737 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51063622604, - "reused_in_bytes": 0, - "total_in_bytes": 51063622604 - }, - "source_throttle_time_in_millis": 6029627, - "target_throttle_time_in_millis": 2954704, - "total_time_in_millis": 9691613 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677475, - "stop_time_in_millis": 1569836370374, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9692899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74673734, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52881466025, - "reused_in_bytes": 0, - "total_in_bytes": 52881466025 - }, - "source_throttle_time_in_millis": 66274, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2097988 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423440761, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2101512, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77028890, - "total_time_in_millis": 2987 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51587653223, - "reused_in_bytes": 0, - "total_in_bytes": 51587653223 - }, - "source_throttle_time_in_millis": 5290820, - "target_throttle_time_in_millis": 2211366, - "total_time_in_millis": 8328469 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797775918, - "stop_time_in_millis": 1569806105192, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8329273, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74494723, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53007802272, - "reused_in_bytes": 0, - "total_in_bytes": 53007802272 - }, - "source_throttle_time_in_millis": 59438, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2124083 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421339249, - "stop_time_in_millis": 1569423466897, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2127648, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76971016, - "total_time_in_millis": 3049 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51041080817, - "reused_in_bytes": 0, - "total_in_bytes": 51041080817 - }, - "source_throttle_time_in_millis": 42473, - "target_throttle_time_in_millis": 16493, - "total_time_in_millis": 1242906 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886226680, - "stop_time_in_millis": 1569887470266, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1243586, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74737122, - "total_time_in_millis": 671 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51021642872, - "reused_in_bytes": 0, - "total_in_bytes": 51021642872 - }, - "source_throttle_time_in_millis": 3824968, - "target_throttle_time_in_millis": 4654272, - "total_time_in_millis": 8310796 - }, - "index_name": "om-iu-bro-2019.09.23-000970", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467940, - "stop_time_in_millis": 1569830779570, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 8311630, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74653527, - "total_time_in_millis": 825 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52016912504, - "reused_in_bytes": 0, - "total_in_bytes": 52016912504 - }, - "source_throttle_time_in_millis": 5362086, - "target_throttle_time_in_millis": 5611944, - "total_time_in_millis": 10269288 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795347865, - "stop_time_in_millis": 1569805617966, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 10270100, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73440559, - "total_time_in_millis": 782 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56053701334, - "reused_in_bytes": 0, - "total_in_bytes": 56053701334 - }, - "source_throttle_time_in_millis": 427406, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2839193 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892001, - "stop_time_in_millis": 1569127734097, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2842095, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77056554, - "total_time_in_millis": 2346 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52024776914, - "reused_in_bytes": 0, - "total_in_bytes": 52024776914 - }, - "source_throttle_time_in_millis": 1440039, - "target_throttle_time_in_millis": 60367, - "total_time_in_millis": 2735182 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569908030638, - "stop_time_in_millis": 1569910766412, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2735773, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73503315, - "total_time_in_millis": 582 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52345061194, - "reused_in_bytes": 0, - "total_in_bytes": 52345061194 - }, - "source_throttle_time_in_millis": 57496, - "target_throttle_time_in_millis": 123706, - "total_time_in_millis": 1767867 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569971621815, - "stop_time_in_millis": 1569973390326, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1768511, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73185502, - "total_time_in_millis": 631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51803050162, - "reused_in_bytes": 0, - "total_in_bytes": 51803050162 - }, - "source_throttle_time_in_millis": 5249464, - "target_throttle_time_in_millis": 4548883, - "total_time_in_millis": 9599438 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813447503, - "stop_time_in_millis": 1569823047828, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 9600324, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73489373, - "total_time_in_millis": 878 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52388855541, - "reused_in_bytes": 0, - "total_in_bytes": 52388855541 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 9319, - "total_time_in_millis": 1396941 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569897878859, - "stop_time_in_millis": 1569899276472, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1397612, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72851002, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51877079010, - "reused_in_bytes": 0, - "total_in_bytes": 51877079010 - }, - "source_throttle_time_in_millis": 3689940, - "target_throttle_time_in_millis": 5128332, - "total_time_in_millis": 8696236 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483106, - "stop_time_in_millis": 1569834180227, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8697121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73448816, - "total_time_in_millis": 855 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52499514086, - "reused_in_bytes": 0, - "total_in_bytes": 52499514086 - }, - "source_throttle_time_in_millis": 777936, - "target_throttle_time_in_millis": 4060860, - "total_time_in_millis": 5476134 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780232146, - "stop_time_in_millis": 1569785709155, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 5477008, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73168671, - "total_time_in_millis": 856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51982766282, - "reused_in_bytes": 0, - "total_in_bytes": 51982766282 - }, - "source_throttle_time_in_millis": 4590805, - "target_throttle_time_in_millis": 2065869, - "total_time_in_millis": 7864127 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828680383, - "stop_time_in_millis": 1569836545313, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 7864929, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73321124, - "total_time_in_millis": 789 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52521469896, - "reused_in_bytes": 0, - "total_in_bytes": 52521469896 - }, - "source_throttle_time_in_millis": 53091, - "target_throttle_time_in_millis": 18464, - "total_time_in_millis": 1505155 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569856471509, - "stop_time_in_millis": 1569857977310, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1505800, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73215769, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51171947567, - "reused_in_bytes": 0, - "total_in_bytes": 51171947567 - }, - "source_throttle_time_in_millis": 269209, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3239831 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892001, - "stop_time_in_millis": 1569128134820, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 3242819, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72244484, - "total_time_in_millis": 2463 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55224186234, - "reused_in_bytes": 0, - "total_in_bytes": 55224186234 - }, - "source_throttle_time_in_millis": 63124, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2280270 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892000, - "stop_time_in_millis": 1569127175262, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2283262, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76961184, - "total_time_in_millis": 2470 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 268, - "reused": 0, - "total": 268 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55101017936, - "reused_in_bytes": 0, - "total_in_bytes": 55101017936 - }, - "source_throttle_time_in_millis": 74572, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2253432 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892004, - "stop_time_in_millis": 1569127148408, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2256403, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77021477, - "total_time_in_millis": 2445 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55788919048, - "reused_in_bytes": 0, - "total_in_bytes": 55788919048 - }, - "source_throttle_time_in_millis": 72790, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2317766 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124891999, - "stop_time_in_millis": 1569127218926, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2326927, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76564133, - "total_time_in_millis": 2539 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54208630230, - "reused_in_bytes": 0, - "total_in_bytes": 54208630230 - }, - "source_throttle_time_in_millis": 52284, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 3971395 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892004, - "stop_time_in_millis": 1569128865977, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 3973973, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76271799, - "total_time_in_millis": 2053 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56002618686, - "reused_in_bytes": 0, - "total_in_bytes": 56002618686 - }, - "source_throttle_time_in_millis": 97202, - "target_throttle_time_in_millis": 18, - "total_time_in_millis": 2372501 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892000, - "stop_time_in_millis": 1569127267632, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2375631, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77060721, - "total_time_in_millis": 2602 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51803050162, - "reused_in_bytes": 0, - "total_in_bytes": 51803050162 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 45607, - "total_time_in_millis": 1616816 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917318771, - "stop_time_in_millis": 1569918936222, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1617451, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73489373, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55867379303, - "reused_in_bytes": 0, - "total_in_bytes": 55867379303 - }, - "source_throttle_time_in_millis": 69054, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2278712 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892001, - "stop_time_in_millis": 1569127173192, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2281190, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76902544, - "total_time_in_millis": 2452 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55167333446, - "reused_in_bytes": 0, - "total_in_bytes": 55167333446 - }, - "source_throttle_time_in_millis": 97148, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2245326 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892000, - "stop_time_in_millis": 1569127140384, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2248384, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76821148, - "total_time_in_millis": 2539 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55252579980, - "reused_in_bytes": 0, - "total_in_bytes": 55252579980 - }, - "source_throttle_time_in_millis": 62502, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2239758 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892001, - "stop_time_in_millis": 1569127134724, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2242722, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77197734, - "total_time_in_millis": 2443 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55354201324, - "reused_in_bytes": 0, - "total_in_bytes": 55354201324 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 108, - "total_time_in_millis": 1287513 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569127094944, - "stop_time_in_millis": 1569128384861, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1289916, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77177283, - "total_time_in_millis": 2393 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52085163712, - "reused_in_bytes": 0, - "total_in_bytes": 52085163712 - }, - "source_throttle_time_in_millis": 28796, - "target_throttle_time_in_millis": 161, - "total_time_in_millis": 1242187 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569933645784, - "stop_time_in_millis": 1569934888587, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1242803, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73424543, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55637461087, - "reused_in_bytes": 0, - "total_in_bytes": 55637461087 - }, - "source_throttle_time_in_millis": 418735, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2856074 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892000, - "stop_time_in_millis": 1569127750948, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2858948, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76815417, - "total_time_in_millis": 2356 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51938971349, - "reused_in_bytes": 0, - "total_in_bytes": 51938971349 - }, - "source_throttle_time_in_millis": 138481, - "target_throttle_time_in_millis": 4502113, - "total_time_in_millis": 5679277 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795039783, - "stop_time_in_millis": 1569800719893, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 5680109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73471862, - "total_time_in_millis": 803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55348034406, - "reused_in_bytes": 0, - "total_in_bytes": 55348034406 - }, - "source_throttle_time_in_millis": 66086, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2183970 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892000, - "stop_time_in_millis": 1569127078346, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2186345, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77221057, - "total_time_in_millis": 2361 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48535439235, - "reused_in_bytes": 0, - "total_in_bytes": 48535439235 - }, - "source_throttle_time_in_millis": 4589901, - "target_throttle_time_in_millis": 4650140, - "total_time_in_millis": 8962223 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801799501, - "stop_time_in_millis": 1569810762488, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 8962987, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69318236, - "total_time_in_millis": 753 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52000043873, - "reused_in_bytes": 0, - "total_in_bytes": 52000043873 - }, - "source_throttle_time_in_millis": 5866681, - "target_throttle_time_in_millis": 5344908, - "total_time_in_millis": 10921707 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810102058, - "stop_time_in_millis": 1569821025239, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 10923180, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73375411, - "total_time_in_millis": 957 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52563498760, - "reused_in_bytes": 0, - "total_in_bytes": 52563498760 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 73835, - "total_time_in_millis": 1308593 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569900877657, - "stop_time_in_millis": 1569902186842, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1309184, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73093104, - "total_time_in_millis": 577 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55227899467, - "reused_in_bytes": 0, - "total_in_bytes": 55227899467 - }, - "source_throttle_time_in_millis": 73653, - "target_throttle_time_in_millis": 98, - "total_time_in_millis": 2275688 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892000, - "stop_time_in_millis": 1569127170560, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2278560, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77150723, - "total_time_in_millis": 2349 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51886322949, - "reused_in_bytes": 0, - "total_in_bytes": 51886322949 - }, - "source_throttle_time_in_millis": 1238994, - "target_throttle_time_in_millis": 5819567, - "total_time_in_millis": 6889364 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320028, - "stop_time_in_millis": 1569839210146, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6890118, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73243335, - "total_time_in_millis": 726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52048732481, - "reused_in_bytes": 0, - "total_in_bytes": 52048732481 - }, - "source_throttle_time_in_millis": 5516144, - "target_throttle_time_in_millis": 2887683, - "total_time_in_millis": 9070077 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817271407, - "stop_time_in_millis": 1569826342250, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9070842, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73440730, - "total_time_in_millis": 744 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55866152559, - "reused_in_bytes": 0, - "total_in_bytes": 55866152559 - }, - "source_throttle_time_in_millis": 72132, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2288300 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892001, - "stop_time_in_millis": 1569127183204, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2291202, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76705052, - "total_time_in_millis": 2377 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52085163712, - "reused_in_bytes": 0, - "total_in_bytes": 52085163712 - }, - "source_throttle_time_in_millis": 17577, - "target_throttle_time_in_millis": 73688, - "total_time_in_millis": 1349680 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859714579, - "stop_time_in_millis": 1569861064911, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1350332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73424543, - "total_time_in_millis": 644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5196 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569127734211, - "stop_time_in_millis": 1569127740231, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 6019, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 781 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55230305629, - "reused_in_bytes": 0, - "total_in_bytes": 55230305629 - }, - "source_throttle_time_in_millis": 97686, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2315473 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569124892002, - "stop_time_in_millis": 1569127210029, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2318027, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76999561, - "total_time_in_millis": 2541 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51217253753, - "reused_in_bytes": 0, - "total_in_bytes": 51217253753 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 145, - "total_time_in_millis": 1145710 - }, - "index_name": "om-iu-bro-2019.09.19-000954", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962799942, - "stop_time_in_millis": 1569963946220, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1146277, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72873620, - "total_time_in_millis": 559 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 611974475, - "reused_in_bytes": 0, - "total_in_bytes": 611974475 - }, - "source_throttle_time_in_millis": 41580, - "target_throttle_time_in_millis": 92640, - "total_time_in_millis": 119203 - }, - "index_name": "om-iu-suricata-2019.09.11-000100", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706864, - "stop_time_in_millis": 1569838826787, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 119922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 155623, - "total_time_in_millis": 124 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 101, - "reused": 0, - "total": 101 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 619148223, - "reused_in_bytes": 0, - "total_in_bytes": 619148223 - }, - "source_throttle_time_in_millis": 999, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 32679 - }, - "index_name": "om-iu-suricata-2019.09.11-000100", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568464279897, - "stop_time_in_millis": 1568464313245, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 33347, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 156825, - "total_time_in_millis": 95 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 611974475, - "reused_in_bytes": 0, - "total_in_bytes": 611974475 - }, - "source_throttle_time_in_millis": 79847, - "target_throttle_time_in_millis": 10381, - "total_time_in_millis": 111794 - }, - "index_name": "om-iu-suricata-2019.09.11-000100", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337293, - "stop_time_in_millis": 1569798450670, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 113377, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 155623, - "total_time_in_millis": 29 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 613854835, - "reused_in_bytes": 0, - "total_in_bytes": 613854835 - }, - "source_throttle_time_in_millis": 11695, - "target_throttle_time_in_millis": 19674, - "total_time_in_millis": 54496 - }, - "index_name": "om-iu-suricata-2019.09.11-000100", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772928739, - "stop_time_in_millis": 1569772983302, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 54563, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 156825, - "total_time_in_millis": 51 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 453494970, - "reused_in_bytes": 0, - "total_in_bytes": 453494970 - }, - "source_throttle_time_in_millis": 32739, - "target_throttle_time_in_millis": 27915, - "total_time_in_millis": 68474 - }, - "index_name": "om-iu-suricata-2019.09.15-000104", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867316, - "stop_time_in_millis": 1569835937418, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 70102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 105449, - "total_time_in_millis": 53 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 451189128, - "reused_in_bytes": 0, - "total_in_bytes": 451189128 - }, - "source_throttle_time_in_millis": 20281, - "target_throttle_time_in_millis": 44461, - "total_time_in_millis": 62315 - }, - "index_name": "om-iu-suricata-2019.09.15-000104", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569779951443, - "stop_time_in_millis": 1569780013804, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 62361, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 105030, - "total_time_in_millis": 30 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 451189128, - "reused_in_bytes": 0, - "total_in_bytes": 451189128 - }, - "source_throttle_time_in_millis": 40579, - "target_throttle_time_in_millis": 60517, - "total_time_in_millis": 93616 - }, - "index_name": "om-iu-suricata-2019.09.15-000104", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093258, - "stop_time_in_millis": 1569830186948, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 93690, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 105030, - "total_time_in_millis": 55 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 453494970, - "reused_in_bytes": 0, - "total_in_bytes": 453494970 - }, - "source_throttle_time_in_millis": 5539, - "target_throttle_time_in_millis": 52095, - "total_time_in_millis": 64231 - }, - "index_name": "om-iu-suricata-2019.09.15-000104", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568885071138, - "stop_time_in_millis": 1568885135431, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 64293, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 105449, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 96, - "reused": 0, - "total": 96 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 449819413, - "reused_in_bytes": 0, - "total_in_bytes": 449819413 - }, - "source_throttle_time_in_millis": 899, - "target_throttle_time_in_millis": 190, - "total_time_in_millis": 18161 - }, - "index_name": "om-iu-suricata-2019.09.14-000103", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568725296648, - "stop_time_in_millis": 1568725315272, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 18624, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 111884, - "total_time_in_millis": 70 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 446093776, - "reused_in_bytes": 0, - "total_in_bytes": 446093776 - }, - "source_throttle_time_in_millis": 32435, - "target_throttle_time_in_millis": 33433, - "total_time_in_millis": 69840 - }, - "index_name": "om-iu-suricata-2019.09.14-000103", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781442182, - "stop_time_in_millis": 1569781512137, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 69954, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 111884, - "total_time_in_millis": 92 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 443653137, - "reused_in_bytes": 0, - "total_in_bytes": 443653137 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 13396 - }, - "index_name": "om-iu-suricata-2019.09.14-000103", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978773155, - "stop_time_in_millis": 1569978786603, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 13447, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 111607, - "total_time_in_millis": 40 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 443653137, - "reused_in_bytes": 0, - "total_in_bytes": 443653137 - }, - "source_throttle_time_in_millis": 618, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 12651 - }, - "index_name": "om-iu-suricata-2019.09.14-000103", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977349434, - "stop_time_in_millis": 1569977362122, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 12688, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 111607, - "total_time_in_millis": 24 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 36247179062, - "reused_in_bytes": 0, - "total_in_bytes": 36247179062 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 104047, - "total_time_in_millis": 1106631 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569853507490, - "stop_time_in_millis": 1569854614611, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1107120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 54790787, - "total_time_in_millis": 481 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52512061406, - "reused_in_bytes": 0, - "total_in_bytes": 52512061406 - }, - "source_throttle_time_in_millis": 279601, - "target_throttle_time_in_millis": 99132, - "total_time_in_millis": 1651737 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569942806282, - "stop_time_in_millis": 1569944458709, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1652427, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76041455, - "total_time_in_millis": 680 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51694746015, - "reused_in_bytes": 0, - "total_in_bytes": 51694746015 - }, - "source_throttle_time_in_millis": 1003410, - "target_throttle_time_in_millis": 4023, - "total_time_in_millis": 2303244 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569958991041, - "stop_time_in_millis": 1569961297416, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2306375, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76066683, - "total_time_in_millis": 600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51660506932, - "reused_in_bytes": 0, - "total_in_bytes": 51660506932 - }, - "source_throttle_time_in_millis": 4316871, - "target_throttle_time_in_millis": 3870434, - "total_time_in_millis": 8811556 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569779916281, - "stop_time_in_millis": 1569788728666, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 8812384, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76031646, - "total_time_in_millis": 807 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50940462543, - "reused_in_bytes": 0, - "total_in_bytes": 50940462543 - }, - "source_throttle_time_in_millis": 39189, - "target_throttle_time_in_millis": 51715, - "total_time_in_millis": 1632296 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884185432, - "stop_time_in_millis": 1569885820342, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1634910, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76053467, - "total_time_in_millis": 642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52380264101, - "reused_in_bytes": 0, - "total_in_bytes": 52380264101 - }, - "source_throttle_time_in_millis": 5100079, - "target_throttle_time_in_millis": 1372628, - "total_time_in_millis": 8066122 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807610923, - "stop_time_in_millis": 1569815677845, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 8066922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76070315, - "total_time_in_millis": 785 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51001066360, - "reused_in_bytes": 0, - "total_in_bytes": 51001066360 - }, - "source_throttle_time_in_millis": 350729, - "target_throttle_time_in_millis": 4528860, - "total_time_in_millis": 5299894 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788908792, - "stop_time_in_millis": 1569794209559, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5300767, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76041205, - "total_time_in_millis": 862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51676615480, - "reused_in_bytes": 0, - "total_in_bytes": 51676615480 - }, - "source_throttle_time_in_millis": 5761574, - "target_throttle_time_in_millis": 3872423, - "total_time_in_millis": 9861381 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800413965, - "stop_time_in_millis": 1569810276716, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 9862751, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76048249, - "total_time_in_millis": 854 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5231 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569091045332, - "stop_time_in_millis": 1569091051375, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 6043, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 36153376143, - "reused_in_bytes": 0, - "total_in_bytes": 36153376143 - }, - "source_throttle_time_in_millis": 4141328, - "target_throttle_time_in_millis": 1453494, - "total_time_in_millis": 6401684 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732149, - "stop_time_in_millis": 1569842134350, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 6402201, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 54400277, - "total_time_in_millis": 507 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 247, - "reused": 0, - "total": 247 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 36829572587, - "reused_in_bytes": 0, - "total_in_bytes": 36829572587 - }, - "source_throttle_time_in_millis": 286859, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1785572 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902351, - "stop_time_in_millis": 1569090690752, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1788400, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 55413647, - "total_time_in_millis": 2308 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53413873061, - "reused_in_bytes": 0, - "total_in_bytes": 53413873061 - }, - "source_throttle_time_in_millis": 71384, - "target_throttle_time_in_millis": 28, - "total_time_in_millis": 2234194 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902351, - "stop_time_in_millis": 1569091139127, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2236776, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77287185, - "total_time_in_millis": 2051 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52419213454, - "reused_in_bytes": 0, - "total_in_bytes": 52419213454 - }, - "source_throttle_time_in_millis": 3202880, - "target_throttle_time_in_millis": 5210404, - "total_time_in_millis": 8153615 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569804145003, - "stop_time_in_millis": 1569812303149, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 8158145, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75926946, - "total_time_in_millis": 4517 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51643441714, - "reused_in_bytes": 0, - "total_in_bytes": 51643441714 - }, - "source_throttle_time_in_millis": 4466241, - "target_throttle_time_in_millis": 4810090, - "total_time_in_millis": 9130655 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825781958, - "stop_time_in_millis": 1569834913482, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 9131524, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76056121, - "total_time_in_millis": 815 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52296016069, - "reused_in_bytes": 0, - "total_in_bytes": 52296016069 - }, - "source_throttle_time_in_millis": 1068855, - "target_throttle_time_in_millis": 5940763, - "total_time_in_millis": 6928182 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806070996, - "stop_time_in_millis": 1569813000620, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6929624, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76061518, - "total_time_in_millis": 905 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52698456634, - "reused_in_bytes": 0, - "total_in_bytes": 52698456634 - }, - "source_throttle_time_in_millis": 89326, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2561783 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902378, - "stop_time_in_millis": 1569091467438, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2565059, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77437595, - "total_time_in_millis": 2754 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52214488113, - "reused_in_bytes": 0, - "total_in_bytes": 52214488113 - }, - "source_throttle_time_in_millis": 170642, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4760915 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902350, - "stop_time_in_millis": 1569093665810, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 4763459, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77427051, - "total_time_in_millis": 2529 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51444439550, - "reused_in_bytes": 0, - "total_in_bytes": 51444439550 - }, - "source_throttle_time_in_millis": 1297144, - "target_throttle_time_in_millis": 34930, - "total_time_in_millis": 2560217 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569912599105, - "stop_time_in_millis": 1569915159930, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2560824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76045023, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52966372499, - "reused_in_bytes": 0, - "total_in_bytes": 52966372499 - }, - "source_throttle_time_in_millis": 375954, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2602534 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902352, - "stop_time_in_millis": 1569091508247, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2605895, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77444022, - "total_time_in_millis": 2835 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51676615480, - "reused_in_bytes": 0, - "total_in_bytes": 51676615480 - }, - "source_throttle_time_in_millis": 5148046, - "target_throttle_time_in_millis": 455455, - "total_time_in_millis": 7353946 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810276768, - "stop_time_in_millis": 1569817632406, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 7355638, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76048249, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52864179569, - "reused_in_bytes": 0, - "total_in_bytes": 52864179569 - }, - "source_throttle_time_in_millis": 71749, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2377092 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902352, - "stop_time_in_millis": 1569091281803, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2379450, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77398927, - "total_time_in_millis": 1834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52380264101, - "reused_in_bytes": 0, - "total_in_bytes": 52380264101 - }, - "source_throttle_time_in_millis": 988446, - "target_throttle_time_in_millis": 4285768, - "total_time_in_millis": 5751435 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818859993, - "stop_time_in_millis": 1569824612244, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5752250, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76070315, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52907270957, - "reused_in_bytes": 0, - "total_in_bytes": 52907270957 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 317, - "total_time_in_millis": 1251127 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569091507609, - "stop_time_in_millis": 1569092761486, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1253876, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77376480, - "total_time_in_millis": 2733 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51643441714, - "reused_in_bytes": 0, - "total_in_bytes": 51643441714 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 73365, - "total_time_in_millis": 1490888 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935933258, - "stop_time_in_millis": 1569937424791, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1491533, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76056121, - "total_time_in_millis": 635 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50302775380, - "reused_in_bytes": 0, - "total_in_bytes": 50302775380 - }, - "source_throttle_time_in_millis": 447100, - "target_throttle_time_in_millis": 6595005, - "total_time_in_millis": 6765086 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789094708, - "stop_time_in_millis": 1569795860661, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6765953, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73785181, - "total_time_in_millis": 818 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50940462543, - "reused_in_bytes": 0, - "total_in_bytes": 50940462543 - }, - "source_throttle_time_in_millis": 24802, - "target_throttle_time_in_millis": 58426, - "total_time_in_millis": 1749384 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569949927029, - "stop_time_in_millis": 1569951677083, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1750054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76053467, - "total_time_in_millis": 659 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50302775380, - "reused_in_bytes": 0, - "total_in_bytes": 50302775380 - }, - "source_throttle_time_in_millis": 735693, - "target_throttle_time_in_millis": 962038, - "total_time_in_millis": 2910138 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867305, - "stop_time_in_millis": 1569838778111, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2910806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73785181, - "total_time_in_millis": 633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52419213454, - "reused_in_bytes": 0, - "total_in_bytes": 52419213454 - }, - "source_throttle_time_in_millis": 4880275, - "target_throttle_time_in_millis": 3612298, - "total_time_in_millis": 9038955 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818948731, - "stop_time_in_millis": 1569827988680, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9039948, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75926946, - "total_time_in_millis": 984 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53413873061, - "reused_in_bytes": 0, - "total_in_bytes": 53413873061 - }, - "source_throttle_time_in_millis": 62813, - "target_throttle_time_in_millis": 76, - "total_time_in_millis": 2234195 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902351, - "stop_time_in_millis": 1569091139476, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2237125, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77287185, - "total_time_in_millis": 2395 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53042398761, - "reused_in_bytes": 0, - "total_in_bytes": 53042398761 - }, - "source_throttle_time_in_millis": 129002, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2251484 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902350, - "stop_time_in_millis": 1569091157330, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2254979, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77441563, - "total_time_in_millis": 2952 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51745761297, - "reused_in_bytes": 0, - "total_in_bytes": 51745761297 - }, - "source_throttle_time_in_millis": 21150, - "target_throttle_time_in_millis": 27043, - "total_time_in_millis": 1637509 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569975034429, - "stop_time_in_millis": 1569976672639, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1638210, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76048012, - "total_time_in_millis": 690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 256, - "reused": 0, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 36757657326, - "reused_in_bytes": 0, - "total_in_bytes": 36757657326 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 213, - "total_time_in_millis": 897343 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569090342042, - "stop_time_in_millis": 1569091241606, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 899563, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 55049770, - "total_time_in_millis": 2209 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51649282173, - "reused_in_bytes": 0, - "total_in_bytes": 51649282173 - }, - "source_throttle_time_in_millis": 272396, - "target_throttle_time_in_millis": 303252, - "total_time_in_millis": 1655833 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855353125, - "stop_time_in_millis": 1569857009567, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1656441, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76050494, - "total_time_in_millis": 600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53666726795, - "reused_in_bytes": 0, - "total_in_bytes": 53666726795 - }, - "source_throttle_time_in_millis": 68377, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2357146 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569088902355, - "stop_time_in_millis": 1569091262317, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2359962, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77377359, - "total_time_in_millis": 2744 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4875 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569091282369, - "stop_time_in_millis": 1569091288020, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 5651, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 739 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51649282173, - "reused_in_bytes": 0, - "total_in_bytes": 51649282173 - }, - "source_throttle_time_in_millis": 150534, - "target_throttle_time_in_millis": 242607, - "total_time_in_millis": 2001852 - }, - "index_name": "om-iu-bro-2019.09.19-000952", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867795504, - "stop_time_in_millis": 1569869798049, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2002545, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76050494, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52751669067, - "reused_in_bytes": 0, - "total_in_bytes": 52751669067 - }, - "source_throttle_time_in_millis": 5407428, - "target_throttle_time_in_millis": 1395463, - "total_time_in_millis": 8036395 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330103, - "stop_time_in_millis": 1569829367299, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 8037195, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74448945, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56418398632, - "reused_in_bytes": 0, - "total_in_bytes": 56418398632 - }, - "source_throttle_time_in_millis": 99192, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2427225 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904420, - "stop_time_in_millis": 1569109334868, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2430447, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77847159, - "total_time_in_millis": 2701 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49048214446, - "reused_in_bytes": 0, - "total_in_bytes": 49048214446 - }, - "source_throttle_time_in_millis": 4558746, - "target_throttle_time_in_millis": 4328534, - "total_time_in_millis": 8753493 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827705418, - "stop_time_in_millis": 1569836459629, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8754211, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70228182, - "total_time_in_millis": 707 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53248285261, - "reused_in_bytes": 0, - "total_in_bytes": 53248285261 - }, - "source_throttle_time_in_millis": 5149795, - "target_throttle_time_in_millis": 5181742, - "total_time_in_millis": 9906483 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796142655, - "stop_time_in_millis": 1569806051062, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 9908406, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74331156, - "total_time_in_millis": 1892 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5498 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569109202782, - "stop_time_in_millis": 1569109209326, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 6543, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 993 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55615727561, - "reused_in_bytes": 0, - "total_in_bytes": 55615727561 - }, - "source_throttle_time_in_millis": 69012, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2311498 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904418, - "stop_time_in_millis": 1569109218847, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2314428, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77811782, - "total_time_in_millis": 2392 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51983665673, - "reused_in_bytes": 0, - "total_in_bytes": 51983665673 - }, - "source_throttle_time_in_millis": 53604, - "target_throttle_time_in_millis": 247073, - "total_time_in_millis": 1791537 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964123371, - "stop_time_in_millis": 1569965915621, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1792250, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73884555, - "total_time_in_millis": 702 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52849391275, - "reused_in_bytes": 0, - "total_in_bytes": 52849391275 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 38214, - "total_time_in_millis": 1236880 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884051499, - "stop_time_in_millis": 1569885289027, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1237528, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73667001, - "total_time_in_millis": 639 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49048214446, - "reused_in_bytes": 0, - "total_in_bytes": 49048214446 - }, - "source_throttle_time_in_millis": 736272, - "target_throttle_time_in_millis": 179082, - "total_time_in_millis": 2483121 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569836460944, - "stop_time_in_millis": 1569838944745, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2483801, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70228182, - "total_time_in_millis": 649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52665156398, - "reused_in_bytes": 0, - "total_in_bytes": 52665156398 - }, - "source_throttle_time_in_millis": 20859, - "target_throttle_time_in_millis": 66529, - "total_time_in_millis": 1524481 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435647, - "stop_time_in_millis": 1569844960781, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1525134, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74317198, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55725325067, - "reused_in_bytes": 0, - "total_in_bytes": 55725325067 - }, - "source_throttle_time_in_millis": 353851, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 3168791 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904419, - "stop_time_in_millis": 1569110076469, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 3172050, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77940359, - "total_time_in_millis": 2723 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52565835592, - "reused_in_bytes": 0, - "total_in_bytes": 52565835592 - }, - "source_throttle_time_in_millis": 5459769, - "target_throttle_time_in_millis": 1883530, - "total_time_in_millis": 8546624 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575030, - "stop_time_in_millis": 1569836122362, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 8547332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74261972, - "total_time_in_millis": 696 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52255769721, - "reused_in_bytes": 0, - "total_in_bytes": 52255769721 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 175, - "total_time_in_millis": 1249223 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892327957, - "stop_time_in_millis": 1569893577888, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1249930, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74023258, - "total_time_in_millis": 695 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53126127279, - "reused_in_bytes": 0, - "total_in_bytes": 53126127279 - }, - "source_throttle_time_in_millis": 3306117, - "target_throttle_time_in_millis": 4337646, - "total_time_in_millis": 7768436 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827521554, - "stop_time_in_millis": 1569835290816, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 7769261, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74182255, - "total_time_in_millis": 793 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52665156398, - "reused_in_bytes": 0, - "total_in_bytes": 52665156398 - }, - "source_throttle_time_in_millis": 13423, - "target_throttle_time_in_millis": 293, - "total_time_in_millis": 1253444 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867573648, - "stop_time_in_millis": 1569868827818, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1254170, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74317198, - "total_time_in_millis": 716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52549829443, - "reused_in_bytes": 0, - "total_in_bytes": 52549829443 - }, - "source_throttle_time_in_millis": 121159, - "target_throttle_time_in_millis": 1309202, - "total_time_in_millis": 2882017 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569912849320, - "stop_time_in_millis": 1569915732030, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2882710, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74455232, - "total_time_in_millis": 681 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52751669067, - "reused_in_bytes": 0, - "total_in_bytes": 52751669067 - }, - "source_throttle_time_in_millis": 50427, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1610507 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569890381747, - "stop_time_in_millis": 1569891992906, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1611159, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74448945, - "total_time_in_millis": 643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52595370793, - "reused_in_bytes": 0, - "total_in_bytes": 52595370793 - }, - "source_throttle_time_in_millis": 17102, - "target_throttle_time_in_millis": 107829, - "total_time_in_millis": 1658276 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860802278, - "stop_time_in_millis": 1569862461691, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1659413, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74465459, - "total_time_in_millis": 1129 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56236613547, - "reused_in_bytes": 0, - "total_in_bytes": 56236613547 - }, - "source_throttle_time_in_millis": 76324, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2401837 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904418, - "stop_time_in_millis": 1569109309429, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2405011, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77315591, - "total_time_in_millis": 2651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55615727558, - "reused_in_bytes": 0, - "total_in_bytes": 55615727558 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 2915, - "total_time_in_millis": 1316221 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569109227513, - "stop_time_in_millis": 1569110546809, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1319295, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77811782, - "total_time_in_millis": 2412 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51983665673, - "reused_in_bytes": 0, - "total_in_bytes": 51983665673 - }, - "source_throttle_time_in_millis": 3709889, - "target_throttle_time_in_millis": 1445967, - "total_time_in_millis": 6575410 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093264, - "stop_time_in_millis": 1569836669450, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6576186, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73884555, - "total_time_in_millis": 744 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569109165317, - "stop_time_in_millis": 1569109166268, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 950, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 900 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4907 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569109309477, - "stop_time_in_millis": 1569109315262, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 5785, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56418398629, - "reused_in_bytes": 0, - "total_in_bytes": 56418398629 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 107, - "total_time_in_millis": 1614533 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569109344415, - "stop_time_in_millis": 1569110961942, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1617527, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77847159, - "total_time_in_millis": 2978 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56702814472, - "reused_in_bytes": 0, - "total_in_bytes": 56702814472 - }, - "source_throttle_time_in_millis": 71476, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2380418 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904419, - "stop_time_in_millis": 1569109288907, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2384488, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78207545, - "total_time_in_millis": 3019 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51775448179, - "reused_in_bytes": 0, - "total_in_bytes": 51775448179 - }, - "source_throttle_time_in_millis": 5054623, - "target_throttle_time_in_millis": 6213179, - "total_time_in_millis": 10114456 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688526, - "stop_time_in_millis": 1569766803637, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 10115110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73829637, - "total_time_in_millis": 643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55754299768, - "reused_in_bytes": 0, - "total_in_bytes": 55754299768 - }, - "source_throttle_time_in_millis": 72030, - "target_throttle_time_in_millis": 87, - "total_time_in_millis": 2322490 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904416, - "stop_time_in_millis": 1569109229555, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2325138, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77915358, - "total_time_in_millis": 2637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55725325067, - "reused_in_bytes": 0, - "total_in_bytes": 55725325067 - }, - "source_throttle_time_in_millis": 328748, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3213876 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904418, - "stop_time_in_millis": 1569110121224, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 3216805, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77940359, - "total_time_in_millis": 2403 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55705368365, - "reused_in_bytes": 0, - "total_in_bytes": 55705368365 - }, - "source_throttle_time_in_millis": 72411, - "target_throttle_time_in_millis": 54, - "total_time_in_millis": 2351923 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904418, - "stop_time_in_millis": 1569109259491, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2355072, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78018338, - "total_time_in_millis": 2634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52549829443, - "reused_in_bytes": 0, - "total_in_bytes": 52549829443 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 9065, - "total_time_in_millis": 1562215 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973041140, - "stop_time_in_millis": 1569974603992, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1562852, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74455232, - "total_time_in_millis": 628 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52849391275, - "reused_in_bytes": 0, - "total_in_bytes": 52849391275 - }, - "source_throttle_time_in_millis": 1950054, - "target_throttle_time_in_millis": 332690, - "total_time_in_millis": 3749838 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867324, - "stop_time_in_millis": 1569839619379, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 3752054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73667001, - "total_time_in_millis": 671 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53126127279, - "reused_in_bytes": 0, - "total_in_bytes": 53126127279 - }, - "source_throttle_time_in_millis": 4518672, - "target_throttle_time_in_millis": 39269, - "total_time_in_millis": 6069842 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756749275, - "stop_time_in_millis": 1569762820270, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6070995, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74182255, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51775448179, - "reused_in_bytes": 0, - "total_in_bytes": 51775448179 - }, - "source_throttle_time_in_millis": 17316, - "target_throttle_time_in_millis": 105077, - "total_time_in_millis": 1665592 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876328797, - "stop_time_in_millis": 1569877995075, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1666278, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73829637, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55270391729, - "reused_in_bytes": 0, - "total_in_bytes": 55270391729 - }, - "source_throttle_time_in_millis": 73920, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2269008 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904417, - "stop_time_in_millis": 1569109177565, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2273147, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77447106, - "total_time_in_millis": 2366 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55633672646, - "reused_in_bytes": 0, - "total_in_bytes": 55633672646 - }, - "source_throttle_time_in_millis": 68343, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2294947 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904418, - "stop_time_in_millis": 1569109202019, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2297600, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78206978, - "total_time_in_millis": 2564 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56084906676, - "reused_in_bytes": 0, - "total_in_bytes": 56084906676 - }, - "source_throttle_time_in_millis": 70535, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2257477 - }, - "index_name": "om-iu-bro-2019.09.19-000953", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569106904418, - "stop_time_in_millis": 1569109165283, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2260865, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78534437, - "total_time_in_millis": 2690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51461447097, - "reused_in_bytes": 0, - "total_in_bytes": 51461447097 - }, - "source_throttle_time_in_millis": 307530, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2784393 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894846, - "stop_time_in_millis": 1569052681834, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2786987, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72433517, - "total_time_in_millis": 2576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54984620096, - "reused_in_bytes": 0, - "total_in_bytes": 54984620096 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 122, - "total_time_in_millis": 1267688 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569052575060, - "stop_time_in_millis": 1569053844970, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1269909, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76581587, - "total_time_in_millis": 2208 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51729844415, - "reused_in_bytes": 0, - "total_in_bytes": 51729844415 - }, - "source_throttle_time_in_millis": 3621347, - "target_throttle_time_in_millis": 5407768, - "total_time_in_millis": 8635488 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330101, - "stop_time_in_millis": 1569829966343, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8636241, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72838702, - "total_time_in_millis": 732 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54262998225, - "reused_in_bytes": 0, - "total_in_bytes": 54262998225 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 80, - "total_time_in_millis": 1560356 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569053873925, - "stop_time_in_millis": 1569055441579, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1567654, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76028058, - "total_time_in_millis": 2637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48859142532, - "reused_in_bytes": 0, - "total_in_bytes": 48859142532 - }, - "source_throttle_time_in_millis": 33702, - "target_throttle_time_in_millis": 16893, - "total_time_in_millis": 1559186 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569869202611, - "stop_time_in_millis": 1569870762437, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1559826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69388601, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51729844415, - "reused_in_bytes": 0, - "total_in_bytes": 51729844415 - }, - "source_throttle_time_in_millis": 3118448, - "target_throttle_time_in_millis": 4585570, - "total_time_in_millis": 7928235 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823879998, - "stop_time_in_millis": 1569831809037, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 7929038, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72838702, - "total_time_in_millis": 780 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51784036519, - "reused_in_bytes": 0, - "total_in_bytes": 51784036519 - }, - "source_throttle_time_in_millis": 6494844, - "target_throttle_time_in_millis": 4460008, - "total_time_in_millis": 10601061 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783196809, - "stop_time_in_millis": 1569793798653, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 10601844, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73032604, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51669886317, - "reused_in_bytes": 0, - "total_in_bytes": 51669886317 - }, - "source_throttle_time_in_millis": 3766626, - "target_throttle_time_in_millis": 5618473, - "total_time_in_millis": 9319709 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810004629, - "stop_time_in_millis": 1569819325084, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 9320455, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73046838, - "total_time_in_millis": 725 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55510011003, - "reused_in_bytes": 0, - "total_in_bytes": 55510011003 - }, - "source_throttle_time_in_millis": 66896, - "target_throttle_time_in_millis": 44, - "total_time_in_millis": 2174142 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894848, - "stop_time_in_millis": 1569052072206, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2177358, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76417957, - "total_time_in_millis": 2684 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51669886317, - "reused_in_bytes": 0, - "total_in_bytes": 51669886317 - }, - "source_throttle_time_in_millis": 4463441, - "target_throttle_time_in_millis": 2617501, - "total_time_in_millis": 8208622 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775384300, - "stop_time_in_millis": 1569783593735, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 8209434, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73046838, - "total_time_in_millis": 761 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51835971698, - "reused_in_bytes": 0, - "total_in_bytes": 51835971698 - }, - "source_throttle_time_in_millis": 119410, - "target_throttle_time_in_millis": 383436, - "total_time_in_millis": 1764986 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902605205, - "stop_time_in_millis": 1569904371238, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1766032, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72885616, - "total_time_in_millis": 1036 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52396281079, - "reused_in_bytes": 0, - "total_in_bytes": 52396281079 - }, - "source_throttle_time_in_millis": 290687, - "target_throttle_time_in_millis": 5823766, - "total_time_in_millis": 6564372 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807235727, - "stop_time_in_millis": 1569813801841, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6566113, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72813000, - "total_time_in_millis": 834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 312, - "reused": 0, - "total": 312 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55055882405, - "reused_in_bytes": 0, - "total_in_bytes": 55055882405 - }, - "source_throttle_time_in_millis": 74341, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2274935 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894851, - "stop_time_in_millis": 1569052172457, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2277606, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76647823, - "total_time_in_millis": 2651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52327148578, - "reused_in_bytes": 0, - "total_in_bytes": 52327148578 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 1998, - "total_time_in_millis": 1448680 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873570546, - "stop_time_in_millis": 1569875019881, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1449335, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72554089, - "total_time_in_millis": 644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4997 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569052161808, - "stop_time_in_millis": 1569052167748, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 5939, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 902 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52508838511, - "reused_in_bytes": 0, - "total_in_bytes": 52508838511 - }, - "source_throttle_time_in_millis": 24102, - "target_throttle_time_in_millis": 685006, - "total_time_in_millis": 1781592 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918844087, - "stop_time_in_millis": 1569920626367, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1782280, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72972142, - "total_time_in_millis": 677 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52409063921, - "reused_in_bytes": 0, - "total_in_bytes": 52409063921 - }, - "source_throttle_time_in_millis": 5470017, - "target_throttle_time_in_millis": 2864893, - "total_time_in_millis": 8731620 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780244390, - "stop_time_in_millis": 1569788976855, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 8732464, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72771295, - "total_time_in_millis": 834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51192302369, - "reused_in_bytes": 0, - "total_in_bytes": 51192302369 - }, - "source_throttle_time_in_millis": 25038, - "target_throttle_time_in_millis": 541780, - "total_time_in_millis": 1711286 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569969048301, - "stop_time_in_millis": 1569970760277, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1711975, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72399811, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51726025227, - "reused_in_bytes": 0, - "total_in_bytes": 51726025227 - }, - "source_throttle_time_in_millis": 37721, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 1241582 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569901232594, - "stop_time_in_millis": 1569902474785, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1242191, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72832390, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51864792691, - "reused_in_bytes": 0, - "total_in_bytes": 51864792691 - }, - "source_throttle_time_in_millis": 48568, - "target_throttle_time_in_millis": 42723, - "total_time_in_millis": 1778607 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893343441, - "stop_time_in_millis": 1569895122712, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1779270, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73075976, - "total_time_in_millis": 652 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55383453311, - "reused_in_bytes": 0, - "total_in_bytes": 55383453311 - }, - "source_throttle_time_in_millis": 98815, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2393306 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894847, - "stop_time_in_millis": 1569052290535, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2395688, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76036946, - "total_time_in_millis": 2374 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51726333302, - "reused_in_bytes": 0, - "total_in_bytes": 51726333302 - }, - "source_throttle_time_in_millis": 1393050, - "target_throttle_time_in_millis": 3347007, - "total_time_in_millis": 5317508 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792926628, - "stop_time_in_millis": 1569798244873, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5318244, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72851621, - "total_time_in_millis": 723 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55081854919, - "reused_in_bytes": 0, - "total_in_bytes": 55081854919 - }, - "source_throttle_time_in_millis": 322426, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3374098 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894847, - "stop_time_in_millis": 1569053271985, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 3377138, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76021001, - "total_time_in_millis": 2516 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55383453311, - "reused_in_bytes": 0, - "total_in_bytes": 55383453311 - }, - "source_throttle_time_in_millis": 67139, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 2709877 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894854, - "stop_time_in_millis": 1569052608202, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2713348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76036946, - "total_time_in_millis": 2785 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51726025227, - "reused_in_bytes": 0, - "total_in_bytes": 51726025227 - }, - "source_throttle_time_in_millis": 364097, - "target_throttle_time_in_millis": 104978, - "total_time_in_millis": 1757271 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569852914018, - "stop_time_in_millis": 1569854673929, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1759910, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72832390, - "total_time_in_millis": 2629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52508838511, - "reused_in_bytes": 0, - "total_in_bytes": 52508838511 - }, - "source_throttle_time_in_millis": 253849, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 1576289 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947083198, - "stop_time_in_millis": 1569948660125, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1576926, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72972142, - "total_time_in_millis": 627 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51827351527, - "reused_in_bytes": 0, - "total_in_bytes": 51827351527 - }, - "source_throttle_time_in_millis": 995, - "target_throttle_time_in_millis": 25413, - "total_time_in_millis": 1684308 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976672678, - "stop_time_in_millis": 1569978357701, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1685022, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72905297, - "total_time_in_millis": 705 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51784036519, - "reused_in_bytes": 0, - "total_in_bytes": 51784036519 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 50199, - "total_time_in_millis": 1243085 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941414584, - "stop_time_in_millis": 1569942658362, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1243777, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73032604, - "total_time_in_millis": 685 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51938645558, - "reused_in_bytes": 0, - "total_in_bytes": 51938645558 - }, - "source_throttle_time_in_millis": 256770, - "target_throttle_time_in_millis": 4709117, - "total_time_in_millis": 5294199 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782427120, - "stop_time_in_millis": 1569787722787, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 5295667, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73011557, - "total_time_in_millis": 899 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51991088139, - "reused_in_bytes": 0, - "total_in_bytes": 51991088139 - }, - "source_throttle_time_in_millis": 632455, - "target_throttle_time_in_millis": 5033614, - "total_time_in_millis": 6021747 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330128, - "stop_time_in_millis": 1569827352773, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6022644, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72436109, - "total_time_in_millis": 885 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51835971698, - "reused_in_bytes": 0, - "total_in_bytes": 51835971698 - }, - "source_throttle_time_in_millis": 245690, - "target_throttle_time_in_millis": 55866, - "total_time_in_millis": 1650499 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569953395527, - "stop_time_in_millis": 1569955046671, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1651144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72885616, - "total_time_in_millis": 627 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51864792691, - "reused_in_bytes": 0, - "total_in_bytes": 51864792691 - }, - "source_throttle_time_in_millis": 3247361, - "target_throttle_time_in_millis": 2969856, - "total_time_in_millis": 6860554 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801414365, - "stop_time_in_millis": 1569808275669, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6861304, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73075976, - "total_time_in_millis": 738 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55695389903, - "reused_in_bytes": 0, - "total_in_bytes": 55695389903 - }, - "source_throttle_time_in_millis": 318279, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3130201 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569049894849, - "stop_time_in_millis": 1569053027990, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 3133141, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76583404, - "total_time_in_millis": 2420 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51765682622, - "reused_in_bytes": 0, - "total_in_bytes": 51765682622 - }, - "source_throttle_time_in_millis": 4410128, - "target_throttle_time_in_millis": 4682081, - "total_time_in_millis": 9172078 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772928740, - "stop_time_in_millis": 1569782102207, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 9173466, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72957287, - "total_time_in_millis": 858 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51765682622, - "reused_in_bytes": 0, - "total_in_bytes": 51765682622 - }, - "source_throttle_time_in_millis": 1386388, - "target_throttle_time_in_millis": 5592062, - "total_time_in_millis": 6947290 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796287293, - "stop_time_in_millis": 1569803238425, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6951131, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72957287, - "total_time_in_millis": 3825 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52327148578, - "reused_in_bytes": 0, - "total_in_bytes": 52327148578 - }, - "source_throttle_time_in_millis": 50547, - "target_throttle_time_in_millis": 76551, - "total_time_in_millis": 1536772 - }, - "index_name": "om-iu-bro-2019.09.19-000950", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859174231, - "stop_time_in_millis": 1569860711705, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1537473, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72554089, - "total_time_in_millis": 690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51957719879, - "reused_in_bytes": 0, - "total_in_bytes": 51957719879 - }, - "source_throttle_time_in_millis": 89321, - "target_throttle_time_in_millis": 460664, - "total_time_in_millis": 1835449 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569949956170, - "stop_time_in_millis": 1569951792425, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1836254, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73529046, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53861183602, - "reused_in_bytes": 0, - "total_in_bytes": 53861183602 - }, - "source_throttle_time_in_millis": 63500, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2113003 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569069408507, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2115688, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77040757, - "total_time_in_millis": 2169 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51483911264, - "reused_in_bytes": 0, - "total_in_bytes": 51483911264 - }, - "source_throttle_time_in_millis": 4777641, - "target_throttle_time_in_millis": 2605918, - "total_time_in_millis": 8694036 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775936545, - "stop_time_in_millis": 1569784631512, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8694967, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74032404, - "total_time_in_millis": 906 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51865228889, - "reused_in_bytes": 0, - "total_in_bytes": 51865228889 - }, - "source_throttle_time_in_millis": 63561, - "target_throttle_time_in_millis": 2597634, - "total_time_in_millis": 3671424 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569786216354, - "stop_time_in_millis": 1569789888520, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 3672166, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73774786, - "total_time_in_millis": 721 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53861183602, - "reused_in_bytes": 0, - "total_in_bytes": 53861183602 - }, - "source_throttle_time_in_millis": 65831, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2113003 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569069408535, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2115716, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77040757, - "total_time_in_millis": 2193 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51511761443, - "reused_in_bytes": 0, - "total_in_bytes": 51511761443 - }, - "source_throttle_time_in_millis": 4904096, - "target_throttle_time_in_millis": 6259005, - "total_time_in_millis": 10043888 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788322910, - "stop_time_in_millis": 1569798367534, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 10044624, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74008859, - "total_time_in_millis": 721 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51380729992, - "reused_in_bytes": 0, - "total_in_bytes": 51380729992 - }, - "source_throttle_time_in_millis": 5946584, - "target_throttle_time_in_millis": 4399810, - "total_time_in_millis": 10416519 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483120, - "stop_time_in_millis": 1569835900451, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 10417331, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74047373, - "total_time_in_millis": 800 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54038807348, - "reused_in_bytes": 0, - "total_in_bytes": 54038807348 - }, - "source_throttle_time_in_millis": 68941, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 2187603 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569069483142, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2190323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77090033, - "total_time_in_millis": 2191 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49209714036, - "reused_in_bytes": 0, - "total_in_bytes": 49209714036 - }, - "source_throttle_time_in_millis": 18030, - "target_throttle_time_in_millis": 589, - "total_time_in_millis": 1218352 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941872910, - "stop_time_in_millis": 1569943091915, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1219004, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71312074, - "total_time_in_millis": 643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54816236705, - "reused_in_bytes": 0, - "total_in_bytes": 54816236705 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 189, - "total_time_in_millis": 1564055 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569070108284, - "stop_time_in_millis": 1569071674849, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1566565, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76954360, - "total_time_in_millis": 2488 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54149010677, - "reused_in_bytes": 0, - "total_in_bytes": 54149010677 - }, - "source_throttle_time_in_millis": 74653, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2319120 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292817, - "stop_time_in_millis": 1569069614550, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2321732, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77075390, - "total_time_in_millis": 2089 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 330, - "reused": 0, - "total": 330 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54593070369, - "reused_in_bytes": 0, - "total_in_bytes": 54593070369 - }, - "source_throttle_time_in_millis": 70771, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2254749 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569069550730, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2257911, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76560428, - "total_time_in_millis": 2272 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52053592842, - "reused_in_bytes": 0, - "total_in_bytes": 52053592842 - }, - "source_throttle_time_in_millis": 5397735, - "target_throttle_time_in_millis": 2933464, - "total_time_in_millis": 9187089 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795355024, - "stop_time_in_millis": 1569804543422, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9188398, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73813208, - "total_time_in_millis": 780 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54077257773, - "reused_in_bytes": 0, - "total_in_bytes": 54077257773 - }, - "source_throttle_time_in_millis": 65216, - "target_throttle_time_in_millis": 102, - "total_time_in_millis": 2212928 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569069507818, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2215000, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76997620, - "total_time_in_millis": 2055 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51444351132, - "reused_in_bytes": 0, - "total_in_bytes": 51444351132 - }, - "source_throttle_time_in_millis": 3039214, - "target_throttle_time_in_millis": 2109359, - "total_time_in_millis": 6240168 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822516447, - "stop_time_in_millis": 1569828758204, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6241757, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74057223, - "total_time_in_millis": 743 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52032202551, - "reused_in_bytes": 0, - "total_in_bytes": 52032202551 - }, - "source_throttle_time_in_millis": 1240469, - "target_throttle_time_in_millis": 5486851, - "total_time_in_millis": 6743703 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817714951, - "stop_time_in_millis": 1569824459494, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6744542, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73804327, - "total_time_in_millis": 828 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54317621892, - "reused_in_bytes": 0, - "total_in_bytes": 54317621892 - }, - "source_throttle_time_in_millis": 358342, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2564035 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292817, - "stop_time_in_millis": 1569069858941, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2566123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77285194, - "total_time_in_millis": 2075 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51448007384, - "reused_in_bytes": 0, - "total_in_bytes": 51448007384 - }, - "source_throttle_time_in_millis": 5177653, - "target_throttle_time_in_millis": 4966014, - "total_time_in_millis": 9768472 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813448630, - "stop_time_in_millis": 1569823217846, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 9769216, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73937693, - "total_time_in_millis": 729 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51444351132, - "reused_in_bytes": 0, - "total_in_bytes": 51444351132 - }, - "source_throttle_time_in_millis": 4513435, - "target_throttle_time_in_millis": 4805192, - "total_time_in_millis": 9129958 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813385594, - "stop_time_in_millis": 1569822516396, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 9130802, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74057223, - "total_time_in_millis": 824 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52036442752, - "reused_in_bytes": 0, - "total_in_bytes": 52036442752 - }, - "source_throttle_time_in_millis": 155631, - "target_throttle_time_in_millis": 143746, - "total_time_in_millis": 1526274 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899276533, - "stop_time_in_millis": 1569900803460, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1526926, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73804129, - "total_time_in_millis": 640 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5194 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569069555905, - "stop_time_in_millis": 1569069561966, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6061, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 800 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51587660213, - "reused_in_bytes": 0, - "total_in_bytes": 51587660213 - }, - "source_throttle_time_in_millis": 309810, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2778640 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569070074371, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2781553, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74003874, - "total_time_in_millis": 2387 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51561681680, - "reused_in_bytes": 0, - "total_in_bytes": 51561681680 - }, - "source_throttle_time_in_millis": 16406, - "target_throttle_time_in_millis": 48511, - "total_time_in_millis": 1398149 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957407283, - "stop_time_in_millis": 1569958806059, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1398775, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74060393, - "total_time_in_millis": 617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54290832059, - "reused_in_bytes": 0, - "total_in_bytes": 54290832059 - }, - "source_throttle_time_in_millis": 67595, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2540694 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292830, - "stop_time_in_millis": 1569069836673, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2543842, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77207179, - "total_time_in_millis": 2621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51618239348, - "reused_in_bytes": 0, - "total_in_bytes": 51618239348 - }, - "source_throttle_time_in_millis": 74058, - "target_throttle_time_in_millis": 332466, - "total_time_in_millis": 1790024 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569924171513, - "stop_time_in_millis": 1569925962273, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1790760, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74139229, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51369498435, - "reused_in_bytes": 0, - "total_in_bytes": 51369498435 - }, - "source_throttle_time_in_millis": 5238466, - "target_throttle_time_in_millis": 2825150, - "total_time_in_millis": 9126938 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432753, - "stop_time_in_millis": 1569837562053, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9129300, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74016539, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51483911264, - "reused_in_bytes": 0, - "total_in_bytes": 51483911264 - }, - "source_throttle_time_in_millis": 6808182, - "target_throttle_time_in_millis": 3572215, - "total_time_in_millis": 10352530 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337320, - "stop_time_in_millis": 1569808691646, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 10354326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74032404, - "total_time_in_millis": 775 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51461024659, - "reused_in_bytes": 0, - "total_in_bytes": 51461024659 - }, - "source_throttle_time_in_millis": 259506, - "target_throttle_time_in_millis": 12849, - "total_time_in_millis": 1507688 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569879635116, - "stop_time_in_millis": 1569881143413, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1508297, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73976430, - "total_time_in_millis": 598 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51461024659, - "reused_in_bytes": 0, - "total_in_bytes": 51461024659 - }, - "source_throttle_time_in_millis": 5928205, - "target_throttle_time_in_millis": 3787229, - "total_time_in_millis": 10452265 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810007124, - "stop_time_in_millis": 1569820460170, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 10453045, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73976430, - "total_time_in_millis": 756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51380729992, - "reused_in_bytes": 0, - "total_in_bytes": 51380729992 - }, - "source_throttle_time_in_millis": 5471871, - "target_throttle_time_in_millis": 5482586, - "total_time_in_millis": 10371825 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795039767, - "stop_time_in_millis": 1569805413074, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 10373307, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74047373, - "total_time_in_millis": 936 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51865228889, - "reused_in_bytes": 0, - "total_in_bytes": 51865228889 - }, - "source_throttle_time_in_millis": 45146, - "target_throttle_time_in_millis": 247, - "total_time_in_millis": 1367616 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569874991577, - "stop_time_in_millis": 1569876359848, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1368271, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73774786, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52036442752, - "reused_in_bytes": 0, - "total_in_bytes": 52036442752 - }, - "source_throttle_time_in_millis": 5398277, - "target_throttle_time_in_millis": 3884213, - "total_time_in_millis": 9456367 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823813328, - "stop_time_in_millis": 1569833270392, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 9457063, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73804129, - "total_time_in_millis": 636 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51957719879, - "reused_in_bytes": 0, - "total_in_bytes": 51957719879 - }, - "source_throttle_time_in_millis": 17915, - "target_throttle_time_in_millis": 103670, - "total_time_in_millis": 1369567 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859819829, - "stop_time_in_millis": 1569861190069, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1370239, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73529046, - "total_time_in_millis": 659 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 258, - "reused": 0, - "total": 258 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53469707764, - "reused_in_bytes": 0, - "total_in_bytes": 53469707764 - }, - "source_throttle_time_in_millis": 52446, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 4009678 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569067292818, - "stop_time_in_millis": 1569071304497, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 4011678, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76633219, - "total_time_in_millis": 1984 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50894656826, - "reused_in_bytes": 0, - "total_in_bytes": 50894656826 - }, - "source_throttle_time_in_millis": 52418, - "target_throttle_time_in_millis": 49933, - "total_time_in_millis": 1581680 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569895228966, - "stop_time_in_millis": 1569896811388, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1582422, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73618829, - "total_time_in_millis": 732 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52032202551, - "reused_in_bytes": 0, - "total_in_bytes": 52032202551 - }, - "source_throttle_time_in_millis": 1128380, - "target_throttle_time_in_millis": 6166183, - "total_time_in_millis": 7081809 - }, - "index_name": "om-iu-bro-2019.09.19-000951", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827408302, - "stop_time_in_millis": 1569834491002, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 7082699, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73804327, - "total_time_in_millis": 873 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3 - }, - "index_name": ".reporting-2019.06.02", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481082992, - "stop_time_in_millis": 1566481083204, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 212, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 149 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 27 - }, - "index_name": ".reporting-2019.06.02", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306918193, - "stop_time_in_millis": 1568306919705, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 1512, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 881 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 28 - }, - "index_name": "om-iu-suricata-2019.10.02-000121", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570030895247, - "stop_time_in_millis": 1570030898090, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 2843, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 173 - }, - "index_name": "om-iu-suricata-2019.10.02-000121", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570030895386, - "stop_time_in_millis": 1570030895633, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 247, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 48 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 121 - }, - "index_name": "om-iu-suricata-2019.10.02-000121", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030907389, - "stop_time_in_millis": 1570030907796, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 406, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 206 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1182 - }, - "index_name": "om-iu-suricata-2019.10.02-000121", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570030898111, - "stop_time_in_millis": 1570030904661, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 6550, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 160 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 7, - "reused": 0, - "total": 7 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 180469, - "reused_in_bytes": 0, - "total_in_bytes": 180469 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 106 - }, - "index_name": ".reporting-2019.03.10", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567681290802, - "stop_time_in_millis": 1567681291049, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 247, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 113 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 7, - "reused": 0, - "total": 7 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 180469, - "reused_in_bytes": 0, - "total_in_bytes": 180469 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 123 - }, - "index_name": ".reporting-2019.03.10", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567420290972, - "stop_time_in_millis": 1567420291171, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 48 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 79 - }, - "index_name": "om-iu-suricata-2019.10.01-000120", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569943893756, - "stop_time_in_millis": 1569943893910, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 154, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 47 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 236 - }, - "index_name": "om-iu-suricata-2019.10.01-000120", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943897096, - "stop_time_in_millis": 1569943897891, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 795, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 469 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 136 - }, - "index_name": "om-iu-suricata-2019.10.01-000120", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943897091, - "stop_time_in_millis": 1569943897343, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 251, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 81 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 38 - }, - "index_name": "om-iu-suricata-2019.10.01-000120", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569943893685, - "stop_time_in_millis": 1569943893764, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 78, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 118 - }, - "index_name": ".watches", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397035219, - "stop_time_in_millis": 1566397036680, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 1461, - "translog": { - "percent": "100.0%", - "recovered": 224, - "total": 224, - "total_on_start": -1, - "total_time_in_millis": 1070 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 37 - }, - "index_name": ".watches", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322749647, - "stop_time_in_millis": 1566322750418, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 771, - "translog": { - "percent": "100.0%", - "recovered": 123, - "total": 123, - "total_on_start": -1, - "total_time_in_millis": 544 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 270, - "reused": 0, - "total": 270 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53768660858, - "reused_in_bytes": 0, - "total_in_bytes": 53768660858 - }, - "source_throttle_time_in_millis": 50143, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 3685295 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502650, - "stop_time_in_millis": 1569306190530, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 3687880, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77286291, - "total_time_in_millis": 2061 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54535312863, - "reused_in_bytes": 0, - "total_in_bytes": 54535312863 - }, - "source_throttle_time_in_millis": 70727, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2129595 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502648, - "stop_time_in_millis": 1569304634516, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2131867, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76770202, - "total_time_in_millis": 2262 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52702379165, - "reused_in_bytes": 0, - "total_in_bytes": 52702379165 - }, - "source_throttle_time_in_millis": 65467, - "target_throttle_time_in_millis": 55109, - "total_time_in_millis": 1284804 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569909420481, - "stop_time_in_millis": 1569910705914, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1285433, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74871032, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54500968167, - "reused_in_bytes": 0, - "total_in_bytes": 54500968167 - }, - "source_throttle_time_in_millis": 78523, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2531894 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502656, - "stop_time_in_millis": 1569305037549, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2534893, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77916120, - "total_time_in_millis": 2476 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51986871190, - "reused_in_bytes": 0, - "total_in_bytes": 51986871190 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 306153, - "total_time_in_millis": 1592998 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569926282822, - "stop_time_in_millis": 1569927876525, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1593703, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74900226, - "total_time_in_millis": 693 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52514375005, - "reused_in_bytes": 0, - "total_in_bytes": 52514375005 - }, - "source_throttle_time_in_millis": 3127828, - "target_throttle_time_in_millis": 4604213, - "total_time_in_millis": 7977751 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823879988, - "stop_time_in_millis": 1569831858584, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 7978596, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74434001, - "total_time_in_millis": 823 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51712402008, - "reused_in_bytes": 0, - "total_in_bytes": 51712402008 - }, - "source_throttle_time_in_millis": 108131, - "target_throttle_time_in_millis": 209, - "total_time_in_millis": 1447428 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569922782381, - "stop_time_in_millis": 1569924230463, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1448082, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74544916, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53439201837, - "reused_in_bytes": 0, - "total_in_bytes": 53439201837 - }, - "source_throttle_time_in_millis": 48314, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3589622 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502649, - "stop_time_in_millis": 1569306094681, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 3592031, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76978205, - "total_time_in_millis": 1874 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51190643564, - "reused_in_bytes": 0, - "total_in_bytes": 51190643564 - }, - "source_throttle_time_in_millis": 224031, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 1473818 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569939650620, - "stop_time_in_millis": 1569941125075, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1474454, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74331290, - "total_time_in_millis": 626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54015685214, - "reused_in_bytes": 0, - "total_in_bytes": 54015685214 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 135, - "total_time_in_millis": 1546383 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569304685701, - "stop_time_in_millis": 1569306234373, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1548672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77255687, - "total_time_in_millis": 2278 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52514375005, - "reused_in_bytes": 0, - "total_in_bytes": 52514375005 - }, - "source_throttle_time_in_millis": 3597490, - "target_throttle_time_in_millis": 4677918, - "total_time_in_millis": 8496120 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330106, - "stop_time_in_millis": 1569829827009, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 8496902, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74434001, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54276570334, - "reused_in_bytes": 0, - "total_in_bytes": 54276570334 - }, - "source_throttle_time_in_millis": 64425, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2024617 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502649, - "stop_time_in_millis": 1569304530600, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2027951, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77843587, - "total_time_in_millis": 2277 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51970430029, - "reused_in_bytes": 0, - "total_in_bytes": 51970430029 - }, - "source_throttle_time_in_millis": 5675190, - "target_throttle_time_in_millis": 3961746, - "total_time_in_millis": 10036305 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822899578, - "stop_time_in_millis": 1569832936809, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 10037231, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74960195, - "total_time_in_millis": 910 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52036331384, - "reused_in_bytes": 0, - "total_in_bytes": 52036331384 - }, - "source_throttle_time_in_millis": 688859, - "target_throttle_time_in_millis": 4576888, - "total_time_in_millis": 5402534 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569787002097, - "stop_time_in_millis": 1569792405484, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 5403387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74874257, - "total_time_in_millis": 831 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52568090432, - "reused_in_bytes": 0, - "total_in_bytes": 52568090432 - }, - "source_throttle_time_in_millis": 3677876, - "target_throttle_time_in_millis": 6026777, - "total_time_in_millis": 9154881 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803528704, - "stop_time_in_millis": 1569812685606, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 9156901, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74636585, - "total_time_in_millis": 1995 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54485559735, - "reused_in_bytes": 0, - "total_in_bytes": 54485559735 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 100, - "total_time_in_millis": 1257257 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569304592624, - "stop_time_in_millis": 1569305852132, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1259507, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77963900, - "total_time_in_millis": 2241 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51926821230, - "reused_in_bytes": 0, - "total_in_bytes": 51926821230 - }, - "source_throttle_time_in_millis": 5679541, - "target_throttle_time_in_millis": 4854877, - "total_time_in_millis": 10204878 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603817, - "stop_time_in_millis": 1569834810073, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 10206255, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74858532, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54535312863, - "reused_in_bytes": 0, - "total_in_bytes": 54535312863 - }, - "source_throttle_time_in_millis": 59505, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2157108 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502649, - "stop_time_in_millis": 1569304662794, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2160145, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76770202, - "total_time_in_millis": 2505 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54373521539, - "reused_in_bytes": 0, - "total_in_bytes": 54373521539 - }, - "source_throttle_time_in_millis": 63373, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2108650 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502649, - "stop_time_in_millis": 1569304613429, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2110779, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77529004, - "total_time_in_millis": 2111 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52470434568, - "reused_in_bytes": 0, - "total_in_bytes": 52470434568 - }, - "source_throttle_time_in_millis": 150461, - "target_throttle_time_in_millis": 58414, - "total_time_in_millis": 1522796 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569900410935, - "stop_time_in_millis": 1569901934321, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1523386, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74569717, - "total_time_in_millis": 581 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52470434568, - "reused_in_bytes": 0, - "total_in_bytes": 52470434568 - }, - "source_throttle_time_in_millis": 298888, - "target_throttle_time_in_millis": 2593, - "total_time_in_millis": 1668162 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569921967160, - "stop_time_in_millis": 1569923635948, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1668788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74569717, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51445496525, - "reused_in_bytes": 0, - "total_in_bytes": 51445496525 - }, - "source_throttle_time_in_millis": 1458042, - "target_throttle_time_in_millis": 2825788, - "total_time_in_millis": 5299504 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824192492, - "stop_time_in_millis": 1569829492815, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5300323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74563843, - "total_time_in_millis": 805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54276570334, - "reused_in_bytes": 0, - "total_in_bytes": 54276570334 - }, - "source_throttle_time_in_millis": 62328, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2024626 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502650, - "stop_time_in_millis": 1569304530675, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2028025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77843587, - "total_time_in_millis": 2347 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55390550478, - "reused_in_bytes": 0, - "total_in_bytes": 55390550478 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 67, - "total_time_in_millis": 1552607 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569304650163, - "stop_time_in_millis": 1569306205388, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1555224, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77834982, - "total_time_in_millis": 2593 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52568090432, - "reused_in_bytes": 0, - "total_in_bytes": 52568090432 - }, - "source_throttle_time_in_millis": 1198752, - "target_throttle_time_in_millis": 4358113, - "total_time_in_millis": 5814440 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831079335, - "stop_time_in_millis": 1569836894545, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5815209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74636585, - "total_time_in_millis": 739 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51989720127, - "reused_in_bytes": 0, - "total_in_bytes": 51989720127 - }, - "source_throttle_time_in_millis": 5665492, - "target_throttle_time_in_millis": 3094567, - "total_time_in_millis": 9816015 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772075395, - "stop_time_in_millis": 1569781892691, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9817296, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75069236, - "total_time_in_millis": 764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52000838800, - "reused_in_bytes": 0, - "total_in_bytes": 52000838800 - }, - "source_throttle_time_in_millis": 87844, - "target_throttle_time_in_millis": 20908, - "total_time_in_millis": 1434949 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569874018416, - "stop_time_in_millis": 1569875454020, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1435604, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74797871, - "total_time_in_millis": 636 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54463282765, - "reused_in_bytes": 0, - "total_in_bytes": 54463282765 - }, - "source_throttle_time_in_millis": 69010, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2030770 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502650, - "stop_time_in_millis": 1569304536231, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2033581, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77884304, - "total_time_in_millis": 2290 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51934373097, - "reused_in_bytes": 0, - "total_in_bytes": 51934373097 - }, - "source_throttle_time_in_millis": 5370776, - "target_throttle_time_in_millis": 4738228, - "total_time_in_millis": 10009441 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258640, - "stop_time_in_millis": 1569782269476, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 10010835, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74972890, - "total_time_in_millis": 866 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52800874719, - "reused_in_bytes": 0, - "total_in_bytes": 52800874719 - }, - "source_throttle_time_in_millis": 89461, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1340027 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569885207903, - "stop_time_in_millis": 1569886548548, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1340645, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74934135, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51986871190, - "reused_in_bytes": 0, - "total_in_bytes": 51986871190 - }, - "source_throttle_time_in_millis": 69045, - "target_throttle_time_in_millis": 36225, - "total_time_in_millis": 1477446 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569897616605, - "stop_time_in_millis": 1569899094707, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1478102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74900226, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51755839109, - "reused_in_bytes": 0, - "total_in_bytes": 51755839109 - }, - "source_throttle_time_in_millis": 2269258, - "target_throttle_time_in_millis": 2731975, - "total_time_in_millis": 5798427 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817955430, - "stop_time_in_millis": 1569823754651, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 5799220, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75048349, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 312, - "reused": 0, - "total": 312 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54196387600, - "reused_in_bytes": 0, - "total_in_bytes": 54196387600 - }, - "source_throttle_time_in_millis": 65448, - "target_throttle_time_in_millis": 22, - "total_time_in_millis": 1996524 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569302502649, - "stop_time_in_millis": 1569304501913, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1999263, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77902290, - "total_time_in_millis": 2218 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5092 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569304595006, - "stop_time_in_millis": 1569304600937, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 5931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52702379165, - "reused_in_bytes": 0, - "total_in_bytes": 52702379165 - }, - "source_throttle_time_in_millis": 225288, - "target_throttle_time_in_millis": 39439, - "total_time_in_millis": 1546364 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881213728, - "stop_time_in_millis": 1569882761249, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1547520, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74871032, - "total_time_in_millis": 640 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52036331384, - "reused_in_bytes": 0, - "total_in_bytes": 52036331384 - }, - "source_throttle_time_in_millis": 6168355, - "target_throttle_time_in_millis": 4393188, - "total_time_in_millis": 10353161 - }, - "index_name": "om-iu-bro-2019.09.22-000963", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818508626, - "stop_time_in_millis": 1569828862614, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 10353988, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74874257, - "total_time_in_millis": 771 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53481819692, - "reused_in_bytes": 0, - "total_in_bytes": 53481819692 - }, - "source_throttle_time_in_millis": 65340, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2028665 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321927556, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2031224, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77393310, - "total_time_in_millis": 2037 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51360489105, - "reused_in_bytes": 0, - "total_in_bytes": 51360489105 - }, - "source_throttle_time_in_millis": 191553, - "target_throttle_time_in_millis": 100398, - "total_time_in_millis": 1628308 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569958167690, - "stop_time_in_millis": 1569959796583, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1628892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74800513, - "total_time_in_millis": 575 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52363123696, - "reused_in_bytes": 0, - "total_in_bytes": 52363123696 - }, - "source_throttle_time_in_millis": 48336, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3437290 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569323337028, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 3440696, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77090087, - "total_time_in_millis": 2810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50544966148, - "reused_in_bytes": 0, - "total_in_bytes": 50544966148 - }, - "source_throttle_time_in_millis": 3135381, - "target_throttle_time_in_millis": 5789682, - "total_time_in_millis": 8997065 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823616580, - "stop_time_in_millis": 1569832614466, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 8997885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75168807, - "total_time_in_millis": 804 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53568305046, - "reused_in_bytes": 0, - "total_in_bytes": 53568305046 - }, - "source_throttle_time_in_millis": 64162, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2046642 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321945439, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2049107, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77427645, - "total_time_in_millis": 1932 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50744148010, - "reused_in_bytes": 0, - "total_in_bytes": 50744148010 - }, - "source_throttle_time_in_millis": 84769, - "target_throttle_time_in_millis": 163619, - "total_time_in_millis": 1343468 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569934888649, - "stop_time_in_millis": 1569936232772, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1344122, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75020605, - "total_time_in_millis": 646 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51301312086, - "reused_in_bytes": 0, - "total_in_bytes": 51301312086 - }, - "source_throttle_time_in_millis": 3645133, - "target_throttle_time_in_millis": 5134603, - "total_time_in_millis": 8607326 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483135, - "stop_time_in_millis": 1569834091238, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8608102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74624367, - "total_time_in_millis": 764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49860883221, - "reused_in_bytes": 0, - "total_in_bytes": 49860883221 - }, - "source_throttle_time_in_millis": 33984, - "target_throttle_time_in_millis": 108259, - "total_time_in_millis": 1291487 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027158961, - "stop_time_in_millis": 1570028451064, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1292102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74392508, - "total_time_in_millis": 594 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50783095440, - "reused_in_bytes": 0, - "total_in_bytes": 50783095440 - }, - "source_throttle_time_in_millis": 1038238, - "target_throttle_time_in_millis": 3953354, - "total_time_in_millis": 5512970 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826710125, - "stop_time_in_millis": 1569832223963, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5513838, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75060630, - "total_time_in_millis": 851 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50589438720, - "reused_in_bytes": 0, - "total_in_bytes": 50589438720 - }, - "source_throttle_time_in_millis": 1108376, - "target_throttle_time_in_millis": 6269306, - "total_time_in_millis": 6987218 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677516, - "stop_time_in_millis": 1569833665594, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 6988077, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74778028, - "total_time_in_millis": 848 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53002722740, - "reused_in_bytes": 0, - "total_in_bytes": 53002722740 - }, - "source_throttle_time_in_millis": 80262, - "target_throttle_time_in_millis": 63, - "total_time_in_millis": 2133402 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896331, - "stop_time_in_millis": 1569322032785, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2136453, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77599798, - "total_time_in_millis": 2510 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50730664123, - "reused_in_bytes": 0, - "total_in_bytes": 50730664123 - }, - "source_throttle_time_in_millis": 214232, - "target_throttle_time_in_millis": 31758, - "total_time_in_millis": 1454815 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569911529740, - "stop_time_in_millis": 1569912985155, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1455414, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75070533, - "total_time_in_millis": 591 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53635902267, - "reused_in_bytes": 0, - "total_in_bytes": 53635902267 - }, - "source_throttle_time_in_millis": 63235, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2093907 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321993269, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2096937, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77337094, - "total_time_in_millis": 2479 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51360489105, - "reused_in_bytes": 0, - "total_in_bytes": 51360489105 - }, - "source_throttle_time_in_millis": 182777, - "target_throttle_time_in_millis": 725338, - "total_time_in_millis": 1979752 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903857692, - "stop_time_in_millis": 1569905838594, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1980901, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74800513, - "total_time_in_millis": 635 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51202493411, - "reused_in_bytes": 0, - "total_in_bytes": 51202493411 - }, - "source_throttle_time_in_millis": 1524, - "target_throttle_time_in_millis": 13255, - "total_time_in_millis": 1622866 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569932187714, - "stop_time_in_millis": 1569933811262, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1623547, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74707310, - "total_time_in_millis": 672 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52847650068, - "reused_in_bytes": 0, - "total_in_bytes": 52847650068 - }, - "source_throttle_time_in_millis": 62880, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 1926363 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321825456, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1929123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77706190, - "total_time_in_millis": 2735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52886673683, - "reused_in_bytes": 0, - "total_in_bytes": 52886673683 - }, - "source_throttle_time_in_millis": 94973, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2028543 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321927843, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2031511, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77614296, - "total_time_in_millis": 2957 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52929889517, - "reused_in_bytes": 0, - "total_in_bytes": 52929889517 - }, - "source_throttle_time_in_millis": 63028, - "target_throttle_time_in_millis": 72, - "total_time_in_millis": 2005051 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321904762, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2008430, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77509101, - "total_time_in_millis": 2844 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5084 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569321900459, - "stop_time_in_millis": 1569321906459, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 5999, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 866 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50940381210, - "reused_in_bytes": 0, - "total_in_bytes": 50940381210 - }, - "source_throttle_time_in_millis": 6483343, - "target_throttle_time_in_millis": 3236337, - "total_time_in_millis": 10342086 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819468537, - "stop_time_in_millis": 1569829811868, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 10343330, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74180470, - "total_time_in_millis": 707 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 204, - "reused": 0, - "total": 204 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52829333999, - "reused_in_bytes": 0, - "total_in_bytes": 52829333999 - }, - "source_throttle_time_in_millis": 59102, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2013971 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896372, - "stop_time_in_millis": 1569321911921, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2015548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77512930, - "total_time_in_millis": 1558 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53243100114, - "reused_in_bytes": 0, - "total_in_bytes": 53243100114 - }, - "source_throttle_time_in_millis": 65730, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1956459 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321855728, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1959396, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77973419, - "total_time_in_millis": 2922 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52363123693, - "reused_in_bytes": 0, - "total_in_bytes": 52363123693 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 209, - "total_time_in_millis": 1214424 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569323342133, - "stop_time_in_millis": 1569324559356, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1217222, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77090087, - "total_time_in_millis": 2787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50940381210, - "reused_in_bytes": 0, - "total_in_bytes": 50940381210 - }, - "source_throttle_time_in_millis": 2490454, - "target_throttle_time_in_millis": 3510589, - "total_time_in_millis": 6811354 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829811936, - "stop_time_in_millis": 1569836625850, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 6813914, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74180470, - "total_time_in_millis": 846 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51383101935, - "reused_in_bytes": 0, - "total_in_bytes": 51383101935 - }, - "source_throttle_time_in_millis": 78101, - "target_throttle_time_in_millis": 42749, - "total_time_in_millis": 1342950 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569885213338, - "stop_time_in_millis": 1569886556916, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1343578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74884730, - "total_time_in_millis": 619 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49860883221, - "reused_in_bytes": 0, - "total_in_bytes": 49860883221 - }, - "source_throttle_time_in_millis": 79109, - "target_throttle_time_in_millis": 7795140, - "total_time_in_millis": 7256497 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688519, - "stop_time_in_millis": 1569763945771, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 7257252, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74392508, - "total_time_in_millis": 745 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52847650068, - "reused_in_bytes": 0, - "total_in_bytes": 52847650068 - }, - "source_throttle_time_in_millis": 62070, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 1926362 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321825454, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1929121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77706190, - "total_time_in_millis": 2737 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50780858362, - "reused_in_bytes": 0, - "total_in_bytes": 50780858362 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 1186130 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569994893103, - "stop_time_in_millis": 1569996079864, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1186761, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75011042, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50544966148, - "reused_in_bytes": 0, - "total_in_bytes": 50544966148 - }, - "source_throttle_time_in_millis": 79527, - "target_throttle_time_in_millis": 118, - "total_time_in_millis": 1456617 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893675428, - "stop_time_in_millis": 1569895132743, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1457315, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75168807, - "total_time_in_millis": 687 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50730664123, - "reused_in_bytes": 0, - "total_in_bytes": 50730664123 - }, - "source_throttle_time_in_millis": 677860, - "target_throttle_time_in_millis": 5188930, - "total_time_in_millis": 6211323 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811861858, - "stop_time_in_millis": 1569818073973, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6212114, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75070533, - "total_time_in_millis": 752 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53002722740, - "reused_in_bytes": 0, - "total_in_bytes": 53002722740 - }, - "source_throttle_time_in_millis": 65204, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2133397 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896333, - "stop_time_in_millis": 1569322032793, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2136459, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77599798, - "total_time_in_millis": 2520 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53732811134, - "reused_in_bytes": 0, - "total_in_bytes": 53732811134 - }, - "source_throttle_time_in_millis": 61058, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2051725 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896332, - "stop_time_in_millis": 1569321950640, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2054307, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77562376, - "total_time_in_millis": 2057 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50783095440, - "reused_in_bytes": 0, - "total_in_bytes": 50783095440 - }, - "source_throttle_time_in_millis": 15027, - "target_throttle_time_in_millis": 18098, - "total_time_in_millis": 1282098 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917384476, - "stop_time_in_millis": 1569918667203, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1282726, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75060630, - "total_time_in_millis": 618 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50592027424, - "reused_in_bytes": 0, - "total_in_bytes": 50592027424 - }, - "source_throttle_time_in_millis": 3353576, - "target_throttle_time_in_millis": 3431973, - "total_time_in_millis": 7304920 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780234418, - "stop_time_in_millis": 1569787540259, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 7305841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74980306, - "total_time_in_millis": 905 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53243100114, - "reused_in_bytes": 0, - "total_in_bytes": 53243100114 - }, - "source_throttle_time_in_millis": 63444, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 1956448 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569319896341, - "stop_time_in_millis": 1569321856076, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1959734, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77973419, - "total_time_in_millis": 3266 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51420727110, - "reused_in_bytes": 0, - "total_in_bytes": 51420727110 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 64106, - "total_time_in_millis": 1357612 - }, - "index_name": "om-iu-bro-2019.09.22-000964", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873633233, - "stop_time_in_millis": 1569874991508, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1358275, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74857188, - "total_time_in_millis": 655 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 746885252, - "reused_in_bytes": 0, - "total_in_bytes": 746885252 - }, - "source_throttle_time_in_millis": 877, - "target_throttle_time_in_millis": 1616, - "total_time_in_millis": 22978 - }, - "index_name": "om-iu-suricata-2019.09.26-000115", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978293887, - "stop_time_in_millis": 1569978316912, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 23024, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 196805, - "total_time_in_millis": 36 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 751931875, - "reused_in_bytes": 0, - "total_in_bytes": 751931875 - }, - "source_throttle_time_in_millis": 78007, - "target_throttle_time_in_millis": 56367, - "total_time_in_millis": 143845 - }, - "index_name": "om-iu-suricata-2019.09.26-000115", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569809572892, - "stop_time_in_millis": 1569809716883, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 143990, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 198245, - "total_time_in_millis": 107 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 751931875, - "reused_in_bytes": 0, - "total_in_bytes": 751931875 - }, - "source_throttle_time_in_millis": 905, - "target_throttle_time_in_millis": 1267, - "total_time_in_millis": 24044 - }, - "index_name": "om-iu-suricata-2019.09.26-000115", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893724827, - "stop_time_in_millis": 1569893748931, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 24104, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 198245, - "total_time_in_millis": 41 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 746885252, - "reused_in_bytes": 0, - "total_in_bytes": 746885252 - }, - "source_throttle_time_in_millis": 41705, - "target_throttle_time_in_millis": 23590, - "total_time_in_millis": 89814 - }, - "index_name": "om-iu-suricata-2019.09.26-000115", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801633090, - "stop_time_in_millis": 1569801723000, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 89910, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 196805, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 59, - "reused": 0, - "total": 59 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50144810, - "reused_in_bytes": 0, - "total_in_bytes": 50144810 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3446 - }, - "index_name": ".ml-anomalies-shared", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567040404759, - "stop_time_in_millis": 1567040408623, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 3863, - "translog": { - "percent": "100.0%", - "recovered": 739, - "total": 739, - "total_on_start": 739, - "total_time_in_millis": 353 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 73 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322784812, - "stop_time_in_millis": 1566322785819, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1006, - "translog": { - "percent": "100.0%", - "recovered": 70, - "total": 70, - "total_on_start": -1, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 55, - "reused": 0, - "total": 55 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57950507, - "reused_in_bytes": 0, - "total_in_bytes": 57950507 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6490 - }, - "index_name": ".ml-anomalies-shared", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569508302215, - "stop_time_in_millis": 1569508317217, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 15001, - "translog": { - "percent": "100.0%", - "recovered": 629, - "total": 629, - "total_on_start": 629, - "total_time_in_millis": 8271 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 30 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481084524, - "stop_time_in_millis": 1566481085781, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 1257, - "translog": { - "percent": "100.0%", - "recovered": 52, - "total": 52, - "total_on_start": -1, - "total_time_in_millis": 945 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 9 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322784481, - "stop_time_in_millis": 1566322784788, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 307, - "translog": { - "percent": "100.0%", - "recovered": 69, - "total": 69, - "total_on_start": -1, - "total_time_in_millis": 217 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 49, - "reused": 0, - "total": 49 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55374628, - "reused_in_bytes": 0, - "total_in_bytes": 55374628 - }, - "source_throttle_time_in_millis": 23, - "target_throttle_time_in_millis": 227, - "total_time_in_millis": 9070 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569043864963, - "stop_time_in_millis": 1569043875748, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 10784, - "translog": { - "percent": "100.0%", - "recovered": 714, - "total": 714, - "total_on_start": 714, - "total_time_in_millis": 1456 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 14 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903153, - "stop_time_in_millis": 1566313904157, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 1003, - "translog": { - "percent": "100.0%", - "recovered": 55, - "total": 55, - "total_on_start": -1, - "total_time_in_millis": 808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 401 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491937471, - "stop_time_in_millis": 1566491939793, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 2321, - "translog": { - "percent": "100.0%", - "recovered": 852, - "total": 852, - "total_on_start": -1, - "total_time_in_millis": 1624 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 37 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465145, - "stop_time_in_millis": 1566411465967, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 821, - "translog": { - "percent": "100.0%", - "recovered": 91, - "total": 91, - "total_on_start": -1, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6 - }, - "index_name": ".ml-anomalies-shared", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304787557, - "stop_time_in_millis": 1568304789293, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 1735, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 1604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51706420611, - "reused_in_bytes": 0, - "total_in_bytes": 51706420611 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 237, - "total_time_in_millis": 1232269 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948694082, - "stop_time_in_millis": 1569949926982, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1232899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73950690, - "total_time_in_millis": 614 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51986869925, - "reused_in_bytes": 0, - "total_in_bytes": 51986869925 - }, - "source_throttle_time_in_millis": 3573260, - "target_throttle_time_in_millis": 3902015, - "total_time_in_millis": 7610178 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823128410, - "stop_time_in_millis": 1569830739425, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 7611014, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73914452, - "total_time_in_millis": 822 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55772074594, - "reused_in_bytes": 0, - "total_in_bytes": 55772074594 - }, - "source_throttle_time_in_millis": 65778, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 2000146 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293874, - "stop_time_in_millis": 1569747296522, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2002648, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77382571, - "total_time_in_millis": 2489 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51826494951, - "reused_in_bytes": 0, - "total_in_bytes": 51826494951 - }, - "source_throttle_time_in_millis": 267916, - "target_throttle_time_in_millis": 2962002, - "total_time_in_millis": 4314889 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569793383008, - "stop_time_in_millis": 1569797698681, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 4315672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73960351, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52570470519, - "reused_in_bytes": 0, - "total_in_bytes": 52570470519 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 1224535 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920127332, - "stop_time_in_millis": 1569921352508, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1225175, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73669600, - "total_time_in_millis": 632 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54879047312, - "reused_in_bytes": 0, - "total_in_bytes": 54879047312 - }, - "source_throttle_time_in_millis": 95074, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2037914 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293876, - "stop_time_in_millis": 1569747334001, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2040124, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77268934, - "total_time_in_millis": 2197 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52020513641, - "reused_in_bytes": 0, - "total_in_bytes": 52020513641 - }, - "source_throttle_time_in_millis": 4377120, - "target_throttle_time_in_millis": 4486346, - "total_time_in_millis": 8491246 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783196803, - "stop_time_in_millis": 1569791688957, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8492153, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73916718, - "total_time_in_millis": 897 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51906410383, - "reused_in_bytes": 0, - "total_in_bytes": 51906410383 - }, - "source_throttle_time_in_millis": 67047, - "target_throttle_time_in_millis": 201586, - "total_time_in_millis": 1431904 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903391738, - "stop_time_in_millis": 1569904824283, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1432545, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73909023, - "total_time_in_millis": 632 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5930 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569747233138, - "stop_time_in_millis": 1569747239954, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 6815, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 843 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51924861630, - "reused_in_bytes": 0, - "total_in_bytes": 51924861630 - }, - "source_throttle_time_in_millis": 1607135, - "target_throttle_time_in_millis": 3503917, - "total_time_in_millis": 5543847 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569804091651, - "stop_time_in_millis": 1569809636324, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 5544672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73878685, - "total_time_in_millis": 807 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51864960280, - "reused_in_bytes": 0, - "total_in_bytes": 51864960280 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 91, - "total_time_in_millis": 1201017 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569871020298, - "stop_time_in_millis": 1569872221997, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1201699, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73942265, - "total_time_in_millis": 673 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52667930628, - "reused_in_bytes": 0, - "total_in_bytes": 52667930628 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 229, - "total_time_in_millis": 1251722 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941714040, - "stop_time_in_millis": 1569942966418, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1252378, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73896406, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54733349857, - "reused_in_bytes": 0, - "total_in_bytes": 54733349857 - }, - "source_throttle_time_in_millis": 93363, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2106632 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293873, - "stop_time_in_millis": 1569747403222, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2109348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76973626, - "total_time_in_millis": 2196 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51982228011, - "reused_in_bytes": 0, - "total_in_bytes": 51982228011 - }, - "source_throttle_time_in_millis": 2774477, - "target_throttle_time_in_millis": 3864240, - "total_time_in_millis": 7033490 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093241, - "stop_time_in_millis": 1569837127449, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 7034208, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73921114, - "total_time_in_millis": 707 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51990793548, - "reused_in_bytes": 0, - "total_in_bytes": 51990793548 - }, - "source_throttle_time_in_millis": 3406471, - "target_throttle_time_in_millis": 4381885, - "total_time_in_millis": 7956966 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794649816, - "stop_time_in_millis": 1569802610511, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7960695, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73892377, - "total_time_in_millis": 860 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51425126254, - "reused_in_bytes": 0, - "total_in_bytes": 51425126254 - }, - "source_throttle_time_in_millis": 1542473, - "target_throttle_time_in_millis": 5571670, - "total_time_in_millis": 7010135 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821849558, - "stop_time_in_millis": 1569828860530, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 7010971, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73681468, - "total_time_in_millis": 819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51982228011, - "reused_in_bytes": 0, - "total_in_bytes": 51982228011 - }, - "source_throttle_time_in_millis": 91573, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1365020 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899511443, - "stop_time_in_millis": 1569900877593, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1366149, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73921114, - "total_time_in_millis": 615 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55772074594, - "reused_in_bytes": 0, - "total_in_bytes": 55772074594 - }, - "source_throttle_time_in_millis": 64984, - "target_throttle_time_in_millis": 33, - "total_time_in_millis": 1999643 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293871, - "stop_time_in_millis": 1569747296568, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2002696, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77382571, - "total_time_in_millis": 2531 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52667930628, - "reused_in_bytes": 0, - "total_in_bytes": 52667930628 - }, - "source_throttle_time_in_millis": 227690, - "target_throttle_time_in_millis": 1776198, - "total_time_in_millis": 3058401 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867347, - "stop_time_in_millis": 1569838926445, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 3059097, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73896406, - "total_time_in_millis": 687 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51124638179, - "reused_in_bytes": 0, - "total_in_bytes": 51124638179 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 245834, - "total_time_in_millis": 1388223 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569936967693, - "stop_time_in_millis": 1569938356594, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1388900, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73196760, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51906410383, - "reused_in_bytes": 0, - "total_in_bytes": 51906410383 - }, - "source_throttle_time_in_millis": 12967, - "target_throttle_time_in_millis": 16615, - "total_time_in_millis": 1603688 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947089714, - "stop_time_in_millis": 1569948694036, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1604322, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73909023, - "total_time_in_millis": 624 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51864960280, - "reused_in_bytes": 0, - "total_in_bytes": 51864960280 - }, - "source_throttle_time_in_millis": 13008, - "target_throttle_time_in_millis": 742098, - "total_time_in_millis": 2050276 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867312, - "stop_time_in_millis": 1569837918261, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2050949, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73942265, - "total_time_in_millis": 659 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55039057355, - "reused_in_bytes": 0, - "total_in_bytes": 55039057355 - }, - "source_throttle_time_in_millis": 64108, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1959633 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293871, - "stop_time_in_millis": 1569747256466, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1962595, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77403206, - "total_time_in_millis": 2431 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54733349854, - "reused_in_bytes": 0, - "total_in_bytes": 54733349854 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 103, - "total_time_in_millis": 1567924 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569747408464, - "stop_time_in_millis": 1569748979012, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1570547, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76973626, - "total_time_in_millis": 2608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52647614913, - "reused_in_bytes": 0, - "total_in_bytes": 52647614913 - }, - "source_throttle_time_in_millis": 73527, - "target_throttle_time_in_millis": 30623, - "total_time_in_millis": 1304674 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569936609999, - "stop_time_in_millis": 1569937915300, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1305300, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73838129, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55756840807, - "reused_in_bytes": 0, - "total_in_bytes": 55756840807 - }, - "source_throttle_time_in_millis": 73652, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2010052 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293875, - "stop_time_in_millis": 1569747306885, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2013010, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77227763, - "total_time_in_millis": 2435 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 330, - "reused": 0, - "total": 330 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54491006347, - "reused_in_bytes": 0, - "total_in_bytes": 54491006347 - }, - "source_throttle_time_in_millis": 98166, - "target_throttle_time_in_millis": 107, - "total_time_in_millis": 1984500 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293871, - "stop_time_in_millis": 1569747281168, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1987297, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77112806, - "total_time_in_millis": 2277 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55457869776, - "reused_in_bytes": 0, - "total_in_bytes": 55457869776 - }, - "source_throttle_time_in_millis": 71324, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2053768 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293873, - "stop_time_in_millis": 1569747350591, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2056718, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76841516, - "total_time_in_millis": 2425 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52647614913, - "reused_in_bytes": 0, - "total_in_bytes": 52647614913 - }, - "source_throttle_time_in_millis": 4217789, - "target_throttle_time_in_millis": 3469348, - "total_time_in_millis": 7957772 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569791687499, - "stop_time_in_millis": 1569799646326, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 7958826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73838129, - "total_time_in_millis": 985 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55626051499, - "reused_in_bytes": 0, - "total_in_bytes": 55626051499 - }, - "source_throttle_time_in_millis": 68087, - "target_throttle_time_in_millis": 14, - "total_time_in_millis": 2022443 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293873, - "stop_time_in_millis": 1569747319131, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2025257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77101782, - "total_time_in_millis": 2296 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52676990999, - "reused_in_bytes": 0, - "total_in_bytes": 52676990999 - }, - "source_throttle_time_in_millis": 2207110, - "target_throttle_time_in_millis": 2086794, - "total_time_in_millis": 5662442 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817271402, - "stop_time_in_millis": 1569822934638, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 5663236, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73801109, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53916153661, - "reused_in_bytes": 0, - "total_in_bytes": 53916153661 - }, - "source_throttle_time_in_millis": 48791, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3387064 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293872, - "stop_time_in_millis": 1569748682869, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 3388996, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76433727, - "total_time_in_millis": 1921 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51826494951, - "reused_in_bytes": 0, - "total_in_bytes": 51826494951 - }, - "source_throttle_time_in_millis": 1789114, - "target_throttle_time_in_millis": 6127182, - "total_time_in_millis": 8056971 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821849600, - "stop_time_in_millis": 1569829907631, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8058031, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73960351, - "total_time_in_millis": 1049 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55056906912, - "reused_in_bytes": 0, - "total_in_bytes": 55056906912 - }, - "source_throttle_time_in_millis": 63559, - "target_throttle_time_in_millis": 33, - "total_time_in_millis": 1943265 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569745293871, - "stop_time_in_millis": 1569747240207, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1946335, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77366171, - "total_time_in_millis": 2538 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5561 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569747352519, - "stop_time_in_millis": 1569747358901, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6382, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51425126254, - "reused_in_bytes": 0, - "total_in_bytes": 51425126254 - }, - "source_throttle_time_in_millis": 2708182, - "target_throttle_time_in_millis": 2746417, - "total_time_in_millis": 6193109 - }, - "index_name": "om-iu-bro-2019.09.27-000988", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819407777, - "stop_time_in_millis": 1569825601770, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 6193993, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73681468, - "total_time_in_millis": 863 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52315784542, - "reused_in_bytes": 0, - "total_in_bytes": 52315784542 - }, - "source_throttle_time_in_millis": 75206, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 1897703 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160144, - "stop_time_in_millis": 1569764060457, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1900312, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76269757, - "total_time_in_millis": 2562 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52269555131, - "reused_in_bytes": 0, - "total_in_bytes": 52269555131 - }, - "source_throttle_time_in_millis": 69914, - "target_throttle_time_in_millis": 49877, - "total_time_in_millis": 1934799 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160146, - "stop_time_in_millis": 1569764098341, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1938195, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76226111, - "total_time_in_millis": 2865 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50084554145, - "reused_in_bytes": 0, - "total_in_bytes": 50084554145 - }, - "source_throttle_time_in_millis": 5563470, - "target_throttle_time_in_millis": 5293110, - "total_time_in_millis": 10085402 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603826, - "stop_time_in_millis": 1569834690511, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 10086684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73702360, - "total_time_in_millis": 758 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49406158474, - "reused_in_bytes": 0, - "total_in_bytes": 49406158474 - }, - "source_throttle_time_in_millis": 4065, - "target_throttle_time_in_millis": 90, - "total_time_in_millis": 1430684 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569932491898, - "stop_time_in_millis": 1569933923219, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1431321, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73177577, - "total_time_in_millis": 622 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52420215324, - "reused_in_bytes": 0, - "total_in_bytes": 52420215324 - }, - "source_throttle_time_in_millis": 3750190, - "target_throttle_time_in_millis": 3462454, - "total_time_in_millis": 8222572 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772290311, - "stop_time_in_millis": 1569780516862, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 8226550, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73702360, - "total_time_in_millis": 3454 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51499816737, - "reused_in_bytes": 0, - "total_in_bytes": 51499816737 - }, - "source_throttle_time_in_millis": 3355488, - "target_throttle_time_in_millis": 1618732, - "total_time_in_millis": 6449506 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803528695, - "stop_time_in_millis": 1569809981318, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 6452623, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75511776, - "total_time_in_millis": 3102 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52334337272, - "reused_in_bytes": 0, - "total_in_bytes": 52334337272 - }, - "source_throttle_time_in_millis": 5233544, - "target_throttle_time_in_millis": 5560825, - "total_time_in_millis": 10230186 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794242772, - "stop_time_in_millis": 1569804476137, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 10233364, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76138394, - "total_time_in_millis": 3160 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53106927688, - "reused_in_bytes": 0, - "total_in_bytes": 53106927688 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 227266, - "total_time_in_millis": 1514625 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903752588, - "stop_time_in_millis": 1569905270061, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1517472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76195003, - "total_time_in_millis": 2837 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52290812063, - "reused_in_bytes": 0, - "total_in_bytes": 52290812063 - }, - "source_throttle_time_in_millis": 505364, - "target_throttle_time_in_millis": 5786802, - "total_time_in_millis": 6640069 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772198466, - "stop_time_in_millis": 1569778842196, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 6643729, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73587157, - "total_time_in_millis": 3645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50759972692, - "reused_in_bytes": 0, - "total_in_bytes": 50759972692 - }, - "source_throttle_time_in_millis": 1392076, - "target_throttle_time_in_millis": 6206839, - "total_time_in_millis": 7411330 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677535, - "stop_time_in_millis": 1569834089729, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 7412193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73501479, - "total_time_in_millis": 838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52754030554, - "reused_in_bytes": 0, - "total_in_bytes": 52754030554 - }, - "source_throttle_time_in_millis": 4000762, - "target_throttle_time_in_millis": 4430626, - "total_time_in_millis": 8917515 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258644, - "stop_time_in_millis": 1569781178141, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 8919497, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73564730, - "total_time_in_millis": 1963 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52309577603, - "reused_in_bytes": 0, - "total_in_bytes": 52309577603 - }, - "source_throttle_time_in_millis": 85646, - "target_throttle_time_in_millis": 138212, - "total_time_in_millis": 2084599 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160150, - "stop_time_in_millis": 1569764247531, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2087380, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76099136, - "total_time_in_millis": 2762 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51499816737, - "reused_in_bytes": 0, - "total_in_bytes": 51499816737 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 36948, - "total_time_in_millis": 1443109 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569932732409, - "stop_time_in_millis": 1569934178181, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1445772, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75511776, - "total_time_in_millis": 2643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 13 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781979174, - "stop_time_in_millis": 1569781983771, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 4597, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 4319 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50873045750, - "reused_in_bytes": 0, - "total_in_bytes": 50873045750 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 152, - "total_time_in_millis": 1113474 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569851799862, - "stop_time_in_millis": 1569852913918, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1114055, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73600621, - "total_time_in_millis": 572 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5844 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569764101684, - "stop_time_in_millis": 1569764108673, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6989, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 1094 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50873045750, - "reused_in_bytes": 0, - "total_in_bytes": 50873045750 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 19566, - "total_time_in_millis": 1550132 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569925496300, - "stop_time_in_millis": 1569927047080, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1550779, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73600621, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52334337272, - "reused_in_bytes": 0, - "total_in_bytes": 52334337272 - }, - "source_throttle_time_in_millis": 125632, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 1400409 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569901969991, - "stop_time_in_millis": 1569903372977, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1402986, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76138394, - "total_time_in_millis": 2566 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49981550605, - "reused_in_bytes": 0, - "total_in_bytes": 49981550605 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 50287, - "total_time_in_millis": 1629432 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569923636004, - "stop_time_in_millis": 1569925266227, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1630222, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73700798, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52203207611, - "reused_in_bytes": 0, - "total_in_bytes": 52203207611 - }, - "source_throttle_time_in_millis": 1546978, - "target_throttle_time_in_millis": 3734023, - "total_time_in_millis": 5925246 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258638, - "stop_time_in_millis": 1569778188193, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5929554, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73700798, - "total_time_in_millis": 3759 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50075448917, - "reused_in_bytes": 0, - "total_in_bytes": 50075448917 - }, - "source_throttle_time_in_millis": 6628412, - "target_throttle_time_in_millis": 1657582, - "total_time_in_millis": 9388038 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818508656, - "stop_time_in_millis": 1569827897446, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 9388790, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73593883, - "total_time_in_millis": 741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52335386430, - "reused_in_bytes": 0, - "total_in_bytes": 52335386430 - }, - "source_throttle_time_in_millis": 73967, - "target_throttle_time_in_millis": 54648, - "total_time_in_millis": 1929471 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160144, - "stop_time_in_millis": 1569764092295, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1932150, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76156847, - "total_time_in_millis": 2669 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 255, - "reused": 0, - "total": 255 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52758056359, - "reused_in_bytes": 0, - "total_in_bytes": 52758056359 - }, - "source_throttle_time_in_millis": 69410, - "target_throttle_time_in_millis": 9492, - "total_time_in_millis": 1921886 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160144, - "stop_time_in_millis": 1569764084228, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1924084, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75816298, - "total_time_in_millis": 1669 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52951014579, - "reused_in_bytes": 0, - "total_in_bytes": 52951014579 - }, - "source_throttle_time_in_millis": 533, - "target_throttle_time_in_millis": 64484, - "total_time_in_millis": 1601025 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569764180892, - "stop_time_in_millis": 1569765784799, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1603906, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76025673, - "total_time_in_millis": 2858 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52079922384, - "reused_in_bytes": 0, - "total_in_bytes": 52079922384 - }, - "source_throttle_time_in_millis": 5272857, - "target_throttle_time_in_millis": 4030376, - "total_time_in_millis": 10318209 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772319766, - "stop_time_in_millis": 1569782641554, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 10321788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73716033, - "total_time_in_millis": 3038 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53106927688, - "reused_in_bytes": 0, - "total_in_bytes": 53106927688 - }, - "source_throttle_time_in_millis": 5726354, - "target_throttle_time_in_millis": 3099392, - "total_time_in_millis": 9938524 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772075432, - "stop_time_in_millis": 1569782017739, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9942307, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73638054, - "total_time_in_millis": 3773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52315784542, - "reused_in_bytes": 0, - "total_in_bytes": 52315784542 - }, - "source_throttle_time_in_millis": 50368, - "target_throttle_time_in_millis": 128, - "total_time_in_millis": 1927603 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160144, - "stop_time_in_millis": 1569764090530, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1930386, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76269757, - "total_time_in_millis": 2769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49872233213, - "reused_in_bytes": 0, - "total_in_bytes": 49872233213 - }, - "source_throttle_time_in_millis": 5166186, - "target_throttle_time_in_millis": 2856691, - "total_time_in_millis": 8863324 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820704338, - "stop_time_in_millis": 1569829571135, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 8866796, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73652443, - "total_time_in_millis": 820 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52755238212, - "reused_in_bytes": 0, - "total_in_bytes": 52755238212 - }, - "source_throttle_time_in_millis": 68189, - "target_throttle_time_in_millis": 82, - "total_time_in_millis": 1960021 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160147, - "stop_time_in_millis": 1569764122631, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1962484, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75904800, - "total_time_in_millis": 1931 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52077179719, - "reused_in_bytes": 0, - "total_in_bytes": 52077179719 - }, - "source_throttle_time_in_millis": 78463, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 1867492 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160144, - "stop_time_in_millis": 1569764032204, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1872059, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76126863, - "total_time_in_millis": 2931 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51474762355, - "reused_in_bytes": 0, - "total_in_bytes": 51474762355 - }, - "source_throttle_time_in_millis": 48106, - "target_throttle_time_in_millis": 33340, - "total_time_in_millis": 3681054 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160145, - "stop_time_in_millis": 1569765844353, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 3684208, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75554370, - "total_time_in_millis": 2631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50730774670, - "reused_in_bytes": 0, - "total_in_bytes": 50730774670 - }, - "source_throttle_time_in_millis": 689506, - "target_throttle_time_in_millis": 54388, - "total_time_in_millis": 2360891 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867319, - "stop_time_in_millis": 1569838228813, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2361493, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73583409, - "total_time_in_millis": 593 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50837633564, - "reused_in_bytes": 0, - "total_in_bytes": 50837633564 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 725158, - "total_time_in_millis": 1775992 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931607578, - "stop_time_in_millis": 1569933384192, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1776614, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73589308, - "total_time_in_millis": 614 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52226957383, - "reused_in_bytes": 0, - "total_in_bytes": 52226957383 - }, - "source_throttle_time_in_millis": 69403, - "target_throttle_time_in_millis": 14389, - "total_time_in_millis": 1900704 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160148, - "stop_time_in_millis": 1569764063558, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1903410, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76003456, - "total_time_in_millis": 2681 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52335386430, - "reused_in_bytes": 0, - "total_in_bytes": 52335386430 - }, - "source_throttle_time_in_millis": 53182, - "target_throttle_time_in_millis": 132421, - "total_time_in_millis": 2037877 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569762160155, - "stop_time_in_millis": 1569764201169, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2041014, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76156847, - "total_time_in_millis": 3124 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52079922384, - "reused_in_bytes": 0, - "total_in_bytes": 52079922384 - }, - "source_throttle_time_in_millis": 3375581, - "target_throttle_time_in_millis": 4101854, - "total_time_in_millis": 7648375 - }, - "index_name": "om-iu-bro-2019.09.27-000989", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829232203, - "stop_time_in_millis": 1569836887876, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 7655672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76245384, - "total_time_in_millis": 7288 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 16 - }, - "index_name": ".reporting-2019.06.16", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322789657, - "stop_time_in_millis": 1566322790028, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 370, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 313 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".reporting-2019.06.16", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995865656, - "stop_time_in_millis": 1568995865883, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 226, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 153 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52330659507, - "reused_in_bytes": 0, - "total_in_bytes": 52330659507 - }, - "source_throttle_time_in_millis": 12246, - "target_throttle_time_in_millis": 126082, - "total_time_in_millis": 1366140 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855961242, - "stop_time_in_millis": 1569857327994, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1366752, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74688507, - "total_time_in_millis": 604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55373027498, - "reused_in_bytes": 0, - "total_in_bytes": 55373027498 - }, - "source_throttle_time_in_millis": 75096, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2298512 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735214, - "stop_time_in_millis": 1568963036801, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2301586, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78194176, - "total_time_in_millis": 2524 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52830483363, - "reused_in_bytes": 0, - "total_in_bytes": 52830483363 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 335446, - "total_time_in_millis": 1513367 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937428218, - "stop_time_in_millis": 1569938942238, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1514020, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74300013, - "total_time_in_millis": 642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53178397954, - "reused_in_bytes": 0, - "total_in_bytes": 53178397954 - }, - "source_throttle_time_in_millis": 2254565, - "target_throttle_time_in_millis": 6366778, - "total_time_in_millis": 8454739 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808409984, - "stop_time_in_millis": 1569816865512, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 8455527, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74768478, - "total_time_in_millis": 776 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52214543812, - "reused_in_bytes": 0, - "total_in_bytes": 52214543812 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 229, - "total_time_in_millis": 1266468 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976233740, - "stop_time_in_millis": 1569977500837, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1267097, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74844288, - "total_time_in_millis": 621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51410996689, - "reused_in_bytes": 0, - "total_in_bytes": 51410996689 - }, - "source_throttle_time_in_millis": 1047770, - "target_throttle_time_in_millis": 4335939, - "total_time_in_millis": 5365867 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732126, - "stop_time_in_millis": 1569841098642, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 5366515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73872289, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52992662901, - "reused_in_bytes": 0, - "total_in_bytes": 52992662901 - }, - "source_throttle_time_in_millis": 10166, - "target_throttle_time_in_millis": 19978, - "total_time_in_millis": 1383043 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881269486, - "stop_time_in_millis": 1569882653195, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1383708, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74495142, - "total_time_in_millis": 657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53026657939, - "reused_in_bytes": 0, - "total_in_bytes": 53026657939 - }, - "source_throttle_time_in_millis": 1948879, - "target_throttle_time_in_millis": 5374792, - "total_time_in_millis": 7111779 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782633557, - "stop_time_in_millis": 1569789747378, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 7113820, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74617851, - "total_time_in_millis": 2031 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55350342411, - "reused_in_bytes": 0, - "total_in_bytes": 55350342411 - }, - "source_throttle_time_in_millis": 62289, - "target_throttle_time_in_millis": 114, - "total_time_in_millis": 2432672 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735215, - "stop_time_in_millis": 1568963171196, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2435981, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78176844, - "total_time_in_millis": 2784 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52211046555, - "reused_in_bytes": 0, - "total_in_bytes": 52211046555 - }, - "source_throttle_time_in_millis": 64692, - "target_throttle_time_in_millis": 57329, - "total_time_in_millis": 2078775 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896328080, - "stop_time_in_millis": 1569898407643, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2079563, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74669078, - "total_time_in_millis": 772 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52951858317, - "reused_in_bytes": 0, - "total_in_bytes": 52951858317 - }, - "source_throttle_time_in_millis": 55790, - "target_throttle_time_in_millis": 195662, - "total_time_in_millis": 1676469 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569901593506, - "stop_time_in_millis": 1569903273404, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1679898, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74644466, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55995927005, - "reused_in_bytes": 0, - "total_in_bytes": 55995927005 - }, - "source_throttle_time_in_millis": 73603, - "target_throttle_time_in_millis": 34509, - "total_time_in_millis": 2390478 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735216, - "stop_time_in_millis": 1568963128571, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2393355, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77905056, - "total_time_in_millis": 2347 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55971618566, - "reused_in_bytes": 0, - "total_in_bytes": 55971618566 - }, - "source_throttle_time_in_millis": 81292, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2365703 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735213, - "stop_time_in_millis": 1568963104122, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2368908, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78085455, - "total_time_in_millis": 2683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52992662901, - "reused_in_bytes": 0, - "total_in_bytes": 52992662901 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 220, - "total_time_in_millis": 1360031 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892385759, - "stop_time_in_millis": 1569893746434, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1360675, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74495142, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55361070549, - "reused_in_bytes": 0, - "total_in_bytes": 55361070549 - }, - "source_throttle_time_in_millis": 89647, - "target_throttle_time_in_millis": 317, - "total_time_in_millis": 2556896 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735218, - "stop_time_in_millis": 1568963296484, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2561266, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78402607, - "total_time_in_millis": 2330 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55995927005, - "reused_in_bytes": 0, - "total_in_bytes": 55995927005 - }, - "source_throttle_time_in_millis": 73066, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2386988 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735213, - "stop_time_in_millis": 1568963124765, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2389551, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77905056, - "total_time_in_millis": 2549 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5493 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568963109401, - "stop_time_in_millis": 1568963115808, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6406, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 867 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52334221174, - "reused_in_bytes": 0, - "total_in_bytes": 52334221174 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 106989, - "total_time_in_millis": 1460775 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896743049, - "stop_time_in_millis": 1569898204479, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1461430, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74659397, - "total_time_in_millis": 646 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54157169763, - "reused_in_bytes": 0, - "total_in_bytes": 54157169763 - }, - "source_throttle_time_in_millis": 54288, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 4041603 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735214, - "stop_time_in_millis": 1568964779656, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 4044442, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77107728, - "total_time_in_millis": 2303 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52330659507, - "reused_in_bytes": 0, - "total_in_bytes": 52330659507 - }, - "source_throttle_time_in_millis": 5422859, - "target_throttle_time_in_millis": 3398758, - "total_time_in_millis": 9206380 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819468581, - "stop_time_in_millis": 1569828675648, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 9207067, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74688507, - "total_time_in_millis": 678 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52264762023, - "reused_in_bytes": 0, - "total_in_bytes": 52264762023 - }, - "source_throttle_time_in_millis": 4915538, - "target_throttle_time_in_millis": 4141438, - "total_time_in_millis": 9241542 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772197126, - "stop_time_in_millis": 1569781439429, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 9242303, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74785944, - "total_time_in_millis": 751 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49610032734, - "reused_in_bytes": 0, - "total_in_bytes": 49610032734 - }, - "source_throttle_time_in_millis": 1272836, - "target_throttle_time_in_millis": 3265981, - "total_time_in_millis": 5432648 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788879991, - "stop_time_in_millis": 1569794313950, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5433959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71141397, - "total_time_in_millis": 787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52360527100, - "reused_in_bytes": 0, - "total_in_bytes": 52360527100 - }, - "source_throttle_time_in_millis": 5450918, - "target_throttle_time_in_millis": 3013469, - "total_time_in_millis": 9203442 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258640, - "stop_time_in_millis": 1569781463325, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 9204684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74781114, - "total_time_in_millis": 718 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49610032734, - "reused_in_bytes": 0, - "total_in_bytes": 49610032734 - }, - "source_throttle_time_in_millis": 1444178, - "target_throttle_time_in_millis": 4503939, - "total_time_in_millis": 6437469 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795355025, - "stop_time_in_millis": 1569801793284, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 6438258, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71141397, - "total_time_in_millis": 767 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52211046555, - "reused_in_bytes": 0, - "total_in_bytes": 52211046555 - }, - "source_throttle_time_in_millis": 34510, - "target_throttle_time_in_millis": 76058, - "total_time_in_millis": 1406295 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569856269035, - "stop_time_in_millis": 1569857676028, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1406993, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74669078, - "total_time_in_millis": 683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55373027498, - "reused_in_bytes": 0, - "total_in_bytes": 55373027498 - }, - "source_throttle_time_in_millis": 63094, - "target_throttle_time_in_millis": 16611, - "total_time_in_millis": 2317521 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735214, - "stop_time_in_millis": 1568963056091, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2320877, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78194176, - "total_time_in_millis": 2811 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55350247168, - "reused_in_bytes": 0, - "total_in_bytes": 55350247168 - }, - "source_throttle_time_in_millis": 67277, - "target_throttle_time_in_millis": 4114, - "total_time_in_millis": 2371285 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735214, - "stop_time_in_millis": 1568963109668, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2374454, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78260262, - "total_time_in_millis": 2650 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55356532596, - "reused_in_bytes": 0, - "total_in_bytes": 55356532596 - }, - "source_throttle_time_in_millis": 71389, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2334667 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735214, - "stop_time_in_millis": 1568963072727, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2337513, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78145392, - "total_time_in_millis": 2324 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52264762023, - "reused_in_bytes": 0, - "total_in_bytes": 52264762023 - }, - "source_throttle_time_in_millis": 5848966, - "target_throttle_time_in_millis": 3739620, - "total_time_in_millis": 9810687 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569793383653, - "stop_time_in_millis": 1569803195944, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 9812290, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74785944, - "total_time_in_millis": 1585 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52385797005, - "reused_in_bytes": 0, - "total_in_bytes": 52385797005 - }, - "source_throttle_time_in_millis": 4610434, - "target_throttle_time_in_millis": 4863255, - "total_time_in_millis": 9948216 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772684397, - "stop_time_in_millis": 1569782633408, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 9949011, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74689480, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53026657939, - "reused_in_bytes": 0, - "total_in_bytes": 53026657939 - }, - "source_throttle_time_in_millis": 1480250, - "target_throttle_time_in_millis": 5583555, - "total_time_in_millis": 7198119 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790064795, - "stop_time_in_millis": 1569797264251, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7199456, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74617851, - "total_time_in_millis": 817 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55906546293, - "reused_in_bytes": 0, - "total_in_bytes": 55906546293 - }, - "source_throttle_time_in_millis": 104776, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2411267 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735217, - "stop_time_in_millis": 1568963149521, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2414304, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77831559, - "total_time_in_millis": 2351 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55251160760, - "reused_in_bytes": 0, - "total_in_bytes": 55251160760 - }, - "source_throttle_time_in_millis": 35590, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2482255 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960735215, - "stop_time_in_millis": 1568963220581, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2485365, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78450414, - "total_time_in_millis": 2471 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52308302797, - "reused_in_bytes": 0, - "total_in_bytes": 52308302797 - }, - "source_throttle_time_in_millis": 64050, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1253790 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931477942, - "stop_time_in_millis": 1569932732351, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1254409, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74771720, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55392379366, - "reused_in_bytes": 0, - "total_in_bytes": 55392379366 - }, - "source_throttle_time_in_millis": 4835, - "target_throttle_time_in_millis": 158714, - "total_time_in_millis": 1613072 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568963338503, - "stop_time_in_millis": 1568964954644, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1616141, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78398474, - "total_time_in_millis": 2977 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52357705852, - "reused_in_bytes": 0, - "total_in_bytes": 52357705852 - }, - "source_throttle_time_in_millis": 4954746, - "target_throttle_time_in_millis": 642040, - "total_time_in_millis": 6878730 - }, - "index_name": "om-iu-bro-2019.09.18-000945", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838707231, - "stop_time_in_millis": 1569845586614, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 6879383, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74841907, - "total_time_in_millis": 645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51206338730, - "reused_in_bytes": 0, - "total_in_bytes": 51206338730 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 166874, - "total_time_in_millis": 1331924 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569969379181, - "stop_time_in_millis": 1569970711798, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1332617, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73461471, - "total_time_in_millis": 683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51311167567, - "reused_in_bytes": 0, - "total_in_bytes": 51311167567 - }, - "source_throttle_time_in_millis": 3059109, - "target_throttle_time_in_millis": 3244384, - "total_time_in_millis": 6733080 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800638443, - "stop_time_in_millis": 1569807372304, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 6733861, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73440745, - "total_time_in_millis": 762 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50975252558, - "reused_in_bytes": 0, - "total_in_bytes": 50975252558 - }, - "source_throttle_time_in_millis": 6389679, - "target_throttle_time_in_millis": 1778058, - "total_time_in_millis": 9483626 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783806470, - "stop_time_in_millis": 1569793291300, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9484830, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72911526, - "total_time_in_millis": 681 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52846038519, - "reused_in_bytes": 0, - "total_in_bytes": 52846038519 - }, - "source_throttle_time_in_millis": 54411, - "target_throttle_time_in_millis": 37, - "total_time_in_millis": 4536206 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379928, - "stop_time_in_millis": 1569374918360, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 4538432, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75303949, - "total_time_in_millis": 2197 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51378726617, - "reused_in_bytes": 0, - "total_in_bytes": 51378726617 - }, - "source_throttle_time_in_millis": 331946, - "target_throttle_time_in_millis": 2694645, - "total_time_in_millis": 4298875 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772684115, - "stop_time_in_millis": 1569776983748, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 4299632, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73324530, - "total_time_in_millis": 737 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52007929124, - "reused_in_bytes": 0, - "total_in_bytes": 52007929124 - }, - "source_throttle_time_in_millis": 37915, - "target_throttle_time_in_millis": 1120538, - "total_time_in_millis": 2679049 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807610931, - "stop_time_in_millis": 1569810290825, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2679894, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73278517, - "total_time_in_millis": 824 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51915171984, - "reused_in_bytes": 0, - "total_in_bytes": 51915171984 - }, - "source_throttle_time_in_millis": 2054100, - "target_throttle_time_in_millis": 5645135, - "total_time_in_millis": 7455851 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483159, - "stop_time_in_millis": 1569832939832, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 7456673, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73120221, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51332135010, - "reused_in_bytes": 0, - "total_in_bytes": 51332135010 - }, - "source_throttle_time_in_millis": 3427265, - "target_throttle_time_in_millis": 5695082, - "total_time_in_millis": 8307850 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790129295, - "stop_time_in_millis": 1569798437848, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 8308553, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73383382, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55195468643, - "reused_in_bytes": 0, - "total_in_bytes": 55195468643 - }, - "source_throttle_time_in_millis": 71949, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 2297409 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379924, - "stop_time_in_millis": 1569372680682, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2300757, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76712209, - "total_time_in_millis": 2819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51413775639, - "reused_in_bytes": 0, - "total_in_bytes": 51413775639 - }, - "source_throttle_time_in_millis": 332813, - "target_throttle_time_in_millis": 33867, - "total_time_in_millis": 2036903 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902533469, - "stop_time_in_millis": 1569904571007, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2037538, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73289750, - "total_time_in_millis": 622 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51413775639, - "reused_in_bytes": 0, - "total_in_bytes": 51413775639 - }, - "source_throttle_time_in_millis": 5052113, - "target_throttle_time_in_millis": 4712788, - "total_time_in_millis": 10169745 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772744706, - "stop_time_in_millis": 1569782916382, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 10171676, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73289750, - "total_time_in_millis": 847 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 273, - "reused": 0, - "total": 273 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53557011157, - "reused_in_bytes": 0, - "total_in_bytes": 53557011157 - }, - "source_throttle_time_in_millis": 71211, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2213568 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379923, - "stop_time_in_millis": 1569372600562, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2220639, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75831691, - "total_time_in_millis": 1948 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55060627124, - "reused_in_bytes": 0, - "total_in_bytes": 55060627124 - }, - "source_throttle_time_in_millis": 41383, - "target_throttle_time_in_millis": 67, - "total_time_in_millis": 2545672 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379923, - "stop_time_in_millis": 1569372928575, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2548652, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76544612, - "total_time_in_millis": 2373 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54416770462, - "reused_in_bytes": 0, - "total_in_bytes": 54416770462 - }, - "source_throttle_time_in_millis": 67201, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2218991 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379923, - "stop_time_in_millis": 1569372601193, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2221269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76747140, - "total_time_in_millis": 2262 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52007929124, - "reused_in_bytes": 0, - "total_in_bytes": 52007929124 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 4619, - "total_time_in_millis": 1459619 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918492556, - "stop_time_in_millis": 1569919952765, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1460209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73278517, - "total_time_in_millis": 579 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5079 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569372615934, - "stop_time_in_millis": 1569372621866, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 5931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 812 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51311167567, - "reused_in_bytes": 0, - "total_in_bytes": 51311167567 - }, - "source_throttle_time_in_millis": 4851440, - "target_throttle_time_in_millis": 1207967, - "total_time_in_millis": 7341253 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784792908, - "stop_time_in_millis": 1569792135015, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 7342107, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73440745, - "total_time_in_millis": 831 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51975226911, - "reused_in_bytes": 0, - "total_in_bytes": 51975226911 - }, - "source_throttle_time_in_millis": 4317885, - "target_throttle_time_in_millis": 1919997, - "total_time_in_millis": 7893598 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772805593, - "stop_time_in_millis": 1569780700741, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 7895147, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73009986, - "total_time_in_millis": 1537 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54739501151, - "reused_in_bytes": 0, - "total_in_bytes": 54739501151 - }, - "source_throttle_time_in_millis": 98094, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2300125 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379922, - "stop_time_in_millis": 1569372682702, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2302779, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76300726, - "total_time_in_millis": 2106 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54274983927, - "reused_in_bytes": 0, - "total_in_bytes": 54274983927 - }, - "source_throttle_time_in_millis": 65837, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2233831 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379922, - "stop_time_in_millis": 1569372615872, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2235949, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76572334, - "total_time_in_millis": 2106 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5043 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569372579169, - "stop_time_in_millis": 1569372585143, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 5973, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 882 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51206338730, - "reused_in_bytes": 0, - "total_in_bytes": 51206338730 - }, - "source_throttle_time_in_millis": 5811151, - "target_throttle_time_in_millis": 5326602, - "total_time_in_millis": 10640047 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810004634, - "stop_time_in_millis": 1569820646105, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 10641471, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73461471, - "total_time_in_millis": 864 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55018063891, - "reused_in_bytes": 0, - "total_in_bytes": 55018063891 - }, - "source_throttle_time_in_millis": 68954, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2336599 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379923, - "stop_time_in_millis": 1569372719390, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2339467, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76597037, - "total_time_in_millis": 2346 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51378726617, - "reused_in_bytes": 0, - "total_in_bytes": 51378726617 - }, - "source_throttle_time_in_millis": 166791, - "target_throttle_time_in_millis": 171138, - "total_time_in_millis": 1754130 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903273475, - "stop_time_in_millis": 1569905028252, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1754776, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73324530, - "total_time_in_millis": 633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50542680256, - "reused_in_bytes": 0, - "total_in_bytes": 50542680256 - }, - "source_throttle_time_in_millis": 27234, - "target_throttle_time_in_millis": 36070, - "total_time_in_millis": 1248826 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569942714872, - "stop_time_in_millis": 1569943964372, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1249499, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72511493, - "total_time_in_millis": 665 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51736435079, - "reused_in_bytes": 0, - "total_in_bytes": 51736435079 - }, - "source_throttle_time_in_millis": 1612203, - "target_throttle_time_in_millis": 4229027, - "total_time_in_millis": 5950837 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792925700, - "stop_time_in_millis": 1569798877918, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 5952218, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72939016, - "total_time_in_millis": 855 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55132255711, - "reused_in_bytes": 0, - "total_in_bytes": 55132255711 - }, - "source_throttle_time_in_millis": 67256, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2272150 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379923, - "stop_time_in_millis": 1569372655121, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2275198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76539528, - "total_time_in_millis": 2514 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54367594341, - "reused_in_bytes": 0, - "total_in_bytes": 54367594341 - }, - "source_throttle_time_in_millis": 67461, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2264148 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379923, - "stop_time_in_millis": 1569372646820, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2266897, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76611493, - "total_time_in_millis": 2228 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51452802124, - "reused_in_bytes": 0, - "total_in_bytes": 51452802124 - }, - "source_throttle_time_in_millis": 4352950, - "target_throttle_time_in_millis": 2117756, - "total_time_in_millis": 7279171 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867334, - "stop_time_in_millis": 1569843149179, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 7281845, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73302661, - "total_time_in_millis": 1117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51443976796, - "reused_in_bytes": 0, - "total_in_bytes": 51443976796 - }, - "source_throttle_time_in_millis": 4842195, - "target_throttle_time_in_millis": 6215419, - "total_time_in_millis": 10154085 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788232225, - "stop_time_in_millis": 1569798387165, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 10154939, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73403215, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51423014390, - "reused_in_bytes": 0, - "total_in_bytes": 51423014390 - }, - "source_throttle_time_in_millis": 4372443, - "target_throttle_time_in_millis": 2631132, - "total_time_in_millis": 7573613 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817271343, - "stop_time_in_millis": 1569824845776, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7574433, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73302325, - "total_time_in_millis": 798 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50386217617, - "reused_in_bytes": 0, - "total_in_bytes": 50386217617 - }, - "source_throttle_time_in_millis": 2815618, - "target_throttle_time_in_millis": 1626190, - "total_time_in_millis": 5435724 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093266, - "stop_time_in_millis": 1569835529653, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 5436387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72449669, - "total_time_in_millis": 650 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51956535852, - "reused_in_bytes": 0, - "total_in_bytes": 51956535852 - }, - "source_throttle_time_in_millis": 2095936, - "target_throttle_time_in_millis": 4860451, - "total_time_in_millis": 7368317 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569771513487, - "stop_time_in_millis": 1569778882611, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 7369123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73091243, - "total_time_in_millis": 771 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51452802124, - "reused_in_bytes": 0, - "total_in_bytes": 51452802124 - }, - "source_throttle_time_in_millis": 50236, - "target_throttle_time_in_millis": 185234, - "total_time_in_millis": 1791710 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943081980, - "stop_time_in_millis": 1569944874329, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1792348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73302661, - "total_time_in_millis": 626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53418707070, - "reused_in_bytes": 0, - "total_in_bytes": 53418707070 - }, - "source_throttle_time_in_millis": 52294, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 4246770 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569370379924, - "stop_time_in_millis": 1569374630298, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 4250373, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75733504, - "total_time_in_millis": 3064 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51984874717, - "reused_in_bytes": 0, - "total_in_bytes": 51984874717 - }, - "source_throttle_time_in_millis": 76520, - "target_throttle_time_in_millis": 74, - "total_time_in_millis": 1405123 - }, - "index_name": "om-iu-bro-2019.09.22-000967", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569897999641, - "stop_time_in_millis": 1569899405364, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1405722, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73123997, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52374803412, - "reused_in_bytes": 0, - "total_in_bytes": 52374803412 - }, - "source_throttle_time_in_millis": 6071732, - "target_throttle_time_in_millis": 1270084, - "total_time_in_millis": 9053619 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820027490, - "stop_time_in_millis": 1569829081943, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 9054452, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74410165, - "total_time_in_millis": 805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55227445792, - "reused_in_bytes": 0, - "total_in_bytes": 55227445792 - }, - "source_throttle_time_in_millis": 76563, - "target_throttle_time_in_millis": 31996, - "total_time_in_millis": 2548065 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668446, - "stop_time_in_millis": 1568981219416, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2550969, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77607377, - "total_time_in_millis": 2345 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51687058268, - "reused_in_bytes": 0, - "total_in_bytes": 51687058268 - }, - "source_throttle_time_in_millis": 250228, - "target_throttle_time_in_millis": 24284, - "total_time_in_millis": 1625285 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569861398335, - "stop_time_in_millis": 1569863024219, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1625884, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74793712, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52431613966, - "reused_in_bytes": 0, - "total_in_bytes": 52431613966 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 4536552, - "total_time_in_millis": 4744875 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569575226623, - "stop_time_in_millis": 1569579972785, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 4746162, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74518872, - "total_time_in_millis": 1275 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568981228653, - "stop_time_in_millis": 1568981229476, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 822, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53850099345, - "reused_in_bytes": 0, - "total_in_bytes": 53850099345 - }, - "source_throttle_time_in_millis": 51288, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 3947356 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668447, - "stop_time_in_millis": 1568982619480, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 3951033, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77259743, - "total_time_in_millis": 3158 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51684102937, - "reused_in_bytes": 0, - "total_in_bytes": 51684102937 - }, - "source_throttle_time_in_millis": 40121, - "target_throttle_time_in_millis": 160, - "total_time_in_millis": 1310053 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976983161, - "stop_time_in_millis": 1569978293848, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1310687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74737868, - "total_time_in_millis": 624 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51777412901, - "reused_in_bytes": 0, - "total_in_bytes": 51777412901 - }, - "source_throttle_time_in_millis": 1677209, - "target_throttle_time_in_millis": 4576162, - "total_time_in_millis": 6665648 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569779759302, - "stop_time_in_millis": 1569786425835, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6666532, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74727832, - "total_time_in_millis": 869 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51832070957, - "reused_in_bytes": 0, - "total_in_bytes": 51832070957 - }, - "source_throttle_time_in_millis": 2376619, - "target_throttle_time_in_millis": 1140213, - "total_time_in_millis": 5416634 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831450843, - "stop_time_in_millis": 1569836869001, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5418157, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74770815, - "total_time_in_millis": 786 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49293311075, - "reused_in_bytes": 0, - "total_in_bytes": 49293311075 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 48823, - "total_time_in_millis": 1377653 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935589228, - "stop_time_in_millis": 1569936967552, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1378323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71385637, - "total_time_in_millis": 655 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52424244620, - "reused_in_bytes": 0, - "total_in_bytes": 52424244620 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 62778, - "total_time_in_millis": 1367313 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569900733809, - "stop_time_in_millis": 1569902101797, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1367988, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74673499, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51736172019, - "reused_in_bytes": 0, - "total_in_bytes": 51736172019 - }, - "source_throttle_time_in_millis": 116613, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1343360 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569953767202, - "stop_time_in_millis": 1569955111643, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1344440, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74778754, - "total_time_in_millis": 568 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52431613966, - "reused_in_bytes": 0, - "total_in_bytes": 52431613966 - }, - "source_throttle_time_in_millis": 3624484, - "target_throttle_time_in_millis": 5293625, - "total_time_in_millis": 9096094 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827983625, - "stop_time_in_millis": 1569837080497, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9096871, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74518872, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55268945709, - "reused_in_bytes": 0, - "total_in_bytes": 55268945709 - }, - "source_throttle_time_in_millis": 80976, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2424994 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668449, - "stop_time_in_millis": 1568981096332, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2427882, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77710544, - "total_time_in_millis": 2347 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51684102937, - "reused_in_bytes": 0, - "total_in_bytes": 51684102937 - }, - "source_throttle_time_in_millis": 112977, - "target_throttle_time_in_millis": 100660, - "total_time_in_millis": 1332794 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903378345, - "stop_time_in_millis": 1569904711749, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1333404, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74737868, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54526209409, - "reused_in_bytes": 0, - "total_in_bytes": 54526209409 - }, - "source_throttle_time_in_millis": 81576, - "target_throttle_time_in_millis": 17121, - "total_time_in_millis": 2556609 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668447, - "stop_time_in_millis": 1568981228621, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2560174, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77951287, - "total_time_in_millis": 2113 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55400590437, - "reused_in_bytes": 0, - "total_in_bytes": 55400590437 - }, - "source_throttle_time_in_millis": 82419, - "target_throttle_time_in_millis": 39, - "total_time_in_millis": 2296856 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668447, - "stop_time_in_millis": 1568980968132, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2299684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78123246, - "total_time_in_millis": 2305 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52415461833, - "reused_in_bytes": 0, - "total_in_bytes": 52415461833 - }, - "source_throttle_time_in_millis": 6767352, - "target_throttle_time_in_millis": 2160462, - "total_time_in_millis": 10022623 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781875100, - "stop_time_in_millis": 1569791898482, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 10023381, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74614689, - "total_time_in_millis": 740 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52284876763, - "reused_in_bytes": 0, - "total_in_bytes": 52284876763 - }, - "source_throttle_time_in_millis": 657027, - "target_throttle_time_in_millis": 6524812, - "total_time_in_millis": 7179708 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784488107, - "stop_time_in_millis": 1569791668726, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 7180619, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74252593, - "total_time_in_millis": 889 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51777412901, - "reused_in_bytes": 0, - "total_in_bytes": 51777412901 - }, - "source_throttle_time_in_millis": 2741488, - "target_throttle_time_in_millis": 35923, - "total_time_in_millis": 4310506 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569563056673, - "stop_time_in_millis": 1569567368298, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 4311624, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74727832, - "total_time_in_millis": 595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55400590434, - "reused_in_bytes": 0, - "total_in_bytes": 55400590434 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 130, - "total_time_in_millis": 1275962 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568980974818, - "stop_time_in_millis": 1568982253089, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1278271, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78123246, - "total_time_in_millis": 2293 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51710797253, - "reused_in_bytes": 0, - "total_in_bytes": 51710797253 - }, - "source_throttle_time_in_millis": 3068772, - "target_throttle_time_in_millis": 4079697, - "total_time_in_millis": 7115437 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817025363, - "stop_time_in_millis": 1569824142502, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 7117139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74569808, - "total_time_in_millis": 1688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4898 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568983275447, - "stop_time_in_millis": 1568983283128, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 7680, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2732 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52424244620, - "reused_in_bytes": 0, - "total_in_bytes": 52424244620 - }, - "source_throttle_time_in_millis": 1833564, - "target_throttle_time_in_millis": 1322102, - "total_time_in_millis": 4984669 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818421014, - "stop_time_in_millis": 1569823407501, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 4986487, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74673499, - "total_time_in_millis": 856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51687058268, - "reused_in_bytes": 0, - "total_in_bytes": 51687058268 - }, - "source_throttle_time_in_millis": 192286, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1542481 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903707386, - "stop_time_in_millis": 1569905250507, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1543120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74793712, - "total_time_in_millis": 628 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51986992651, - "reused_in_bytes": 0, - "total_in_bytes": 51986992651 - }, - "source_throttle_time_in_millis": 6351295, - "target_throttle_time_in_millis": 2577049, - "total_time_in_millis": 9668881 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828680406, - "stop_time_in_millis": 1569838350041, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9669634, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74900851, - "total_time_in_millis": 739 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55203745614, - "reused_in_bytes": 0, - "total_in_bytes": 55203745614 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 228, - "total_time_in_millis": 1302924 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568981109799, - "stop_time_in_millis": 1568982415101, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1305301, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77819255, - "total_time_in_millis": 2366 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51568454113, - "reused_in_bytes": 0, - "total_in_bytes": 51568454113 - }, - "source_throttle_time_in_millis": 356027, - "target_throttle_time_in_millis": 32315, - "total_time_in_millis": 1780213 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935249298, - "stop_time_in_millis": 1569937030100, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1780802, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74792201, - "total_time_in_millis": 572 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51710797253, - "reused_in_bytes": 0, - "total_in_bytes": 51710797253 - }, - "source_throttle_time_in_millis": 77780, - "target_throttle_time_in_millis": 2979, - "total_time_in_millis": 1312648 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961486568, - "stop_time_in_millis": 1569962799883, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1313314, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74569808, - "total_time_in_millis": 649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54762020561, - "reused_in_bytes": 0, - "total_in_bytes": 54762020561 - }, - "source_throttle_time_in_millis": 70940, - "target_throttle_time_in_millis": 32711, - "total_time_in_millis": 2250836 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668449, - "stop_time_in_millis": 1568980921916, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2253466, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78174689, - "total_time_in_millis": 2035 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51832070957, - "reused_in_bytes": 0, - "total_in_bytes": 51832070957 - }, - "source_throttle_time_in_millis": 1404701, - "target_throttle_time_in_millis": 5521079, - "total_time_in_millis": 7053247 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790064764, - "stop_time_in_millis": 1569797119396, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7054631, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74770815, - "total_time_in_millis": 819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54579275115, - "reused_in_bytes": 0, - "total_in_bytes": 54579275115 - }, - "source_throttle_time_in_millis": 66934, - "target_throttle_time_in_millis": 61, - "total_time_in_millis": 2270919 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668451, - "stop_time_in_millis": 1568980942118, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2273667, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77861768, - "total_time_in_millis": 2224 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54181061280, - "reused_in_bytes": 0, - "total_in_bytes": 54181061280 - }, - "source_throttle_time_in_millis": 60454, - "target_throttle_time_in_millis": 57855, - "total_time_in_millis": 2159750 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978668447, - "stop_time_in_millis": 1568980830346, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2161899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77859585, - "total_time_in_millis": 2118 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4997 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568982619581, - "stop_time_in_millis": 1568982625478, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 5897, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 857 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51791519353, - "reused_in_bytes": 0, - "total_in_bytes": 51791519353 - }, - "source_throttle_time_in_millis": 30084, - "target_throttle_time_in_millis": 4718471, - "total_time_in_millis": 5159097 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796287253, - "stop_time_in_millis": 1569801447836, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 5160583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74626386, - "total_time_in_millis": 1466 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51736172019, - "reused_in_bytes": 0, - "total_in_bytes": 51736172019 - }, - "source_throttle_time_in_millis": 14467, - "target_throttle_time_in_millis": 94120, - "total_time_in_millis": 1341594 - }, - "index_name": "om-iu-bro-2019.09.18-000946", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569860041179, - "stop_time_in_millis": 1569861383422, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1342243, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74778754, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50671421542, - "reused_in_bytes": 0, - "total_in_bytes": 50671421542 - }, - "source_throttle_time_in_millis": 1636441, - "target_throttle_time_in_millis": 4048437, - "total_time_in_millis": 6093526 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320049, - "stop_time_in_millis": 1569838414525, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 6094476, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73969688, - "total_time_in_millis": 938 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51274293628, - "reused_in_bytes": 0, - "total_in_bytes": 51274293628 - }, - "source_throttle_time_in_millis": 3422266, - "target_throttle_time_in_millis": 2048376, - "total_time_in_millis": 6865204 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772075370, - "stop_time_in_millis": 1569778941453, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 6866083, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73914529, - "total_time_in_millis": 841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50563960748, - "reused_in_bytes": 0, - "total_in_bytes": 50563960748 - }, - "source_throttle_time_in_millis": 4609012, - "target_throttle_time_in_millis": 5342461, - "total_time_in_millis": 9414042 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603842, - "stop_time_in_millis": 1569834018691, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9414848, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73995507, - "total_time_in_millis": 789 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52124744194, - "reused_in_bytes": 0, - "total_in_bytes": 52124744194 - }, - "source_throttle_time_in_millis": 164662, - "target_throttle_time_in_millis": 5237, - "total_time_in_millis": 2961156 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481888, - "stop_time_in_millis": 1568998445863, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2963975, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75634165, - "total_time_in_millis": 2799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4890 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568997580846, - "stop_time_in_millis": 1568997586712, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 5865, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 925 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50563960748, - "reused_in_bytes": 0, - "total_in_bytes": 50563960748 - }, - "source_throttle_time_in_millis": 56794, - "target_throttle_time_in_millis": 48872, - "total_time_in_millis": 1636863 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569882550764, - "stop_time_in_millis": 1569884188254, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1637490, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73995507, - "total_time_in_millis": 618 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51202451261, - "reused_in_bytes": 0, - "total_in_bytes": 51202451261 - }, - "source_throttle_time_in_millis": 3623788, - "target_throttle_time_in_millis": 4470002, - "total_time_in_millis": 8032972 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798067898, - "stop_time_in_millis": 1569806101749, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8033850, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73674525, - "total_time_in_millis": 833 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52898426278, - "reused_in_bytes": 0, - "total_in_bytes": 52898426278 - }, - "source_throttle_time_in_millis": 77670, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2328634 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481879, - "stop_time_in_millis": 1568997813682, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2331803, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75387563, - "total_time_in_millis": 2635 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51202451261, - "reused_in_bytes": 0, - "total_in_bytes": 51202451261 - }, - "source_throttle_time_in_millis": 3964604, - "target_throttle_time_in_millis": 4703548, - "total_time_in_millis": 8298856 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789767290, - "stop_time_in_millis": 1569798067019, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 8299728, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73674525, - "total_time_in_millis": 845 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50599249371, - "reused_in_bytes": 0, - "total_in_bytes": 50599249371 - }, - "source_throttle_time_in_millis": 886544, - "target_throttle_time_in_millis": 1295957, - "total_time_in_millis": 3260750 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706868, - "stop_time_in_millis": 1569841968814, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 3261946, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73888914, - "total_time_in_millis": 678 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50751761648, - "reused_in_bytes": 0, - "total_in_bytes": 50751761648 - }, - "source_throttle_time_in_millis": 4977181, - "target_throttle_time_in_millis": 4649568, - "total_time_in_millis": 10028613 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772744652, - "stop_time_in_millis": 1569782775140, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 10030487, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74083538, - "total_time_in_millis": 837 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52024810302, - "reused_in_bytes": 0, - "total_in_bytes": 52024810302 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 364, - "total_time_in_millis": 1259584 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568997703687, - "stop_time_in_millis": 1568998966096, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1262409, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75677222, - "total_time_in_millis": 2808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51371768745, - "reused_in_bytes": 0, - "total_in_bytes": 51371768745 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 147, - "total_time_in_millis": 1188038 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568999434447, - "stop_time_in_millis": 1569000624797, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1190350, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75143519, - "total_time_in_millis": 2299 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47862464441, - "reused_in_bytes": 0, - "total_in_bytes": 47862464441 - }, - "source_throttle_time_in_millis": 6392, - "target_throttle_time_in_millis": 59806, - "total_time_in_millis": 1181851 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963480980, - "stop_time_in_millis": 1569964663456, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1182475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70512847, - "total_time_in_millis": 613 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51158993162, - "reused_in_bytes": 0, - "total_in_bytes": 51158993162 - }, - "source_throttle_time_in_millis": 36349, - "target_throttle_time_in_millis": 189, - "total_time_in_millis": 1290441 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569951792471, - "stop_time_in_millis": 1569953083499, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1291028, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73501179, - "total_time_in_millis": 579 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51156275903, - "reused_in_bytes": 0, - "total_in_bytes": 51156275903 - }, - "source_throttle_time_in_millis": 4686341, - "target_throttle_time_in_millis": 4472358, - "total_time_in_millis": 9147544 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788258890, - "stop_time_in_millis": 1569797407269, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 9148378, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73747829, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52840691519, - "reused_in_bytes": 0, - "total_in_bytes": 52840691519 - }, - "source_throttle_time_in_millis": 79677, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2224681 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481880, - "stop_time_in_millis": 1568997709967, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2228087, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75328328, - "total_time_in_millis": 2869 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52898426278, - "reused_in_bytes": 0, - "total_in_bytes": 52898426278 - }, - "source_throttle_time_in_millis": 69760, - "target_throttle_time_in_millis": 10982, - "total_time_in_millis": 2328586 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481880, - "stop_time_in_millis": 1568997813648, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2331768, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75387563, - "total_time_in_millis": 2652 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51274293628, - "reused_in_bytes": 0, - "total_in_bytes": 51274293628 - }, - "source_throttle_time_in_millis": 23498, - "target_throttle_time_in_millis": 313, - "total_time_in_millis": 1274714 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956682377, - "stop_time_in_millis": 1569957957701, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1275323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73914529, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52055397927, - "reused_in_bytes": 0, - "total_in_bytes": 52055397927 - }, - "source_throttle_time_in_millis": 141821, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2336652 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481879, - "stop_time_in_millis": 1568997823148, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2341269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75735113, - "total_time_in_millis": 2572 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52121769483, - "reused_in_bytes": 0, - "total_in_bytes": 52121769483 - }, - "source_throttle_time_in_millis": 71551, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2107313 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481887, - "stop_time_in_millis": 1568997591818, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2109931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75653590, - "total_time_in_millis": 2607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50554846792, - "reused_in_bytes": 0, - "total_in_bytes": 50554846792 - }, - "source_throttle_time_in_millis": 621528, - "target_throttle_time_in_millis": 5708000, - "total_time_in_millis": 6304119 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569809572908, - "stop_time_in_millis": 1569815877909, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 6305001, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74052659, - "total_time_in_millis": 871 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52121769483, - "reused_in_bytes": 0, - "total_in_bytes": 52121769483 - }, - "source_throttle_time_in_millis": 70768, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2106810 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481882, - "stop_time_in_millis": 1568997591949, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2110066, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75653590, - "total_time_in_millis": 2739 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51184091143, - "reused_in_bytes": 0, - "total_in_bytes": 51184091143 - }, - "source_throttle_time_in_millis": 5590482, - "target_throttle_time_in_millis": 1399663, - "total_time_in_millis": 8485541 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783757604, - "stop_time_in_millis": 1569792243920, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 8486316, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73839225, - "total_time_in_millis": 758 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52024810305, - "reused_in_bytes": 0, - "total_in_bytes": 52024810305 - }, - "source_throttle_time_in_millis": 149070, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2213399 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481881, - "stop_time_in_millis": 1568997698500, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2216618, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75677222, - "total_time_in_millis": 2693 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52001783565, - "reused_in_bytes": 0, - "total_in_bytes": 52001783565 - }, - "source_throttle_time_in_millis": 75360, - "target_throttle_time_in_millis": 19804, - "total_time_in_millis": 2141543 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481883, - "stop_time_in_millis": 1568997628334, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2146451, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75786484, - "total_time_in_millis": 2793 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5055 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568997588943, - "stop_time_in_millis": 1568997594911, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5968, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 864 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50504899316, - "reused_in_bytes": 0, - "total_in_bytes": 50504899316 - }, - "source_throttle_time_in_millis": 2744476, - "target_throttle_time_in_millis": 4515401, - "total_time_in_millis": 7577501 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829789260, - "stop_time_in_millis": 1569837367530, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 7578269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73832898, - "total_time_in_millis": 757 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47862464441, - "reused_in_bytes": 0, - "total_in_bytes": 47862464441 - }, - "source_throttle_time_in_millis": 4281680, - "target_throttle_time_in_millis": 4597956, - "total_time_in_millis": 8857839 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772805672, - "stop_time_in_millis": 1569781664245, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 8858572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70512847, - "total_time_in_millis": 720 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51184091143, - "reused_in_bytes": 0, - "total_in_bytes": 51184091143 - }, - "source_throttle_time_in_millis": 4558860, - "target_throttle_time_in_millis": 4792303, - "total_time_in_millis": 9815427 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772684115, - "stop_time_in_millis": 1569782500731, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 9816616, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73839225, - "total_time_in_millis": 1087 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52001783565, - "reused_in_bytes": 0, - "total_in_bytes": 52001783565 - }, - "source_throttle_time_in_millis": 75920, - "target_throttle_time_in_millis": 18, - "total_time_in_millis": 2143573 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481883, - "stop_time_in_millis": 1568997628152, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2146269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75786484, - "total_time_in_millis": 2686 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51371768748, - "reused_in_bytes": 0, - "total_in_bytes": 51371768748 - }, - "source_throttle_time_in_millis": 93984, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3945230 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481882, - "stop_time_in_millis": 1568999430196, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 3948314, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75143519, - "total_time_in_millis": 2966 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50751761648, - "reused_in_bytes": 0, - "total_in_bytes": 50751761648 - }, - "source_throttle_time_in_millis": 8650, - "target_throttle_time_in_millis": 144809, - "total_time_in_millis": 1390764 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569938259125, - "stop_time_in_millis": 1569939650575, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1391449, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74083538, - "total_time_in_millis": 678 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51156275903, - "reused_in_bytes": 0, - "total_in_bytes": 51156275903 - }, - "source_throttle_time_in_millis": 105175, - "target_throttle_time_in_millis": 283, - "total_time_in_millis": 1276803 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569919173124, - "stop_time_in_millis": 1569920450534, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1277410, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73747829, - "total_time_in_millis": 595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52259204151, - "reused_in_bytes": 0, - "total_in_bytes": 52259204151 - }, - "source_throttle_time_in_millis": 168707, - "target_throttle_time_in_millis": 22033, - "total_time_in_millis": 2053925 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995481880, - "stop_time_in_millis": 1568997539337, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2057456, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75730014, - "total_time_in_millis": 3003 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50424306580, - "reused_in_bytes": 0, - "total_in_bytes": 50424306580 - }, - "source_throttle_time_in_millis": 4438509, - "target_throttle_time_in_millis": 3524709, - "total_time_in_millis": 8105446 - }, - "index_name": "om-iu-bro-2019.09.18-000947", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829232209, - "stop_time_in_millis": 1569837338522, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 8106312, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74072375, - "total_time_in_millis": 828 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 138, - "reused": 0, - "total": 138 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 536564841, - "reused_in_bytes": 0, - "total_in_bytes": 536564841 - }, - "source_throttle_time_in_millis": 1548, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 22962 - }, - "index_name": "om-iu-suricata-2019.09.22-000111", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421303506, - "stop_time_in_millis": 1569421327193, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 23686, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 121064, - "total_time_in_millis": 186 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 122, - "reused": 0, - "total": 122 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 529241565, - "reused_in_bytes": 0, - "total_in_bytes": 529241565 - }, - "source_throttle_time_in_millis": 730, - "target_throttle_time_in_millis": 282, - "total_time_in_millis": 15144 - }, - "index_name": "om-iu-suricata-2019.09.22-000111", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421349635, - "stop_time_in_millis": 1569421364868, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 15233, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 119763, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 122, - "reused": 0, - "total": 122 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 529241566, - "reused_in_bytes": 0, - "total_in_bytes": 529241566 - }, - "source_throttle_time_in_millis": 628, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 45352 - }, - "index_name": "om-iu-suricata-2019.09.22-000111", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421303507, - "stop_time_in_millis": 1569421349480, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 45972, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 119763, - "total_time_in_millis": 80 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 530587152, - "reused_in_bytes": 0, - "total_in_bytes": 530587152 - }, - "source_throttle_time_in_millis": 40019, - "target_throttle_time_in_millis": 48949, - "total_time_in_millis": 83343 - }, - "index_name": "om-iu-suricata-2019.09.22-000111", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569786018134, - "stop_time_in_millis": 1569786101545, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 83411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 121064, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 30, - "reused": 0, - "total": 30 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 504503, - "reused_in_bytes": 0, - "total_in_bytes": 504503 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 438 - }, - "index_name": ".ml-notifications", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568377295983, - "stop_time_in_millis": 1568377296561, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 108 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": ".ml-notifications", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886752, - "stop_time_in_millis": 1568995887354, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 601, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 297 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48761082809, - "reused_in_bytes": 0, - "total_in_bytes": 48761082809 - }, - "source_throttle_time_in_millis": 7496, - "target_throttle_time_in_millis": 216329, - "total_time_in_millis": 1346381 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569856726847, - "stop_time_in_millis": 1569858074452, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1347605, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70741442, - "total_time_in_millis": 1212 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51625120137, - "reused_in_bytes": 0, - "total_in_bytes": 51625120137 - }, - "source_throttle_time_in_millis": 116793, - "target_throttle_time_in_millis": 60017, - "total_time_in_millis": 1613138 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756263582, - "stop_time_in_millis": 1569757877390, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1613807, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74390962, - "total_time_in_millis": 656 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51695417588, - "reused_in_bytes": 0, - "total_in_bytes": 51695417588 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 62126, - "total_time_in_millis": 1241766 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940322276, - "stop_time_in_millis": 1569941564660, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1242384, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74453186, - "total_time_in_millis": 580 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51621402753, - "reused_in_bytes": 0, - "total_in_bytes": 51621402753 - }, - "source_throttle_time_in_millis": 1313, - "target_throttle_time_in_millis": 4330133, - "total_time_in_millis": 4642030 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569565533685, - "stop_time_in_millis": 1569570181801, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 4648116, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74473101, - "total_time_in_millis": 6074 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51234366940, - "reused_in_bytes": 0, - "total_in_bytes": 51234366940 - }, - "source_throttle_time_in_millis": 164566, - "target_throttle_time_in_millis": 4541938, - "total_time_in_millis": 4877711 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867311, - "stop_time_in_millis": 1569840745818, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 4878506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74065371, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52140866883, - "reused_in_bytes": 0, - "total_in_bytes": 52140866883 - }, - "source_throttle_time_in_millis": 83247, - "target_throttle_time_in_millis": 462630, - "total_time_in_millis": 1763236 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920833378, - "stop_time_in_millis": 1569922597308, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1763929, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74215364, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52438306938, - "reused_in_bytes": 0, - "total_in_bytes": 52438306938 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 49210, - "total_time_in_millis": 1315020 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881081313, - "stop_time_in_millis": 1569882396989, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1315676, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74178844, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52251447022, - "reused_in_bytes": 0, - "total_in_bytes": 52251447022 - }, - "source_throttle_time_in_millis": 104807, - "target_throttle_time_in_millis": 107073, - "total_time_in_millis": 1532409 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569938356659, - "stop_time_in_millis": 1569939890207, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1533548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74182057, - "total_time_in_millis": 625 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52353011283, - "reused_in_bytes": 0, - "total_in_bytes": 52353011283 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 24770, - "total_time_in_millis": 1566320 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569878294786, - "stop_time_in_millis": 1569879861816, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1567029, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74116067, - "total_time_in_millis": 700 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54195918702, - "reused_in_bytes": 0, - "total_in_bytes": 54195918702 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 120, - "total_time_in_millis": 1543321 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569015094042, - "stop_time_in_millis": 1569016639974, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1545931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77578552, - "total_time_in_millis": 2593 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51830618440, - "reused_in_bytes": 0, - "total_in_bytes": 51830618440 - }, - "source_throttle_time_in_millis": 6503885, - "target_throttle_time_in_millis": 1072696, - "total_time_in_millis": 9096377 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432712, - "stop_time_in_millis": 1569837529798, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 9097086, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74433029, - "total_time_in_millis": 694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 336, - "reused": 0, - "total": 336 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54426609840, - "reused_in_bytes": 0, - "total_in_bytes": 54426609840 - }, - "source_throttle_time_in_millis": 63819, - "target_throttle_time_in_millis": 5499, - "total_time_in_millis": 1822650 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381096, - "stop_time_in_millis": 1569015206523, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1825426, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77661024, - "total_time_in_millis": 2245 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54263814360, - "reused_in_bytes": 0, - "total_in_bytes": 54263814360 - }, - "source_throttle_time_in_millis": 70664, - "target_throttle_time_in_millis": 897, - "total_time_in_millis": 1902488 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381096, - "stop_time_in_millis": 1569015286266, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1905170, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77335157, - "total_time_in_millis": 2075 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54195918705, - "reused_in_bytes": 0, - "total_in_bytes": 54195918705 - }, - "source_throttle_time_in_millis": 89197, - "target_throttle_time_in_millis": 91, - "total_time_in_millis": 1705302 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381096, - "stop_time_in_millis": 1569015088685, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1707588, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77578552, - "total_time_in_millis": 2272 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51721274101, - "reused_in_bytes": 0, - "total_in_bytes": 51721274101 - }, - "source_throttle_time_in_millis": 4200941, - "target_throttle_time_in_millis": 5372426, - "total_time_in_millis": 9465696 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807610910, - "stop_time_in_millis": 1569817077475, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 9466565, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74289978, - "total_time_in_millis": 856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51904786398, - "reused_in_bytes": 0, - "total_in_bytes": 51904786398 - }, - "source_throttle_time_in_millis": 108983, - "target_throttle_time_in_millis": 56876, - "total_time_in_millis": 1570046 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569955111686, - "stop_time_in_millis": 1569956682333, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1570647, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74470186, - "total_time_in_millis": 592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52438306938, - "reused_in_bytes": 0, - "total_in_bytes": 52438306938 - }, - "source_throttle_time_in_millis": 3012163, - "target_throttle_time_in_millis": 5305807, - "total_time_in_millis": 8026462 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825875093, - "stop_time_in_millis": 1569833902379, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 8027285, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74178844, - "total_time_in_millis": 792 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48761082809, - "reused_in_bytes": 0, - "total_in_bytes": 48761082809 - }, - "source_throttle_time_in_millis": 5491165, - "target_throttle_time_in_millis": 4119419, - "total_time_in_millis": 9626296 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818139966, - "stop_time_in_millis": 1569827767212, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 9627245, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70741442, - "total_time_in_millis": 895 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55023696427, - "reused_in_bytes": 0, - "total_in_bytes": 55023696427 - }, - "source_throttle_time_in_millis": 493267, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2438673 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381096, - "stop_time_in_millis": 1569015822665, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2441568, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77304313, - "total_time_in_millis": 2329 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51904786398, - "reused_in_bytes": 0, - "total_in_bytes": 51904786398 - }, - "source_throttle_time_in_millis": 292825, - "target_throttle_time_in_millis": 6384, - "total_time_in_millis": 1642540 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569895099832, - "stop_time_in_millis": 1569896742985, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1643152, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74470186, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55245223979, - "reused_in_bytes": 0, - "total_in_bytes": 55245223979 - }, - "source_throttle_time_in_millis": 44856, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1707581 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381098, - "stop_time_in_millis": 1569015091121, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1710023, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77332737, - "total_time_in_millis": 2424 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52140866883, - "reused_in_bytes": 0, - "total_in_bytes": 52140866883 - }, - "source_throttle_time_in_millis": 4278083, - "target_throttle_time_in_millis": 5499287, - "total_time_in_millis": 9341096 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808162866, - "stop_time_in_millis": 1569817504813, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 9341946, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74215364, - "total_time_in_millis": 838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54418002885, - "reused_in_bytes": 0, - "total_in_bytes": 54418002885 - }, - "source_throttle_time_in_millis": 59857, - "target_throttle_time_in_millis": 82, - "total_time_in_millis": 1853265 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381095, - "stop_time_in_millis": 1569015236882, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1855787, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77502043, - "total_time_in_millis": 1990 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51678475197, - "reused_in_bytes": 0, - "total_in_bytes": 51678475197 - }, - "source_throttle_time_in_millis": 58208, - "target_throttle_time_in_millis": 51, - "total_time_in_millis": 1703730 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569563056677, - "stop_time_in_millis": 1569564761122, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1704445, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74340658, - "total_time_in_millis": 693 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51576640012, - "reused_in_bytes": 0, - "total_in_bytes": 51576640012 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 5340778, - "total_time_in_millis": 5134807 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435688, - "stop_time_in_millis": 1569848571224, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5135535, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74251192, - "total_time_in_millis": 722 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51721274101, - "reused_in_bytes": 0, - "total_in_bytes": 51721274101 - }, - "source_throttle_time_in_millis": 5649172, - "target_throttle_time_in_millis": 3106004, - "total_time_in_millis": 9763605 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772075424, - "stop_time_in_millis": 1569781839783, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9764358, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74289978, - "total_time_in_millis": 745 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51621402753, - "reused_in_bytes": 0, - "total_in_bytes": 51621402753 - }, - "source_throttle_time_in_millis": 29031, - "target_throttle_time_in_millis": 44164, - "total_time_in_millis": 1777685 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569898151702, - "stop_time_in_millis": 1569899930110, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1778408, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74473101, - "total_time_in_millis": 704 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 339, - "reused": 0, - "total": 339 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54331117447, - "reused_in_bytes": 0, - "total_in_bytes": 54331117447 - }, - "source_throttle_time_in_millis": 68910, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1803678 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381094, - "stop_time_in_millis": 1569015187061, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1805966, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77503387, - "total_time_in_millis": 2274 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52343877919, - "reused_in_bytes": 0, - "total_in_bytes": 52343877919 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 299102, - "total_time_in_millis": 1513411 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569879528749, - "stop_time_in_millis": 1569881042838, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1514088, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74302819, - "total_time_in_millis": 669 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54361311887, - "reused_in_bytes": 0, - "total_in_bytes": 54361311887 - }, - "source_throttle_time_in_millis": 71168, - "target_throttle_time_in_millis": 121121, - "total_time_in_millis": 1916179 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381095, - "stop_time_in_millis": 1569015300128, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1919033, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77311526, - "total_time_in_millis": 2279 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51576640012, - "reused_in_bytes": 0, - "total_in_bytes": 51576640012 - }, - "source_throttle_time_in_millis": 1388766, - "target_throttle_time_in_millis": 5507082, - "total_time_in_millis": 7025020 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790064754, - "stop_time_in_millis": 1569797091009, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7026254, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74251192, - "total_time_in_millis": 716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52278411293, - "reused_in_bytes": 0, - "total_in_bytes": 52278411293 - }, - "source_throttle_time_in_millis": 385019, - "target_throttle_time_in_millis": 125717, - "total_time_in_millis": 2061972 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881143499, - "stop_time_in_millis": 1569883206044, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2062545, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74186157, - "total_time_in_millis": 563 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51597300139, - "reused_in_bytes": 0, - "total_in_bytes": 51597300139 - }, - "source_throttle_time_in_millis": 1713268, - "target_throttle_time_in_millis": 3675579, - "total_time_in_millis": 5913473 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569786104946, - "stop_time_in_millis": 1569792019249, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 5914303, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74268402, - "total_time_in_millis": 817 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53696699308, - "reused_in_bytes": 0, - "total_in_bytes": 53696699308 - }, - "source_throttle_time_in_millis": 49023, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2861961 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569013381095, - "stop_time_in_millis": 1569016245074, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2863979, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76874171, - "total_time_in_millis": 2004 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52278411293, - "reused_in_bytes": 0, - "total_in_bytes": 52278411293 - }, - "source_throttle_time_in_millis": 196134, - "target_throttle_time_in_millis": 196551, - "total_time_in_millis": 1896646 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569760839383, - "stop_time_in_millis": 1569762736753, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1897370, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74186157, - "total_time_in_millis": 707 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52251447022, - "reused_in_bytes": 0, - "total_in_bytes": 52251447022 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 12435, - "total_time_in_millis": 1277436 - }, - "index_name": "om-iu-bro-2019.09.18-000948", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569882773336, - "stop_time_in_millis": 1569884051407, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1278070, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74182057, - "total_time_in_millis": 626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50308969769, - "reused_in_bytes": 0, - "total_in_bytes": 50308969769 - }, - "source_throttle_time_in_millis": 48753, - "target_throttle_time_in_millis": 4703372, - "total_time_in_millis": 5074609 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706877, - "stop_time_in_millis": 1569843782261, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 5075383, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73785615, - "total_time_in_millis": 750 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52394616334, - "reused_in_bytes": 0, - "total_in_bytes": 52394616334 - }, - "source_throttle_time_in_millis": 66804, - "target_throttle_time_in_millis": 23661, - "total_time_in_millis": 2241942 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518035, - "stop_time_in_millis": 1569338763159, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2245124, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76305324, - "total_time_in_millis": 2661 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49708963031, - "reused_in_bytes": 0, - "total_in_bytes": 49708963031 - }, - "source_throttle_time_in_millis": 32488, - "target_throttle_time_in_millis": 2815, - "total_time_in_millis": 1244204 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929194644, - "stop_time_in_millis": 1569930439432, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1244788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74156073, - "total_time_in_millis": 574 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49712131180, - "reused_in_bytes": 0, - "total_in_bytes": 49712131180 - }, - "source_throttle_time_in_millis": 4815398, - "target_throttle_time_in_millis": 2286896, - "total_time_in_millis": 7848732 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569785412563, - "stop_time_in_millis": 1569793262061, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7849498, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74257855, - "total_time_in_millis": 748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49678693282, - "reused_in_bytes": 0, - "total_in_bytes": 49678693282 - }, - "source_throttle_time_in_millis": 53040, - "target_throttle_time_in_millis": 159817, - "total_time_in_millis": 1738229 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569764283952, - "stop_time_in_millis": 1569766022797, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1738844, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74326008, - "total_time_in_millis": 604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51658082734, - "reused_in_bytes": 0, - "total_in_bytes": 51658082734 - }, - "source_throttle_time_in_millis": 65407, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2078003 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518033, - "stop_time_in_millis": 1569338598981, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2080947, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76445156, - "total_time_in_millis": 2356 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49298493561, - "reused_in_bytes": 0, - "total_in_bytes": 49298493561 - }, - "source_throttle_time_in_millis": 5373147, - "target_throttle_time_in_millis": 5121970, - "total_time_in_millis": 9766485 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792348612, - "stop_time_in_millis": 1569802115895, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9767282, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73615757, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50176918164, - "reused_in_bytes": 0, - "total_in_bytes": 50176918164 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 456, - "total_time_in_millis": 1311138 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569927821734, - "stop_time_in_millis": 1569929133498, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1311764, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73829292, - "total_time_in_millis": 614 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4695 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569338668955, - "stop_time_in_millis": 1569338674503, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5547, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 802 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49612342260, - "reused_in_bytes": 0, - "total_in_bytes": 49612342260 - }, - "source_throttle_time_in_millis": 620446, - "target_throttle_time_in_millis": 3523232, - "total_time_in_millis": 4841496 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800934206, - "stop_time_in_millis": 1569805776467, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 4842261, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74168326, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49217668120, - "reused_in_bytes": 0, - "total_in_bytes": 49217668120 - }, - "source_throttle_time_in_millis": 48886, - "target_throttle_time_in_millis": 459113, - "total_time_in_millis": 1674572 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569953819179, - "stop_time_in_millis": 1569955494551, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1675371, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73882167, - "total_time_in_millis": 756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51464452149, - "reused_in_bytes": 0, - "total_in_bytes": 51464452149 - }, - "source_throttle_time_in_millis": 65089, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2068686 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518034, - "stop_time_in_millis": 1569338589351, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2071316, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76162429, - "total_time_in_millis": 2619 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52394616334, - "reused_in_bytes": 0, - "total_in_bytes": 52394616334 - }, - "source_throttle_time_in_millis": 81531, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2211797 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518033, - "stop_time_in_millis": 1569338732608, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2214574, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76305324, - "total_time_in_millis": 2769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51500776714, - "reused_in_bytes": 0, - "total_in_bytes": 51500776714 - }, - "source_throttle_time_in_millis": 62423, - "target_throttle_time_in_millis": 77027, - "total_time_in_millis": 2074816 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518032, - "stop_time_in_millis": 1569338596367, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2078335, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76251734, - "total_time_in_millis": 3001 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49870519612, - "reused_in_bytes": 0, - "total_in_bytes": 49870519612 - }, - "source_throttle_time_in_millis": 70726, - "target_throttle_time_in_millis": 70896, - "total_time_in_millis": 1328928 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855319933, - "stop_time_in_millis": 1569856649459, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1329526, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74306541, - "total_time_in_millis": 587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49846962046, - "reused_in_bytes": 0, - "total_in_bytes": 49846962046 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 108, - "total_time_in_millis": 1078537 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884128733, - "stop_time_in_millis": 1569885207837, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1079103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74237820, - "total_time_in_millis": 557 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50309245657, - "reused_in_bytes": 0, - "total_in_bytes": 50309245657 - }, - "source_throttle_time_in_millis": 1571849, - "target_throttle_time_in_millis": 3738987, - "total_time_in_millis": 6031895 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801983802, - "stop_time_in_millis": 1569808016579, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6032776, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74024665, - "total_time_in_millis": 864 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49142500576, - "reused_in_bytes": 0, - "total_in_bytes": 49142500576 - }, - "source_throttle_time_in_millis": 180100, - "target_throttle_time_in_millis": 11720, - "total_time_in_millis": 1405287 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876359912, - "stop_time_in_millis": 1569877765805, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1405892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73841756, - "total_time_in_millis": 596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569338660001, - "stop_time_in_millis": 1569338660825, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 823, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52190830868, - "reused_in_bytes": 0, - "total_in_bytes": 52190830868 - }, - "source_throttle_time_in_millis": 89916, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 2488005 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518032, - "stop_time_in_millis": 1569339009154, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2491121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75844441, - "total_time_in_millis": 2589 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49846962046, - "reused_in_bytes": 0, - "total_in_bytes": 49846962046 - }, - "source_throttle_time_in_millis": 110026, - "target_throttle_time_in_millis": 6357, - "total_time_in_millis": 1368852 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569894957304, - "stop_time_in_millis": 1569896326749, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1369444, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74237820, - "total_time_in_millis": 581 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50222628058, - "reused_in_bytes": 0, - "total_in_bytes": 50222628058 - }, - "source_throttle_time_in_millis": 1509253, - "target_throttle_time_in_millis": 3765163, - "total_time_in_millis": 5818962 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819612082, - "stop_time_in_millis": 1569825431833, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5819750, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73892433, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49462996706, - "reused_in_bytes": 0, - "total_in_bytes": 49462996706 - }, - "source_throttle_time_in_millis": 13744, - "target_throttle_time_in_millis": 381, - "total_time_in_millis": 1170236 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962251207, - "stop_time_in_millis": 1569963422048, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1170840, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74212193, - "total_time_in_millis": 596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52125553566, - "reused_in_bytes": 0, - "total_in_bytes": 52125553566 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 231, - "total_time_in_millis": 1489556 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569338723957, - "stop_time_in_millis": 1569340216386, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1492429, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76006989, - "total_time_in_millis": 2852 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51123380771, - "reused_in_bytes": 0, - "total_in_bytes": 51123380771 - }, - "source_throttle_time_in_millis": 57534, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 2105565 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518032, - "stop_time_in_millis": 1569338626379, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2108346, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75680417, - "total_time_in_millis": 2266 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49712131180, - "reused_in_bytes": 0, - "total_in_bytes": 49712131180 - }, - "source_throttle_time_in_millis": 5087964, - "target_throttle_time_in_millis": 2832388, - "total_time_in_millis": 8895065 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432786, - "stop_time_in_millis": 1569837330187, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 8897401, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74257855, - "total_time_in_millis": 782 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50306973087, - "reused_in_bytes": 0, - "total_in_bytes": 50306973087 - }, - "source_throttle_time_in_millis": 99849, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1380761 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569891961961, - "stop_time_in_millis": 1569893343381, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1381419, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74026525, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49870519612, - "reused_in_bytes": 0, - "total_in_bytes": 49870519612 - }, - "source_throttle_time_in_millis": 14147, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 1201781 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569911499323, - "stop_time_in_millis": 1569912701688, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1202364, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74306541, - "total_time_in_millis": 576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49142500576, - "reused_in_bytes": 0, - "total_in_bytes": 49142500576 - }, - "source_throttle_time_in_millis": 127931, - "target_throttle_time_in_millis": 53242, - "total_time_in_millis": 1743706 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569872334414, - "stop_time_in_millis": 1569874078764, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1744349, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73841756, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51464452149, - "reused_in_bytes": 0, - "total_in_bytes": 51464452149 - }, - "source_throttle_time_in_millis": 64475, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2068688 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518032, - "stop_time_in_millis": 1569338589432, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2071400, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76162429, - "total_time_in_millis": 2701 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49708963031, - "reused_in_bytes": 0, - "total_in_bytes": 49708963031 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 22313, - "total_time_in_millis": 1648954 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569895053276, - "stop_time_in_millis": 1569896702834, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1649558, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74156073, - "total_time_in_millis": 596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51327588426, - "reused_in_bytes": 0, - "total_in_bytes": 51327588426 - }, - "source_throttle_time_in_millis": 90574, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2055365 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569336518033, - "stop_time_in_millis": 1569338577534, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2059500, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76291794, - "total_time_in_millis": 2512 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49217668120, - "reused_in_bytes": 0, - "total_in_bytes": 49217668120 - }, - "source_throttle_time_in_millis": 4828816, - "target_throttle_time_in_millis": 4919571, - "total_time_in_millis": 9263682 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821535807, - "stop_time_in_millis": 1569830800187, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 9264380, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73882167, - "total_time_in_millis": 681 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50309245657, - "reused_in_bytes": 0, - "total_in_bytes": 50309245657 - }, - "source_throttle_time_in_millis": 1063216, - "target_throttle_time_in_millis": 4643096, - "total_time_in_millis": 5781282 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788879977, - "stop_time_in_millis": 1569794662850, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 5782872, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74024665, - "total_time_in_millis": 1067 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49678693282, - "reused_in_bytes": 0, - "total_in_bytes": 49678693282 - }, - "source_throttle_time_in_millis": 6321526, - "target_throttle_time_in_millis": 3105445, - "total_time_in_millis": 10186672 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783196321, - "stop_time_in_millis": 1569793383695, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 10187373, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74326008, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49734968019, - "reused_in_bytes": 0, - "total_in_bytes": 49734968019 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 2563, - "total_time_in_millis": 1263802 - }, - "index_name": "om-iu-bro-2019.09.22-000965", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876439871, - "stop_time_in_millis": 1569877704280, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1264408, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74252919, - "total_time_in_millis": 595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50300725296, - "reused_in_bytes": 0, - "total_in_bytes": 50300725296 - }, - "source_throttle_time_in_millis": 338895, - "target_throttle_time_in_millis": 1924325, - "total_time_in_millis": 3299694 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823272407, - "stop_time_in_millis": 1569826572861, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 3300453, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72013170, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50973774627, - "reused_in_bytes": 0, - "total_in_bytes": 50973774627 - }, - "source_throttle_time_in_millis": 6629, - "target_throttle_time_in_millis": 152, - "total_time_in_millis": 1161884 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569909094337, - "stop_time_in_millis": 1569910258357, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1164020, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72814155, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54413500569, - "reused_in_bytes": 0, - "total_in_bytes": 54413500569 - }, - "source_throttle_time_in_millis": 66222, - "target_throttle_time_in_millis": 147679, - "total_time_in_millis": 2156601 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506509, - "stop_time_in_millis": 1569033665971, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2159462, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76551103, - "total_time_in_millis": 2325 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50952465552, - "reused_in_bytes": 0, - "total_in_bytes": 50952465552 - }, - "source_throttle_time_in_millis": 4277, - "target_throttle_time_in_millis": 221, - "total_time_in_millis": 1501442 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892430165, - "stop_time_in_millis": 1569893932225, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1502059, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72531400, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51100722528, - "reused_in_bytes": 0, - "total_in_bytes": 51100722528 - }, - "source_throttle_time_in_millis": 496197, - "target_throttle_time_in_millis": 5667702, - "total_time_in_millis": 5983067 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788258864, - "stop_time_in_millis": 1569794242706, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 5983842, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72722630, - "total_time_in_millis": 732 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51647460093, - "reused_in_bytes": 0, - "total_in_bytes": 51647460093 - }, - "source_throttle_time_in_millis": 1674203, - "target_throttle_time_in_millis": 1041914, - "total_time_in_millis": 4559382 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806685071, - "stop_time_in_millis": 1569811246799, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 4561727, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72613187, - "total_time_in_millis": 705 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51056817197, - "reused_in_bytes": 0, - "total_in_bytes": 51056817197 - }, - "source_throttle_time_in_millis": 2721901, - "target_throttle_time_in_millis": 5420651, - "total_time_in_millis": 7655245 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569793935785, - "stop_time_in_millis": 1569801592213, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 7656428, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72766280, - "total_time_in_millis": 1155 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50783718832, - "reused_in_bytes": 0, - "total_in_bytes": 50783718832 - }, - "source_throttle_time_in_millis": 3846796, - "target_throttle_time_in_millis": 4947644, - "total_time_in_millis": 8828566 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258791, - "stop_time_in_millis": 1569781088233, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 8829441, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72713428, - "total_time_in_millis": 772 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55004697447, - "reused_in_bytes": 0, - "total_in_bytes": 55004697447 - }, - "source_throttle_time_in_millis": 93724, - "target_throttle_time_in_millis": 30849, - "total_time_in_millis": 1828003 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506516, - "stop_time_in_millis": 1569033337168, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1830652, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76323144, - "total_time_in_millis": 2628 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51647460093, - "reused_in_bytes": 0, - "total_in_bytes": 51647460093 - }, - "source_throttle_time_in_millis": 4583918, - "target_throttle_time_in_millis": 2682219, - "total_time_in_millis": 8135828 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775384228, - "stop_time_in_millis": 1569783520910, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 8136682, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72613187, - "total_time_in_millis": 835 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55086623295, - "reused_in_bytes": 0, - "total_in_bytes": 55086623295 - }, - "source_throttle_time_in_millis": 69847, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1954027 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506509, - "stop_time_in_millis": 1569033462927, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1956418, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76643905, - "total_time_in_millis": 2374 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47955287316, - "reused_in_bytes": 0, - "total_in_bytes": 47955287316 - }, - "source_throttle_time_in_millis": 107089, - "target_throttle_time_in_millis": 249723, - "total_time_in_millis": 1740831 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884184230, - "stop_time_in_millis": 1569885925610, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1741380, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69035672, - "total_time_in_millis": 538 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 336, - "reused": 0, - "total": 336 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54986131495, - "reused_in_bytes": 0, - "total_in_bytes": 54986131495 - }, - "source_throttle_time_in_millis": 449070, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2466925 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506540, - "stop_time_in_millis": 1569033976038, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2469498, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76622162, - "total_time_in_millis": 2560 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 273, - "reused": 0, - "total": 273 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53318170920, - "reused_in_bytes": 0, - "total_in_bytes": 53318170920 - }, - "source_throttle_time_in_millis": 47751, - "target_throttle_time_in_millis": 13965, - "total_time_in_millis": 2953748 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506508, - "stop_time_in_millis": 1569034462216, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2955707, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75548846, - "total_time_in_millis": 1949 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51571043948, - "reused_in_bytes": 0, - "total_in_bytes": 51571043948 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 116082, - "total_time_in_millis": 1603421 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569857029242, - "stop_time_in_millis": 1569858637040, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1607797, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72569107, - "total_time_in_millis": 4368 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51622031490, - "reused_in_bytes": 0, - "total_in_bytes": 51622031490 - }, - "source_throttle_time_in_millis": 831678, - "target_throttle_time_in_millis": 4578736, - "total_time_in_millis": 5746281 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829327588, - "stop_time_in_millis": 1569835075081, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 5747492, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72425275, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54624518416, - "reused_in_bytes": 0, - "total_in_bytes": 54624518416 - }, - "source_throttle_time_in_millis": 458321, - "target_throttle_time_in_millis": 21549, - "total_time_in_millis": 2379160 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506511, - "stop_time_in_millis": 1569033888463, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2381952, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76820022, - "total_time_in_millis": 2268 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 327, - "reused": 0, - "total": 327 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54378307532, - "reused_in_bytes": 0, - "total_in_bytes": 54378307532 - }, - "source_throttle_time_in_millis": 61492, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1921617 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506507, - "stop_time_in_millis": 1569033431042, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1924534, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76652538, - "total_time_in_millis": 2399 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50910365513, - "reused_in_bytes": 0, - "total_in_bytes": 50910365513 - }, - "source_throttle_time_in_millis": 66324, - "target_throttle_time_in_millis": 6906400, - "total_time_in_millis": 6619437 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784373592, - "stop_time_in_millis": 1569790993955, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 6620363, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72661181, - "total_time_in_millis": 909 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 336, - "reused": 0, - "total": 336 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54986131492, - "reused_in_bytes": 0, - "total_in_bytes": 54986131492 - }, - "source_throttle_time_in_millis": 47534, - "target_throttle_time_in_millis": 19687, - "total_time_in_millis": 1395861 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569033981314, - "stop_time_in_millis": 1569035379620, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1398306, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76622162, - "total_time_in_millis": 2426 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51571043948, - "reused_in_bytes": 0, - "total_in_bytes": 51571043948 - }, - "source_throttle_time_in_millis": 23698, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1401498 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569950368005, - "stop_time_in_millis": 1569951770102, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1402096, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72569107, - "total_time_in_millis": 587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54415231977, - "reused_in_bytes": 0, - "total_in_bytes": 54415231977 - }, - "source_throttle_time_in_millis": 77531, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 1911042 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569031506509, - "stop_time_in_millis": 1569033419678, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1913169, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76575469, - "total_time_in_millis": 2117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50783718832, - "reused_in_bytes": 0, - "total_in_bytes": 50783718832 - }, - "source_throttle_time_in_millis": 5509209, - "target_throttle_time_in_millis": 1211594, - "total_time_in_millis": 8726575 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795039771, - "stop_time_in_millis": 1569803767731, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 8727959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72713428, - "total_time_in_millis": 845 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55004697444, - "reused_in_bytes": 0, - "total_in_bytes": 55004697444 - }, - "source_throttle_time_in_millis": 11328, - "target_throttle_time_in_millis": 12596, - "total_time_in_millis": 1606357 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569033341917, - "stop_time_in_millis": 1569034951110, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1609192, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76323144, - "total_time_in_millis": 2805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50973774627, - "reused_in_bytes": 0, - "total_in_bytes": 50973774627 - }, - "source_throttle_time_in_millis": 60176, - "target_throttle_time_in_millis": 108190, - "total_time_in_millis": 1719581 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867538255, - "stop_time_in_millis": 1569869258523, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1720268, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72814155, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50952465552, - "reused_in_bytes": 0, - "total_in_bytes": 50952465552 - }, - "source_throttle_time_in_millis": 5211532, - "target_throttle_time_in_millis": 2828544, - "total_time_in_millis": 9082567 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432735, - "stop_time_in_millis": 1569837517638, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9084903, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72531400, - "total_time_in_millis": 741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50884368994, - "reused_in_bytes": 0, - "total_in_bytes": 50884368994 - }, - "source_throttle_time_in_millis": 209330, - "target_throttle_time_in_millis": 183, - "total_time_in_millis": 1492714 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569869526893, - "stop_time_in_millis": 1569871020216, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1493322, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72641997, - "total_time_in_millis": 595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47955287316, - "reused_in_bytes": 0, - "total_in_bytes": 47955287316 - }, - "source_throttle_time_in_millis": 3402759, - "target_throttle_time_in_millis": 4564422, - "total_time_in_millis": 8082892 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810004637, - "stop_time_in_millis": 1569818088316, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 8083678, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69035672, - "total_time_in_millis": 770 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51124251406, - "reused_in_bytes": 0, - "total_in_bytes": 51124251406 - }, - "source_throttle_time_in_millis": 77980, - "target_throttle_time_in_millis": 338074, - "total_time_in_millis": 1934337 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569925918322, - "stop_time_in_millis": 1569927853374, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1935051, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72759956, - "total_time_in_millis": 706 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51200884454, - "reused_in_bytes": 0, - "total_in_bytes": 51200884454 - }, - "source_throttle_time_in_millis": 161858, - "target_throttle_time_in_millis": 135481, - "total_time_in_millis": 1726186 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569939890255, - "stop_time_in_millis": 1569941617069, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1726813, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72847372, - "total_time_in_millis": 614 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51124251406, - "reused_in_bytes": 0, - "total_in_bytes": 51124251406 - }, - "source_throttle_time_in_millis": 5149970, - "target_throttle_time_in_millis": 2520267, - "total_time_in_millis": 9098822 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806130590, - "stop_time_in_millis": 1569815230153, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9099563, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72759956, - "total_time_in_millis": 724 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51610624963, - "reused_in_bytes": 0, - "total_in_bytes": 51610624963 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 365, - "total_time_in_millis": 1172524 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945746886, - "stop_time_in_millis": 1569946919948, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1173062, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72624438, - "total_time_in_millis": 530 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51054898046, - "reused_in_bytes": 0, - "total_in_bytes": 51054898046 - }, - "source_throttle_time_in_millis": 1791431, - "target_throttle_time_in_millis": 6083331, - "total_time_in_millis": 7992136 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821849570, - "stop_time_in_millis": 1569829842651, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 7993080, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72645383, - "total_time_in_millis": 933 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4777 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569033509390, - "stop_time_in_millis": 1569033515099, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 5709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 887 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50884368994, - "reused_in_bytes": 0, - "total_in_bytes": 50884368994 - }, - "source_throttle_time_in_millis": 254534, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1480812 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945702051, - "stop_time_in_millis": 1569947183473, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1481421, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72641997, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51622031490, - "reused_in_bytes": 0, - "total_in_bytes": 51622031490 - }, - "source_throttle_time_in_millis": 5822917, - "target_throttle_time_in_millis": 5639049, - "total_time_in_millis": 10964276 - }, - "index_name": "om-iu-bro-2019.09.18-000949", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803964374, - "stop_time_in_millis": 1569814929513, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 10965139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72425275, - "total_time_in_millis": 830 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50249902851, - "reused_in_bytes": 0, - "total_in_bytes": 50249902851 - }, - "source_throttle_time_in_millis": 1358941, - "target_throttle_time_in_millis": 6080202, - "total_time_in_millis": 7008442 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795347822, - "stop_time_in_millis": 1569802357140, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 7009317, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72752080, - "total_time_in_millis": 859 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51806155295, - "reused_in_bytes": 0, - "total_in_bytes": 51806155295 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 2821, - "total_time_in_millis": 1306073 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893746494, - "stop_time_in_millis": 1569895053198, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1306704, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73468337, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51696603137, - "reused_in_bytes": 0, - "total_in_bytes": 51696603137 - }, - "source_throttle_time_in_millis": 2760503, - "target_throttle_time_in_millis": 2910866, - "total_time_in_millis": 6242491 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775936529, - "stop_time_in_millis": 1569782179897, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 6243368, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73382268, - "total_time_in_millis": 858 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51244336531, - "reused_in_bytes": 0, - "total_in_bytes": 51244336531 - }, - "source_throttle_time_in_millis": 139096, - "target_throttle_time_in_millis": 22246, - "total_time_in_millis": 1760537 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569939118399, - "stop_time_in_millis": 1569940879642, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1761243, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73841392, - "total_time_in_millis": 691 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54343931226, - "reused_in_bytes": 0, - "total_in_bytes": 54343931226 - }, - "source_throttle_time_in_millis": 67572, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2194159 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007150, - "stop_time_in_millis": 1569355204132, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2196981, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76512074, - "total_time_in_millis": 2280 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53606064691, - "reused_in_bytes": 0, - "total_in_bytes": 53606064691 - }, - "source_throttle_time_in_millis": 67671, - "target_throttle_time_in_millis": 156, - "total_time_in_millis": 2169186 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007151, - "stop_time_in_millis": 1569355178808, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2171657, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76568139, - "total_time_in_millis": 1944 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50305522384, - "reused_in_bytes": 0, - "total_in_bytes": 50305522384 - }, - "source_throttle_time_in_millis": 91030, - "target_throttle_time_in_millis": 13694, - "total_time_in_millis": 1447764 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569953083541, - "stop_time_in_millis": 1569954533495, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1449954, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73117682, - "total_time_in_millis": 664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51244336531, - "reused_in_bytes": 0, - "total_in_bytes": 51244336531 - }, - "source_throttle_time_in_millis": 1616372, - "target_throttle_time_in_millis": 4749802, - "total_time_in_millis": 6734019 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829789276, - "stop_time_in_millis": 1569836524065, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6734788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73841392, - "total_time_in_millis": 742 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51068346943, - "reused_in_bytes": 0, - "total_in_bytes": 51068346943 - }, - "source_throttle_time_in_millis": 3116519, - "target_throttle_time_in_millis": 4008761, - "total_time_in_millis": 7182843 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798647265, - "stop_time_in_millis": 1569805831212, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 7183947, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73970013, - "total_time_in_millis": 726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53928318047, - "reused_in_bytes": 0, - "total_in_bytes": 53928318047 - }, - "source_throttle_time_in_millis": 67031, - "target_throttle_time_in_millis": 68, - "total_time_in_millis": 2570338 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007156, - "stop_time_in_millis": 1569355580219, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2573062, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76747706, - "total_time_in_millis": 2704 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51435301189, - "reused_in_bytes": 0, - "total_in_bytes": 51435301189 - }, - "source_throttle_time_in_millis": 110100, - "target_throttle_time_in_millis": 33265, - "total_time_in_millis": 1751976 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970540835, - "stop_time_in_millis": 1569972293530, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1752694, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73919771, - "total_time_in_millis": 706 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51435301189, - "reused_in_bytes": 0, - "total_in_bytes": 51435301189 - }, - "source_throttle_time_in_millis": 112514, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1381400 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961407875, - "stop_time_in_millis": 1569962789842, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1381966, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73919771, - "total_time_in_millis": 558 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51307480576, - "reused_in_bytes": 0, - "total_in_bytes": 51307480576 - }, - "source_throttle_time_in_millis": 5316244, - "target_throttle_time_in_millis": 2871558, - "total_time_in_millis": 9036123 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795355017, - "stop_time_in_millis": 1569804392038, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9037020, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73969491, - "total_time_in_millis": 856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51954996281, - "reused_in_bytes": 0, - "total_in_bytes": 51954996281 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 63259, - "total_time_in_millis": 1264494 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974968535, - "stop_time_in_millis": 1569976233696, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1265160, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73811849, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51681820643, - "reused_in_bytes": 0, - "total_in_bytes": 51681820643 - }, - "source_throttle_time_in_millis": 37161, - "target_throttle_time_in_millis": 18157, - "total_time_in_millis": 1334665 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977674512, - "stop_time_in_millis": 1569979009753, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1335241, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73289178, - "total_time_in_millis": 568 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51195399250, - "reused_in_bytes": 0, - "total_in_bytes": 51195399250 - }, - "source_throttle_time_in_millis": 3820655, - "target_throttle_time_in_millis": 2990528, - "total_time_in_millis": 8078261 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800689539, - "stop_time_in_millis": 1569808768644, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 8079104, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73945887, - "total_time_in_millis": 825 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51806155295, - "reused_in_bytes": 0, - "total_in_bytes": 51806155295 - }, - "source_throttle_time_in_millis": 50783, - "target_throttle_time_in_millis": 172866, - "total_time_in_millis": 1617005 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569953350838, - "stop_time_in_millis": 1569954968504, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1617665, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73468337, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51068346943, - "reused_in_bytes": 0, - "total_in_bytes": 51068346943 - }, - "source_throttle_time_in_millis": 92769, - "target_throttle_time_in_millis": 34446, - "total_time_in_millis": 1321079 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886548609, - "stop_time_in_millis": 1569887871776, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1323166, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73970013, - "total_time_in_millis": 2076 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51313303665, - "reused_in_bytes": 0, - "total_in_bytes": 51313303665 - }, - "source_throttle_time_in_millis": 1676913, - "target_throttle_time_in_millis": 5386796, - "total_time_in_millis": 7302058 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603806, - "stop_time_in_millis": 1569831906798, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 7302991, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73888110, - "total_time_in_millis": 913 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4844 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569355492285, - "stop_time_in_millis": 1569355497993, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5708, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 826 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 249, - "reused": 0, - "total": 249 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53209138175, - "reused_in_bytes": 0, - "total_in_bytes": 53209138175 - }, - "source_throttle_time_in_millis": 67905, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2166166 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007152, - "stop_time_in_millis": 1569355175643, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2168490, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76075909, - "total_time_in_millis": 1805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50305522384, - "reused_in_bytes": 0, - "total_in_bytes": 50305522384 - }, - "source_throttle_time_in_millis": 7489, - "target_throttle_time_in_millis": 239, - "total_time_in_millis": 1186235 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569872277440, - "stop_time_in_millis": 1569873464247, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1186807, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73117682, - "total_time_in_millis": 565 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53621293922, - "reused_in_bytes": 0, - "total_in_bytes": 53621293922 - }, - "source_throttle_time_in_millis": 66096, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2199611 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007151, - "stop_time_in_millis": 1569355209417, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2202266, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76584991, - "total_time_in_millis": 2114 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 315, - "reused": 0, - "total": 315 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54184729555, - "reused_in_bytes": 0, - "total_in_bytes": 54184729555 - }, - "source_throttle_time_in_millis": 65257, - "target_throttle_time_in_millis": 22, - "total_time_in_millis": 2561152 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007157, - "stop_time_in_millis": 1569355571057, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2563900, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76272815, - "total_time_in_millis": 2733 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54231794296, - "reused_in_bytes": 0, - "total_in_bytes": 54231794296 - }, - "source_throttle_time_in_millis": 66442, - "target_throttle_time_in_millis": 51, - "total_time_in_millis": 2155043 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007152, - "stop_time_in_millis": 1569355165092, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2157940, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76320056, - "total_time_in_millis": 2218 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51227950582, - "reused_in_bytes": 0, - "total_in_bytes": 51227950582 - }, - "source_throttle_time_in_millis": 47457, - "target_throttle_time_in_millis": 11884, - "total_time_in_millis": 1371799 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977639158, - "stop_time_in_millis": 1569979011579, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1372421, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73808429, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51696603137, - "reused_in_bytes": 0, - "total_in_bytes": 51696603137 - }, - "source_throttle_time_in_millis": 5414881, - "target_throttle_time_in_millis": 3970747, - "total_time_in_millis": 9487769 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798398971, - "stop_time_in_millis": 1569807887549, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 9488578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73382268, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53748544814, - "reused_in_bytes": 0, - "total_in_bytes": 53748544814 - }, - "source_throttle_time_in_millis": 66481, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2481597 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007151, - "stop_time_in_millis": 1569355490857, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2483705, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76697665, - "total_time_in_millis": 2095 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51307480576, - "reused_in_bytes": 0, - "total_in_bytes": 51307480576 - }, - "source_throttle_time_in_millis": 41623, - "target_throttle_time_in_millis": 47499, - "total_time_in_millis": 1623801 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756263593, - "stop_time_in_millis": 1569757888099, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1624506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73969491, - "total_time_in_millis": 694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54002361610, - "reused_in_bytes": 0, - "total_in_bytes": 54002361610 - }, - "source_throttle_time_in_millis": 68746, - "target_throttle_time_in_millis": 27, - "total_time_in_millis": 2270422 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007150, - "stop_time_in_millis": 1569355280003, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2272852, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75956047, - "total_time_in_millis": 1838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51195399250, - "reused_in_bytes": 0, - "total_in_bytes": 51195399250 - }, - "source_throttle_time_in_millis": 1451385, - "target_throttle_time_in_millis": 1913897, - "total_time_in_millis": 4196110 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832305782, - "stop_time_in_millis": 1569836502725, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 4196943, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73945887, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51089375201, - "reused_in_bytes": 0, - "total_in_bytes": 51089375201 - }, - "source_throttle_time_in_millis": 56466, - "target_throttle_time_in_millis": 2639887, - "total_time_in_millis": 3848080 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801476869, - "stop_time_in_millis": 1569805325684, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 3848815, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73611278, - "total_time_in_millis": 725 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51772979068, - "reused_in_bytes": 0, - "total_in_bytes": 51772979068 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 20, - "total_time_in_millis": 1482189 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569898028600, - "stop_time_in_millis": 1569899511383, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1482782, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73536505, - "total_time_in_millis": 582 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52731602292, - "reused_in_bytes": 0, - "total_in_bytes": 52731602292 - }, - "source_throttle_time_in_millis": 49190, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3973258 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569353007153, - "stop_time_in_millis": 1569356983772, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 3976619, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75489137, - "total_time_in_millis": 2836 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51460605520, - "reused_in_bytes": 0, - "total_in_bytes": 51460605520 - }, - "source_throttle_time_in_millis": 50513, - "target_throttle_time_in_millis": 170143, - "total_time_in_millis": 1557047 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976081417, - "stop_time_in_millis": 1569977639121, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1557704, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73890634, - "total_time_in_millis": 643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51771808063, - "reused_in_bytes": 0, - "total_in_bytes": 51771808063 - }, - "source_throttle_time_in_millis": 4788014, - "target_throttle_time_in_millis": 4150829, - "total_time_in_millis": 8898790 - }, - "index_name": "om-iu-bro-2019.09.22-000966", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818508643, - "stop_time_in_millis": 1569827408238, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 8899594, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73535188, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 7, - "reused": 0, - "total": 7 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 6855, - "reused_in_bytes": 0, - "total_in_bytes": 6855 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 86 - }, - "index_name": "alertmon-iu-data-feeds", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567072291352, - "stop_time_in_millis": 1567072292020, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 668, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 12, - "reused": 0, - "total": 12 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 3585, - "reused_in_bytes": 0, - "total_in_bytes": 3585 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 206 - }, - "index_name": "alertmon-iu-data-feeds", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566334989841, - "stop_time_in_millis": 1566334990138, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 297, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6 - }, - "index_name": "alertmon-iu-data-feeds", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481080325, - "stop_time_in_millis": 1566481080444, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 119, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 74 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 23 - }, - "index_name": "alertmon-iu-data-feeds", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322781821, - "stop_time_in_millis": 1566322782019, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 127 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "alertmon-iu-data-feeds", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886936, - "stop_time_in_millis": 1568995887372, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 435, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 252 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "alertmon-iu-data-feeds", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781892, - "stop_time_in_millis": 1568304782222, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 291 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 196 - }, - "index_name": ".reporting-2019.09.01", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1567622179384, - "stop_time_in_millis": 1567622180084, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 700, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 4, - "reused": 0, - "total": 4 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 980423, - "reused_in_bytes": 0, - "total_in_bytes": 980423 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 252 - }, - "index_name": ".reporting-2019.09.01", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569043962527, - "stop_time_in_millis": 1569043965725, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 3197, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 1, - "total_time_in_millis": 140 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 262, - "reused_in_bytes": 0, - "total_in_bytes": 262 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 77 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995440795, - "stop_time_in_millis": 1568995440958, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 162, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 62 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397035697, - "stop_time_in_millis": 1566397036416, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 719, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 44 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 262, - "reused_in_bytes": 0, - "total_in_bytes": 262 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 177 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569114003520, - "stop_time_in_millis": 1569114003862, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 342, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 85 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481087617, - "stop_time_in_millis": 1566481087696, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 78, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 46 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 89 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322784476, - "stop_time_in_millis": 1566322784663, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 186, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 77 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 14 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886979, - "stop_time_in_millis": 1568995887363, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 384, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 255 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 14 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903129, - "stop_time_in_millis": 1566313903486, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 356, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 294 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465149, - "stop_time_in_millis": 1566411465479, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 280 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 185 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304782695, - "stop_time_in_millis": 1568304783005, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 309, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 97 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".ml-anomalies-custom-eb-bro-1", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928398, - "stop_time_in_millis": 1568306928558, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 160, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 93 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 791837772, - "reused_in_bytes": 0, - "total_in_bytes": 791837772 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 23863 - }, - "index_name": "om-iu-suricata-2019.09.09-000098", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569042245798, - "stop_time_in_millis": 1569042269703, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 23905, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 203975, - "total_time_in_millis": 30 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 91, - "reused": 0, - "total": 91 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 793950540, - "reused_in_bytes": 0, - "total_in_bytes": 793950540 - }, - "source_throttle_time_in_millis": 1103, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 31550 - }, - "index_name": "om-iu-suricata-2019.09.09-000098", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568290299308, - "stop_time_in_millis": 1568290331578, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 32270, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 203569, - "total_time_in_millis": 196 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 791378258, - "reused_in_bytes": 0, - "total_in_bytes": 791378258 - }, - "source_throttle_time_in_millis": 96526, - "target_throttle_time_in_millis": 89556, - "total_time_in_millis": 170196 - }, - "index_name": "om-iu-suricata-2019.09.09-000098", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817955414, - "stop_time_in_millis": 1569818125673, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 170259, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 203569, - "total_time_in_millis": 45 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 100, - "reused": 0, - "total": 100 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 794972445, - "reused_in_bytes": 0, - "total_in_bytes": 794972445 - }, - "source_throttle_time_in_millis": 954, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 39761 - }, - "index_name": "om-iu-suricata-2019.09.09-000098", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568290299316, - "stop_time_in_millis": 1568290340218, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 40902, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 203975, - "total_time_in_millis": 106 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 46, - "reused": 0, - "total": 46 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 228580, - "reused_in_bytes": 0, - "total_in_bytes": 228580 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 897 - }, - "index_name": ".security-6", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567941732964, - "stop_time_in_millis": 1567941734421, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 1456, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 88 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 43, - "reused": 0, - "total": 43 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 288086, - "reused_in_bytes": 0, - "total_in_bytes": 288086 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2100 - }, - "index_name": ".security-6", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304651377, - "stop_time_in_millis": 1568304653929, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 2552, - "translog": { - "percent": "100.0%", - "recovered": 13, - "total": 13, - "total_on_start": 13, - "total_time_in_millis": 244 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": ".security-6", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481066858, - "stop_time_in_millis": 1566481067332, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 473, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 426 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 49, - "reused": 0, - "total": 49 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 277984, - "reused_in_bytes": 0, - "total_in_bytes": 277984 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 482 - }, - "index_name": ".security-6", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567200956478, - "stop_time_in_millis": 1567200959334, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 2856, - "translog": { - "percent": "100.0%", - "recovered": 20, - "total": 20, - "total_on_start": 20, - "total_time_in_millis": 205 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 759616630, - "reused_in_bytes": 0, - "total_in_bytes": 759616630 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 3539, - "total_time_in_millis": 23074 - }, - "index_name": "om-iu-suricata-2019.09.05-000094", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569041882132, - "stop_time_in_millis": 1569041905246, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 23114, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 193048, - "total_time_in_millis": 31 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 119, - "reused": 0, - "total": 119 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 766640171, - "reused_in_bytes": 0, - "total_in_bytes": 766640171 - }, - "source_throttle_time_in_millis": 961, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 31554 - }, - "index_name": "om-iu-suricata-2019.09.05-000094", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567941731876, - "stop_time_in_millis": 1567941764063, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 32186, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 193097, - "total_time_in_millis": 111 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 762160754, - "reused_in_bytes": 0, - "total_in_bytes": 762160754 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 4228, - "total_time_in_millis": 25919 - }, - "index_name": "om-iu-suricata-2019.09.05-000094", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977626338, - "stop_time_in_millis": 1569977652304, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 25966, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 193097, - "total_time_in_millis": 38 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 759616630, - "reused_in_bytes": 0, - "total_in_bytes": 759616630 - }, - "source_throttle_time_in_millis": 85236, - "target_throttle_time_in_millis": 79023, - "total_time_in_millis": 157434 - }, - "index_name": "om-iu-suricata-2019.09.05-000094", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810280905, - "stop_time_in_millis": 1569810438389, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 157483, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 193048, - "total_time_in_millis": 35 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51177581511, - "reused_in_bytes": 0, - "total_in_bytes": 51177581511 - }, - "source_throttle_time_in_millis": 64574, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2166846 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706455, - "stop_time_in_millis": 1568801876621, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2170166, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75697497, - "total_time_in_millis": 2774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49839571195, - "reused_in_bytes": 0, - "total_in_bytes": 49839571195 - }, - "source_throttle_time_in_millis": 349192, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 1684405 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569926642788, - "stop_time_in_millis": 1569928327778, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1684990, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73452225, - "total_time_in_millis": 576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49321650827, - "reused_in_bytes": 0, - "total_in_bytes": 49321650827 - }, - "source_throttle_time_in_millis": 2106680, - "target_throttle_time_in_millis": 5215691, - "total_time_in_millis": 7361029 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816667742, - "stop_time_in_millis": 1569824029530, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 7361788, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73565982, - "total_time_in_millis": 749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49223406490, - "reused_in_bytes": 0, - "total_in_bytes": 49223406490 - }, - "source_throttle_time_in_millis": 140009, - "target_throttle_time_in_millis": 81441, - "total_time_in_millis": 1865465 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569971790521, - "stop_time_in_millis": 1569973656716, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1866194, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73598922, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49340434177, - "reused_in_bytes": 0, - "total_in_bytes": 49340434177 - }, - "source_throttle_time_in_millis": 3815057, - "target_throttle_time_in_millis": 1427174, - "total_time_in_millis": 6985587 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801240188, - "stop_time_in_millis": 1569808226589, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 6986401, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73628184, - "total_time_in_millis": 803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51671129805, - "reused_in_bytes": 0, - "total_in_bytes": 51671129805 - }, - "source_throttle_time_in_millis": 61859, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2145168 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706454, - "stop_time_in_millis": 1568801854025, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2147570, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75484771, - "total_time_in_millis": 2387 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49269178034, - "reused_in_bytes": 0, - "total_in_bytes": 49269178034 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 489, - "total_time_in_millis": 1154126 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931021659, - "stop_time_in_millis": 1569932176382, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1154723, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73499711, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49277575480, - "reused_in_bytes": 0, - "total_in_bytes": 49277575480 - }, - "source_throttle_time_in_millis": 238334, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1474759 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569898935542, - "stop_time_in_millis": 1569900410869, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1475326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73595473, - "total_time_in_millis": 557 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51101467301, - "reused_in_bytes": 0, - "total_in_bytes": 51101467301 - }, - "source_throttle_time_in_millis": 4, - "target_throttle_time_in_millis": 605, - "total_time_in_millis": 1248853 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568801866395, - "stop_time_in_millis": 1568803118108, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1251713, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75559839, - "total_time_in_millis": 2850 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51054147009, - "reused_in_bytes": 0, - "total_in_bytes": 51054147009 - }, - "source_throttle_time_in_millis": 61774, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2502719 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706462, - "stop_time_in_millis": 1568802212562, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2506099, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75564947, - "total_time_in_millis": 2816 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49318064947, - "reused_in_bytes": 0, - "total_in_bytes": 49318064947 - }, - "source_throttle_time_in_millis": 5695458, - "target_throttle_time_in_millis": 582170, - "total_time_in_millis": 7502853 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568902892781, - "stop_time_in_millis": 1568910396871, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 7504089, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73646405, - "total_time_in_millis": 722 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51720086695, - "reused_in_bytes": 0, - "total_in_bytes": 51720086695 - }, - "source_throttle_time_in_millis": 68958, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2083997 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706454, - "stop_time_in_millis": 1568801793466, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2087011, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75618837, - "total_time_in_millis": 2485 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49794804196, - "reused_in_bytes": 0, - "total_in_bytes": 49794804196 - }, - "source_throttle_time_in_millis": 69643, - "target_throttle_time_in_millis": 126, - "total_time_in_millis": 1352202 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569874273538, - "stop_time_in_millis": 1569875626296, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1352758, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73525395, - "total_time_in_millis": 547 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49035758548, - "reused_in_bytes": 0, - "total_in_bytes": 49035758548 - }, - "source_throttle_time_in_millis": 5190003, - "target_throttle_time_in_millis": 4376453, - "total_time_in_millis": 9329828 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826103531, - "stop_time_in_millis": 1569835434209, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 9330678, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73476411, - "total_time_in_millis": 687 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49868361686, - "reused_in_bytes": 0, - "total_in_bytes": 49868361686 - }, - "source_throttle_time_in_millis": 2934622, - "target_throttle_time_in_millis": 1309702, - "total_time_in_millis": 5622746 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831450885, - "stop_time_in_millis": 1569837074407, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 5623522, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73564661, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49839571195, - "reused_in_bytes": 0, - "total_in_bytes": 49839571195 - }, - "source_throttle_time_in_millis": 2066735, - "target_throttle_time_in_millis": 5460509, - "total_time_in_millis": 7494776 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814276105, - "stop_time_in_millis": 1569821771709, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 7495604, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73452225, - "total_time_in_millis": 814 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49868361686, - "reused_in_bytes": 0, - "total_in_bytes": 49868361686 - }, - "source_throttle_time_in_millis": 4650595, - "target_throttle_time_in_millis": 2948064, - "total_time_in_millis": 8500581 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780933780, - "stop_time_in_millis": 1569789435037, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 8501257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73564661, - "total_time_in_millis": 657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49318064947, - "reused_in_bytes": 0, - "total_in_bytes": 49318064947 - }, - "source_throttle_time_in_millis": 7571, - "target_throttle_time_in_millis": 1040771, - "total_time_in_millis": 2261116 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706869, - "stop_time_in_millis": 1569840969099, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2262229, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73646405, - "total_time_in_millis": 1102 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49223406490, - "reused_in_bytes": 0, - "total_in_bytes": 49223406490 - }, - "source_throttle_time_in_millis": 24221, - "target_throttle_time_in_millis": 63092, - "total_time_in_millis": 1283995 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569922417864, - "stop_time_in_millis": 1569923702501, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1284637, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73598922, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51037980685, - "reused_in_bytes": 0, - "total_in_bytes": 51037980685 - }, - "source_throttle_time_in_millis": 59737, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2090725 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706453, - "stop_time_in_millis": 1568801800008, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2093555, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75615821, - "total_time_in_millis": 2280 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51101467304, - "reused_in_bytes": 0, - "total_in_bytes": 51101467304 - }, - "source_throttle_time_in_millis": 65811, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2150764 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706454, - "stop_time_in_millis": 1568801860264, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2153809, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75559839, - "total_time_in_millis": 2525 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51748559344, - "reused_in_bytes": 0, - "total_in_bytes": 51748559344 - }, - "source_throttle_time_in_millis": 67109, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2185736 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706454, - "stop_time_in_millis": 1568801895251, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2188796, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75567331, - "total_time_in_millis": 2486 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49277575480, - "reused_in_bytes": 0, - "total_in_bytes": 49277575480 - }, - "source_throttle_time_in_millis": 1279, - "target_throttle_time_in_millis": 329803, - "total_time_in_millis": 1596824 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569870762511, - "stop_time_in_millis": 1569872360656, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1598144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73595473, - "total_time_in_millis": 662 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49035758548, - "reused_in_bytes": 0, - "total_in_bytes": 49035758548 - }, - "source_throttle_time_in_millis": 4979555, - "target_throttle_time_in_millis": 4307570, - "total_time_in_millis": 9437868 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483076, - "stop_time_in_millis": 1569834921701, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 9438625, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73476411, - "total_time_in_millis": 743 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49098696184, - "reused_in_bytes": 0, - "total_in_bytes": 49098696184 - }, - "source_throttle_time_in_millis": 18353, - "target_throttle_time_in_millis": 349525, - "total_time_in_millis": 1422826 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569854898706, - "stop_time_in_millis": 1569856322184, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1423477, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73629429, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49906298752, - "reused_in_bytes": 0, - "total_in_bytes": 49906298752 - }, - "source_throttle_time_in_millis": 630611, - "target_throttle_time_in_millis": 65376, - "total_time_in_millis": 1956878 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918936277, - "stop_time_in_millis": 1569920893792, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1957515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73501589, - "total_time_in_millis": 628 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49098696184, - "reused_in_bytes": 0, - "total_in_bytes": 49098696184 - }, - "source_throttle_time_in_millis": 181079, - "target_throttle_time_in_millis": 68862, - "total_time_in_millis": 1437035 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569924417282, - "stop_time_in_millis": 1569925854977, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1437694, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73629429, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48908008560, - "reused_in_bytes": 0, - "total_in_bytes": 48908008560 - }, - "source_throttle_time_in_millis": 5825409, - "target_throttle_time_in_millis": 4566290, - "total_time_in_millis": 10174632 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810528790, - "stop_time_in_millis": 1569820704247, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 10175457, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73089620, - "total_time_in_millis": 808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50976592347, - "reused_in_bytes": 0, - "total_in_bytes": 50976592347 - }, - "source_throttle_time_in_millis": 59780, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2060790 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706456, - "stop_time_in_millis": 1568801770334, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2063878, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75526235, - "total_time_in_millis": 2557 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49931431439, - "reused_in_bytes": 0, - "total_in_bytes": 49931431439 - }, - "source_throttle_time_in_millis": 2013445, - "target_throttle_time_in_millis": 5536398, - "total_time_in_millis": 7231250 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603805, - "stop_time_in_millis": 1569831837497, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 7233691, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73524507, - "total_time_in_millis": 2432 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49794804196, - "reused_in_bytes": 0, - "total_in_bytes": 49794804196 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 27641, - "total_time_in_millis": 1181565 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859288498, - "stop_time_in_millis": 1569860470708, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1182209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73525395, - "total_time_in_millis": 632 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50636999153, - "reused_in_bytes": 0, - "total_in_bytes": 50636999153 - }, - "source_throttle_time_in_millis": 47589, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4066085 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706454, - "stop_time_in_millis": 1568803775313, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 4068859, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75072037, - "total_time_in_millis": 2227 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49353086985, - "reused_in_bytes": 0, - "total_in_bytes": 49353086985 - }, - "source_throttle_time_in_millis": 2769293, - "target_throttle_time_in_millis": 1774109, - "total_time_in_millis": 5879559 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812040434, - "stop_time_in_millis": 1569817920707, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 5880273, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73623529, - "total_time_in_millis": 703 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49264723808, - "reused_in_bytes": 0, - "total_in_bytes": 49264723808 - }, - "source_throttle_time_in_millis": 17182, - "target_throttle_time_in_millis": 10216, - "total_time_in_millis": 1181346 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963786707, - "stop_time_in_millis": 1569964968844, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1182136, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73568216, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49269178034, - "reused_in_bytes": 0, - "total_in_bytes": 49269178034 - }, - "source_throttle_time_in_millis": 5687785, - "target_throttle_time_in_millis": 5411346, - "total_time_in_millis": 10489474 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801476864, - "stop_time_in_millis": 1569811967111, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 10490246, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73499711, - "total_time_in_millis": 743 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51720086695, - "reused_in_bytes": 0, - "total_in_bytes": 51720086695 - }, - "source_throttle_time_in_millis": 65933, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2084501 - }, - "index_name": "om-iu-bro-2019.09.16-000936", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568799706455, - "stop_time_in_millis": 1568801793418, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2086963, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75618837, - "total_time_in_millis": 2436 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52598789734, - "reused_in_bytes": 0, - "total_in_bytes": 52598789734 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 37218, - "total_time_in_millis": 1423251 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968574441, - "stop_time_in_millis": 1569969998332, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1423891, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74502118, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55546892810, - "reused_in_bytes": 0, - "total_in_bytes": 55546892810 - }, - "source_throttle_time_in_millis": 69659, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2304271 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615435, - "stop_time_in_millis": 1568779922145, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2306709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77774759, - "total_time_in_millis": 2422 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52524795474, - "reused_in_bytes": 0, - "total_in_bytes": 52524795474 - }, - "source_throttle_time_in_millis": 1919810, - "target_throttle_time_in_millis": 4799940, - "total_time_in_millis": 6913522 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803249118, - "stop_time_in_millis": 1569810163934, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 6914815, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74288144, - "total_time_in_millis": 754 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51828119518, - "reused_in_bytes": 0, - "total_in_bytes": 51828119518 - }, - "source_throttle_time_in_millis": 1166753, - "target_throttle_time_in_millis": 6494304, - "total_time_in_millis": 7339076 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810313024, - "stop_time_in_millis": 1569817652941, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7339916, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74479642, - "total_time_in_millis": 827 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52622939704, - "reused_in_bytes": 0, - "total_in_bytes": 52622939704 - }, - "source_throttle_time_in_millis": 309775, - "target_throttle_time_in_millis": 48037, - "total_time_in_millis": 1662929 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569883206132, - "stop_time_in_millis": 1569884869677, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1663545, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74556042, - "total_time_in_millis": 606 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 309, - "reused": 0, - "total": 309 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54547618722, - "reused_in_bytes": 0, - "total_in_bytes": 54547618722 - }, - "source_throttle_time_in_millis": 65315, - "target_throttle_time_in_millis": 85, - "total_time_in_millis": 2236713 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615437, - "stop_time_in_millis": 1568779854883, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2239446, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77635813, - "total_time_in_millis": 2205 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52014118354, - "reused_in_bytes": 0, - "total_in_bytes": 52014118354 - }, - "source_throttle_time_in_millis": 3396434, - "target_throttle_time_in_millis": 4677806, - "total_time_in_millis": 8452875 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568895199731, - "stop_time_in_millis": 1568903653418, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8453687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74747562, - "total_time_in_millis": 792 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51895635540, - "reused_in_bytes": 0, - "total_in_bytes": 51895635540 - }, - "source_throttle_time_in_millis": 156686, - "target_throttle_time_in_millis": 55324, - "total_time_in_millis": 1712918 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940156520, - "stop_time_in_millis": 1569941870020, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1713500, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74632346, - "total_time_in_millis": 574 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51139026986, - "reused_in_bytes": 0, - "total_in_bytes": 51139026986 - }, - "source_throttle_time_in_millis": 10139, - "target_throttle_time_in_millis": 6771, - "total_time_in_millis": 1249189 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568977635429, - "stop_time_in_millis": 1568978885316, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1249887, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74037049, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55481730398, - "reused_in_bytes": 0, - "total_in_bytes": 55481730398 - }, - "source_throttle_time_in_millis": 69700, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 2665573 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615447, - "stop_time_in_millis": 1568780283580, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2668133, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77859725, - "total_time_in_millis": 2535 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52093439227, - "reused_in_bytes": 0, - "total_in_bytes": 52093439227 - }, - "source_throttle_time_in_millis": 5658711, - "target_throttle_time_in_millis": 5105789, - "total_time_in_millis": 10495664 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569809572948, - "stop_time_in_millis": 1569820069562, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 10496614, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74781228, - "total_time_in_millis": 862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52014118354, - "reused_in_bytes": 0, - "total_in_bytes": 52014118354 - }, - "source_throttle_time_in_millis": 2621968, - "target_throttle_time_in_millis": 2354176, - "total_time_in_millis": 6109433 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575074, - "stop_time_in_millis": 1569833685321, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6110247, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74747562, - "total_time_in_millis": 787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51841465716, - "reused_in_bytes": 0, - "total_in_bytes": 51841465716 - }, - "source_throttle_time_in_millis": 53458, - "target_throttle_time_in_millis": 114, - "total_time_in_millis": 1385057 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568972223992, - "stop_time_in_millis": 1568973609645, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1385653, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74778942, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55360116681, - "reused_in_bytes": 0, - "total_in_bytes": 55360116681 - }, - "source_throttle_time_in_millis": 70656, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2325285 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615438, - "stop_time_in_millis": 1568779943631, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2328192, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77504616, - "total_time_in_millis": 2369 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49967760529, - "reused_in_bytes": 0, - "total_in_bytes": 49967760529 - }, - "source_throttle_time_in_millis": 4310411, - "target_throttle_time_in_millis": 1630739, - "total_time_in_millis": 7639845 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568894651679, - "stop_time_in_millis": 1568902292761, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7641081, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72018086, - "total_time_in_millis": 716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52044329258, - "reused_in_bytes": 0, - "total_in_bytes": 52044329258 - }, - "source_throttle_time_in_millis": 68626, - "target_throttle_time_in_millis": 29424, - "total_time_in_millis": 1719654 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948647688, - "stop_time_in_millis": 1569950367961, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1720272, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74805079, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51882763788, - "reused_in_bytes": 0, - "total_in_bytes": 51882763788 - }, - "source_throttle_time_in_millis": 2531306, - "target_throttle_time_in_millis": 4814258, - "total_time_in_millis": 7235253 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817026161, - "stop_time_in_millis": 1569824262137, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 7235976, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74488749, - "total_time_in_millis": 711 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52118128254, - "reused_in_bytes": 0, - "total_in_bytes": 52118128254 - }, - "source_throttle_time_in_millis": 949770, - "target_throttle_time_in_millis": 1010479, - "total_time_in_millis": 2943412 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706863, - "stop_time_in_millis": 1569841652365, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2945501, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74764790, - "total_time_in_millis": 1574 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55501864344, - "reused_in_bytes": 0, - "total_in_bytes": 55501864344 - }, - "source_throttle_time_in_millis": 83878, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2712244 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615437, - "stop_time_in_millis": 1568780330473, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2715036, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77833960, - "total_time_in_millis": 2250 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52118128254, - "reused_in_bytes": 0, - "total_in_bytes": 52118128254 - }, - "source_throttle_time_in_millis": 3235541, - "target_throttle_time_in_millis": 4697348, - "total_time_in_millis": 8430595 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893904066, - "stop_time_in_millis": 1568902335836, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 8431770, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74764790, - "total_time_in_millis": 1151 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52017630088, - "reused_in_bytes": 0, - "total_in_bytes": 52017630088 - }, - "source_throttle_time_in_millis": 1338507, - "target_throttle_time_in_millis": 5728024, - "total_time_in_millis": 7368442 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893488702, - "stop_time_in_millis": 1568900858012, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 7369310, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74690465, - "total_time_in_millis": 841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52093439227, - "reused_in_bytes": 0, - "total_in_bytes": 52093439227 - }, - "source_throttle_time_in_millis": 4936826, - "target_throttle_time_in_millis": 3138268, - "total_time_in_millis": 8768891 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820697951, - "stop_time_in_millis": 1569829468328, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 8770376, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74781228, - "total_time_in_millis": 966 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54713502789, - "reused_in_bytes": 0, - "total_in_bytes": 54713502789 - }, - "source_throttle_time_in_millis": 66216, - "target_throttle_time_in_millis": 128, - "total_time_in_millis": 2271940 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615436, - "stop_time_in_millis": 1568779890002, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2274565, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77784612, - "total_time_in_millis": 2093 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55205426175, - "reused_in_bytes": 0, - "total_in_bytes": 55205426175 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 1580752 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568779972609, - "stop_time_in_millis": 1568781555781, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1583172, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77274164, - "total_time_in_millis": 2398 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52044329258, - "reused_in_bytes": 0, - "total_in_bytes": 52044329258 - }, - "source_throttle_time_in_millis": 516319, - "target_throttle_time_in_millis": 5057973, - "total_time_in_millis": 5489175 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435679, - "stop_time_in_millis": 1569848925538, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5489858, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74805079, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52710406316, - "reused_in_bytes": 0, - "total_in_bytes": 52710406316 - }, - "source_throttle_time_in_millis": 3392388, - "target_throttle_time_in_millis": 5118539, - "total_time_in_millis": 8329688 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801983841, - "stop_time_in_millis": 1569810314441, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 8330599, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74689961, - "total_time_in_millis": 899 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53876917319, - "reused_in_bytes": 0, - "total_in_bytes": 53876917319 - }, - "source_throttle_time_in_millis": 48634, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 4277375 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615435, - "stop_time_in_millis": 1568781895476, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 4280040, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77267194, - "total_time_in_millis": 2142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49967760529, - "reused_in_bytes": 0, - "total_in_bytes": 49967760529 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 32, - "total_time_in_millis": 1203686 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940210279, - "stop_time_in_millis": 1569941414533, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1204253, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72018086, - "total_time_in_millis": 556 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52622939704, - "reused_in_bytes": 0, - "total_in_bytes": 52622939704 - }, - "source_throttle_time_in_millis": 212412, - "target_throttle_time_in_millis": 286532, - "total_time_in_millis": 2150130 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569925855029, - "stop_time_in_millis": 1569928005793, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2150763, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74556042, - "total_time_in_millis": 625 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52673747253, - "reused_in_bytes": 0, - "total_in_bytes": 52673747253 - }, - "source_throttle_time_in_millis": 149867, - "target_throttle_time_in_millis": 6279903, - "total_time_in_millis": 6435593 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320024, - "stop_time_in_millis": 1569838757083, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6437058, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74528824, - "total_time_in_millis": 1457 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51863457780, - "reused_in_bytes": 0, - "total_in_bytes": 51863457780 - }, - "source_throttle_time_in_millis": 527210, - "target_throttle_time_in_millis": 451550, - "total_time_in_millis": 2455297 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867329, - "stop_time_in_millis": 1569838323435, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2456105, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74676912, - "total_time_in_millis": 794 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54870708848, - "reused_in_bytes": 0, - "total_in_bytes": 54870708848 - }, - "source_throttle_time_in_millis": 67881, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2249512 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615436, - "stop_time_in_millis": 1568779867700, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2252263, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78015757, - "total_time_in_millis": 2226 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51841465716, - "reused_in_bytes": 0, - "total_in_bytes": 51841465716 - }, - "source_throttle_time_in_millis": 3555481, - "target_throttle_time_in_millis": 4922153, - "total_time_in_millis": 8338566 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569771287132, - "stop_time_in_millis": 1569779626479, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8339347, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74778942, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51895635540, - "reused_in_bytes": 0, - "total_in_bytes": 51895635540 - }, - "source_throttle_time_in_millis": 4839649, - "target_throttle_time_in_millis": 3952822, - "total_time_in_millis": 8884553 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789657025, - "stop_time_in_millis": 1569798542318, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 8885292, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74632346, - "total_time_in_millis": 729 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54667973358, - "reused_in_bytes": 0, - "total_in_bytes": 54667973358 - }, - "source_throttle_time_in_millis": 67118, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2165838 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615435, - "stop_time_in_millis": 1568779783885, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2168449, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77919556, - "total_time_in_millis": 2597 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55205426178, - "reused_in_bytes": 0, - "total_in_bytes": 55205426178 - }, - "source_throttle_time_in_millis": 95342, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2349216 - }, - "index_name": "om-iu-bro-2019.09.15-000935", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568777615437, - "stop_time_in_millis": 1568779967243, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2351806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77274164, - "total_time_in_millis": 2059 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55303572410, - "reused_in_bytes": 0, - "total_in_bytes": 55303572410 - }, - "source_throttle_time_in_millis": 68668, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2198950 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096668, - "stop_time_in_millis": 1568762300765, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2204097, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77720044, - "total_time_in_millis": 2262 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52510387146, - "reused_in_bytes": 0, - "total_in_bytes": 52510387146 - }, - "source_throttle_time_in_millis": 4414853, - "target_throttle_time_in_millis": 3773547, - "total_time_in_millis": 8367700 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822899583, - "stop_time_in_millis": 1569831268122, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 8368539, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74449468, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51079653009, - "reused_in_bytes": 0, - "total_in_bytes": 51079653009 - }, - "source_throttle_time_in_millis": 2765843, - "target_throttle_time_in_millis": 797228, - "total_time_in_millis": 4907864 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867333, - "stop_time_in_millis": 1569840778020, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 4910687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73844990, - "total_time_in_millis": 1298 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49856925622, - "reused_in_bytes": 0, - "total_in_bytes": 49856925622 - }, - "source_throttle_time_in_millis": 3726429, - "target_throttle_time_in_millis": 5391283, - "total_time_in_millis": 9165636 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824642587, - "stop_time_in_millis": 1569833808973, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 9166386, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71885280, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51886271480, - "reused_in_bytes": 0, - "total_in_bytes": 51886271480 - }, - "source_throttle_time_in_millis": 4353364, - "target_throttle_time_in_millis": 5291070, - "total_time_in_millis": 8946915 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569786613311, - "stop_time_in_millis": 1569795561016, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 8947704, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74535207, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55442801391, - "reused_in_bytes": 0, - "total_in_bytes": 55442801391 - }, - "source_throttle_time_in_millis": 69096, - "target_throttle_time_in_millis": 25262, - "total_time_in_millis": 2269534 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096666, - "stop_time_in_millis": 1568762369205, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2272538, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77771067, - "total_time_in_millis": 2483 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51792184824, - "reused_in_bytes": 0, - "total_in_bytes": 51792184824 - }, - "source_throttle_time_in_millis": 5518051, - "target_throttle_time_in_millis": 4267250, - "total_time_in_millis": 9631939 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782715017, - "stop_time_in_millis": 1569792347750, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9632732, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74460419, - "total_time_in_millis": 776 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52573464561, - "reused_in_bytes": 0, - "total_in_bytes": 52573464561 - }, - "source_throttle_time_in_millis": 13035, - "target_throttle_time_in_millis": 1012683, - "total_time_in_millis": 2045325 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959440101, - "stop_time_in_millis": 1569961486517, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2046415, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74494404, - "total_time_in_millis": 569 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51886271480, - "reused_in_bytes": 0, - "total_in_bytes": 51886271480 - }, - "source_throttle_time_in_millis": 8295363, - "target_throttle_time_in_millis": 17323, - "total_time_in_millis": 10015440 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924423952, - "stop_time_in_millis": 1568934440650, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 10016697, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74535207, - "total_time_in_millis": 730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52355889758, - "reused_in_bytes": 0, - "total_in_bytes": 52355889758 - }, - "source_throttle_time_in_millis": 4774155, - "target_throttle_time_in_millis": 6060910, - "total_time_in_millis": 10100921 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677561, - "stop_time_in_millis": 1569836779300, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 10101738, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74092843, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 262, - "reused": 0, - "total": 262 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54036171122, - "reused_in_bytes": 0, - "total_in_bytes": 54036171122 - }, - "source_throttle_time_in_millis": 384769, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2702490 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096670, - "stop_time_in_millis": 1568762801263, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2704593, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77329293, - "total_time_in_millis": 2075 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51869325636, - "reused_in_bytes": 0, - "total_in_bytes": 51869325636 - }, - "source_throttle_time_in_millis": 1360517, - "target_throttle_time_in_millis": 1648776, - "total_time_in_millis": 4285458 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831719767, - "stop_time_in_millis": 1569836006001, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 4286233, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74551598, - "total_time_in_millis": 753 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51079653009, - "reused_in_bytes": 0, - "total_in_bytes": 51079653009 - }, - "source_throttle_time_in_millis": 68022, - "target_throttle_time_in_millis": 63171, - "total_time_in_millis": 1421820 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569897513011, - "stop_time_in_millis": 1569898935480, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1422468, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73844990, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52573464561, - "reused_in_bytes": 0, - "total_in_bytes": 52573464561 - }, - "source_throttle_time_in_millis": 635822, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2093089 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569022124162, - "stop_time_in_millis": 1569024217894, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2093731, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74494404, - "total_time_in_millis": 631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51973934741, - "reused_in_bytes": 0, - "total_in_bytes": 51973934741 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 34262, - "total_time_in_millis": 1242656 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569901188638, - "stop_time_in_millis": 1569902431944, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1243306, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74610862, - "total_time_in_millis": 639 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51326604952, - "reused_in_bytes": 0, - "total_in_bytes": 51326604952 - }, - "source_throttle_time_in_millis": 94820, - "target_throttle_time_in_millis": 197455, - "total_time_in_millis": 1538619 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924216244, - "stop_time_in_millis": 1568925755542, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1539297, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74237356, - "total_time_in_millis": 660 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4915 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568762353249, - "stop_time_in_millis": 1568762358931, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 5682, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 731 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51326604952, - "reused_in_bytes": 0, - "total_in_bytes": 51326604952 - }, - "source_throttle_time_in_millis": 66033, - "target_throttle_time_in_millis": 30511, - "total_time_in_millis": 1460810 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867741081, - "stop_time_in_millis": 1569869202546, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1461465, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74237356, - "total_time_in_millis": 633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55432970328, - "reused_in_bytes": 0, - "total_in_bytes": 55432970328 - }, - "source_throttle_time_in_millis": 70591, - "target_throttle_time_in_millis": 85, - "total_time_in_millis": 2389392 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096667, - "stop_time_in_millis": 1568762488964, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2392296, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77612662, - "total_time_in_millis": 2380 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52217960572, - "reused_in_bytes": 0, - "total_in_bytes": 52217960572 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 91, - "total_time_in_millis": 1204163 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902186905, - "stop_time_in_millis": 1569903391682, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1204777, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73959681, - "total_time_in_millis": 606 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51823652031, - "reused_in_bytes": 0, - "total_in_bytes": 51823652031 - }, - "source_throttle_time_in_millis": 4862000, - "target_throttle_time_in_millis": 513477, - "total_time_in_millis": 7008068 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782633606, - "stop_time_in_millis": 1569789642678, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 7009071, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74399756, - "total_time_in_millis": 991 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 315, - "reused": 0, - "total": 315 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54717260039, - "reused_in_bytes": 0, - "total_in_bytes": 54717260039 - }, - "source_throttle_time_in_millis": 101087, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2325474 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096667, - "stop_time_in_millis": 1568762424462, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2327794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77898771, - "total_time_in_millis": 2308 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51973934741, - "reused_in_bytes": 0, - "total_in_bytes": 51973934741 - }, - "source_throttle_time_in_millis": 5134844, - "target_throttle_time_in_millis": 580015, - "total_time_in_millis": 8443610 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568894955602, - "stop_time_in_millis": 1568903399908, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 8444306, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74610862, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51823652031, - "reused_in_bytes": 0, - "total_in_bytes": 51823652031 - }, - "source_throttle_time_in_millis": 484523, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2208642 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931726443, - "stop_time_in_millis": 1569933935751, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2209307, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74399756, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51672292720, - "reused_in_bytes": 0, - "total_in_bytes": 51672292720 - }, - "source_throttle_time_in_millis": 125025, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1486569 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976534871, - "stop_time_in_millis": 1569978022048, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1487177, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74422856, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55315840240, - "reused_in_bytes": 0, - "total_in_bytes": 55315840240 - }, - "source_throttle_time_in_millis": 69328, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2376409 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096668, - "stop_time_in_millis": 1568762476143, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2379475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77488593, - "total_time_in_millis": 2528 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54772608074, - "reused_in_bytes": 0, - "total_in_bytes": 54772608074 - }, - "source_throttle_time_in_millis": 69151, - "target_throttle_time_in_millis": 59, - "total_time_in_millis": 2223958 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096667, - "stop_time_in_millis": 1568762323608, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2226940, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77980337, - "total_time_in_millis": 2403 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55168998241, - "reused_in_bytes": 0, - "total_in_bytes": 55168998241 - }, - "source_throttle_time_in_millis": 72530, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2253609 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096667, - "stop_time_in_millis": 1568762353216, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2256548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77496615, - "total_time_in_millis": 2218 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51832137917, - "reused_in_bytes": 0, - "total_in_bytes": 51832137917 - }, - "source_throttle_time_in_millis": 1909953, - "target_throttle_time_in_millis": 4613950, - "total_time_in_millis": 6941878 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825970309, - "stop_time_in_millis": 1569832912956, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6942646, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74524867, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54479035493, - "reused_in_bytes": 0, - "total_in_bytes": 54479035493 - }, - "source_throttle_time_in_millis": 93116, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2289052 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568760096666, - "stop_time_in_millis": 1568762392044, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2295377, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77575835, - "total_time_in_millis": 2144 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51853998991, - "reused_in_bytes": 0, - "total_in_bytes": 51853998991 - }, - "source_throttle_time_in_millis": 4271136, - "target_throttle_time_in_millis": 4952719, - "total_time_in_millis": 9388229 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568895386074, - "stop_time_in_millis": 1568904775438, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9389364, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74570164, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49856925622, - "reused_in_bytes": 0, - "total_in_bytes": 49856925622 - }, - "source_throttle_time_in_millis": 5006800, - "target_throttle_time_in_millis": 2239621, - "total_time_in_millis": 7900701 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568898347989, - "stop_time_in_millis": 1568906249292, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 7901303, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71885280, - "total_time_in_millis": 585 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52359512925, - "reused_in_bytes": 0, - "total_in_bytes": 52359512925 - }, - "source_throttle_time_in_millis": 454172, - "target_throttle_time_in_millis": 3398893, - "total_time_in_millis": 4662814 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789094716, - "stop_time_in_millis": 1569793761606, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 4666889, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74361348, - "total_time_in_millis": 799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51869325636, - "reused_in_bytes": 0, - "total_in_bytes": 51869325636 - }, - "source_throttle_time_in_millis": 445968, - "target_throttle_time_in_millis": 55415, - "total_time_in_millis": 1865733 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954000134, - "stop_time_in_millis": 1569955866470, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1866335, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74551598, - "total_time_in_millis": 589 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51672292720, - "reused_in_bytes": 0, - "total_in_bytes": 51672292720 - }, - "source_throttle_time_in_millis": 838398, - "target_throttle_time_in_millis": 158086, - "total_time_in_millis": 2776173 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569019030486, - "stop_time_in_millis": 1569021807373, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2776887, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74422856, - "total_time_in_millis": 702 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51339779071, - "reused_in_bytes": 0, - "total_in_bytes": 51339779071 - }, - "source_throttle_time_in_millis": 5560851, - "target_throttle_time_in_millis": 4330607, - "total_time_in_millis": 10280224 - }, - "index_name": "om-iu-bro-2019.09.15-000934", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818508653, - "stop_time_in_millis": 1569828789723, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 10281069, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74195499, - "total_time_in_millis": 835 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 4, - "reused": 0, - "total": 4 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 21174, - "reused_in_bytes": 0, - "total_in_bytes": 21174 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 101 - }, - "index_name": ".reporting-2019.02.24", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568335219026, - "stop_time_in_millis": 1568335219229, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 202, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 56 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 4, - "reused": 0, - "total": 4 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 21174, - "reused_in_bytes": 0, - "total_in_bytes": 21174 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4021 - }, - "index_name": ".reporting-2019.02.24", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569042628089, - "stop_time_in_millis": 1569042634487, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 6398, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 138 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49324560074, - "reused_in_bytes": 0, - "total_in_bytes": 49324560074 - }, - "source_throttle_time_in_millis": 52319, - "target_throttle_time_in_millis": 59690, - "total_time_in_millis": 1379027 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569878227759, - "stop_time_in_millis": 1569879607429, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1379669, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73357609, - "total_time_in_millis": 631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49369916685, - "reused_in_bytes": 0, - "total_in_bytes": 49369916685 - }, - "source_throttle_time_in_millis": 246784, - "target_throttle_time_in_millis": 17540, - "total_time_in_millis": 1470960 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569029773489, - "stop_time_in_millis": 1569031245063, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1471573, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73435930, - "total_time_in_millis": 596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49959687741, - "reused_in_bytes": 0, - "total_in_bytes": 49959687741 - }, - "source_throttle_time_in_millis": 3246264, - "target_throttle_time_in_millis": 4742094, - "total_time_in_millis": 7803783 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795347804, - "stop_time_in_millis": 1569803152498, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 7804693, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73288461, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51284735051, - "reused_in_bytes": 0, - "total_in_bytes": 51284735051 - }, - "source_throttle_time_in_millis": 4, - "target_throttle_time_in_millis": 169, - "total_time_in_millis": 1480112 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568703048461, - "stop_time_in_millis": 1568704531434, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1482972, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75532506, - "total_time_in_millis": 2841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49267823242, - "reused_in_bytes": 0, - "total_in_bytes": 49267823242 - }, - "source_throttle_time_in_millis": 166, - "target_throttle_time_in_millis": 68367, - "total_time_in_millis": 1206816 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875355408, - "stop_time_in_millis": 1569876562821, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1207412, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73350709, - "total_time_in_millis": 583 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49193853811, - "reused_in_bytes": 0, - "total_in_bytes": 49193853811 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 277408, - "total_time_in_millis": 1678148 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569876562884, - "stop_time_in_millis": 1569878241624, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1678739, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73357235, - "total_time_in_millis": 583 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49959687741, - "reused_in_bytes": 0, - "total_in_bytes": 49959687741 - }, - "source_throttle_time_in_millis": 6086311, - "target_throttle_time_in_millis": 1709012, - "total_time_in_millis": 8996234 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805387772, - "stop_time_in_millis": 1569814385397, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8997625, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73288461, - "total_time_in_millis": 855 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51279560058, - "reused_in_bytes": 0, - "total_in_bytes": 51279560058 - }, - "source_throttle_time_in_millis": 77693, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2134559 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568700620327, - "stop_time_in_millis": 1568702757642, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2137315, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75564290, - "total_time_in_millis": 2233 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49789994686, - "reused_in_bytes": 0, - "total_in_bytes": 49789994686 - }, - "source_throttle_time_in_millis": 288015, - "target_throttle_time_in_millis": 3931943, - "total_time_in_millis": 4653214 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569791632819, - "stop_time_in_millis": 1569796288650, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 4655831, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73035485, - "total_time_in_millis": 2602 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49948923607, - "reused_in_bytes": 0, - "total_in_bytes": 49948923607 - }, - "source_throttle_time_in_millis": 160427, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1746212 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959388576, - "stop_time_in_millis": 1569961135486, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1746909, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73307745, - "total_time_in_millis": 685 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49310074952, - "reused_in_bytes": 0, - "total_in_bytes": 49310074952 - }, - "source_throttle_time_in_millis": 797913, - "target_throttle_time_in_millis": 4670244, - "total_time_in_millis": 5741726 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814936233, - "stop_time_in_millis": 1569820679239, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 5743005, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73388032, - "total_time_in_millis": 761 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49324560074, - "reused_in_bytes": 0, - "total_in_bytes": 49324560074 - }, - "source_throttle_time_in_millis": 35654, - "target_throttle_time_in_millis": 23803, - "total_time_in_millis": 1631812 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569870701872, - "stop_time_in_millis": 1569872334340, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1632468, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73357609, - "total_time_in_millis": 646 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49889577120, - "reused_in_bytes": 0, - "total_in_bytes": 49889577120 - }, - "source_throttle_time_in_millis": 6140069, - "target_throttle_time_in_millis": 4033368, - "total_time_in_millis": 10418809 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798465387, - "stop_time_in_millis": 1569808885222, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 10419834, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73359417, - "total_time_in_millis": 986 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49267823242, - "reused_in_bytes": 0, - "total_in_bytes": 49267823242 - }, - "source_throttle_time_in_millis": 6203, - "target_throttle_time_in_millis": 462, - "total_time_in_millis": 1287506 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569922079785, - "stop_time_in_millis": 1569923367888, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1288102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73350709, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49857811735, - "reused_in_bytes": 0, - "total_in_bytes": 49857811735 - }, - "source_throttle_time_in_millis": 4528, - "target_throttle_time_in_millis": 6424581, - "total_time_in_millis": 6207302 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706923, - "stop_time_in_millis": 1569844914866, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6207943, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73285401, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49893181812, - "reused_in_bytes": 0, - "total_in_bytes": 49893181812 - }, - "source_throttle_time_in_millis": 79011, - "target_throttle_time_in_millis": 21441, - "total_time_in_millis": 1339846 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568978088871, - "stop_time_in_millis": 1568979429328, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1340456, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73179760, - "total_time_in_millis": 600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49204459576, - "reused_in_bytes": 0, - "total_in_bytes": 49204459576 - }, - "source_throttle_time_in_millis": 841781, - "target_throttle_time_in_millis": 5964966, - "total_time_in_millis": 6504741 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810280871, - "stop_time_in_millis": 1569816786935, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6506063, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73168975, - "total_time_in_millis": 798 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49348028921, - "reused_in_bytes": 0, - "total_in_bytes": 49348028921 - }, - "source_throttle_time_in_millis": 3970674, - "target_throttle_time_in_millis": 1517987, - "total_time_in_millis": 6948633 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258634, - "stop_time_in_millis": 1569779209008, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 6950374, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73368135, - "total_time_in_millis": 1215 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51210514482, - "reused_in_bytes": 0, - "total_in_bytes": 51210514482 - }, - "source_throttle_time_in_millis": 66252, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2019343 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568700620318, - "stop_time_in_millis": 1568702642896, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2022578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75796608, - "total_time_in_millis": 2657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49190052021, - "reused_in_bytes": 0, - "total_in_bytes": 49190052021 - }, - "source_throttle_time_in_millis": 6352666, - "target_throttle_time_in_millis": 3168171, - "total_time_in_millis": 10118304 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819468586, - "stop_time_in_millis": 1569829588136, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 10119549, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73432288, - "total_time_in_millis": 692 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51266790819, - "reused_in_bytes": 0, - "total_in_bytes": 51266790819 - }, - "source_throttle_time_in_millis": 84943, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2185761 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568700620318, - "stop_time_in_millis": 1568702808811, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2188493, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75813225, - "total_time_in_millis": 2211 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49889577120, - "reused_in_bytes": 0, - "total_in_bytes": 49889577120 - }, - "source_throttle_time_in_millis": 513745, - "target_throttle_time_in_millis": 37, - "total_time_in_millis": 1830719 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881090181, - "stop_time_in_millis": 1569882921509, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1831327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73359417, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51275558291, - "reused_in_bytes": 0, - "total_in_bytes": 51275558291 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 525, - "total_time_in_millis": 1259545 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568711492347, - "stop_time_in_millis": 1568712754011, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1261664, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73327582, - "total_time_in_millis": 2104 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49857811735, - "reused_in_bytes": 0, - "total_in_bytes": 49857811735 - }, - "source_throttle_time_in_millis": 4182794, - "target_throttle_time_in_millis": 5516886, - "total_time_in_millis": 9955250 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568891097405, - "stop_time_in_millis": 1568901053569, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 9956164, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73285401, - "total_time_in_millis": 888 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51491832466, - "reused_in_bytes": 0, - "total_in_bytes": 51491832466 - }, - "source_throttle_time_in_millis": 91298, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2213083 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568700620315, - "stop_time_in_millis": 1568702836377, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2216061, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75889335, - "total_time_in_millis": 2451 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49893181812, - "reused_in_bytes": 0, - "total_in_bytes": 49893181812 - }, - "source_throttle_time_in_millis": 39548, - "target_throttle_time_in_millis": 4302, - "total_time_in_millis": 1367684 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893860541, - "stop_time_in_millis": 1569895228903, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1368361, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73179760, - "total_time_in_millis": 668 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48850179234, - "reused_in_bytes": 0, - "total_in_bytes": 48850179234 - }, - "source_throttle_time_in_millis": 2313092, - "target_throttle_time_in_millis": 716868, - "total_time_in_millis": 4153958 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732128, - "stop_time_in_millis": 1569839887350, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 4155221, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73020861, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49789994686, - "reused_in_bytes": 0, - "total_in_bytes": 49789994686 - }, - "source_throttle_time_in_millis": 3007147, - "target_throttle_time_in_millis": 5962081, - "total_time_in_millis": 8520397 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801633144, - "stop_time_in_millis": 1569810154402, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 8521257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73035485, - "total_time_in_millis": 844 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50983490545, - "reused_in_bytes": 0, - "total_in_bytes": 50983490545 - }, - "source_throttle_time_in_millis": 51000, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3755783 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568700620315, - "stop_time_in_millis": 1568704379220, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 3758904, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75497202, - "total_time_in_millis": 2595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52168067439, - "reused_in_bytes": 0, - "total_in_bytes": 52168067439 - }, - "source_throttle_time_in_millis": 78007, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2186293 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568700620314, - "stop_time_in_millis": 1568702809821, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2189506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75789321, - "total_time_in_millis": 2686 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49193853811, - "reused_in_bytes": 0, - "total_in_bytes": 49193853811 - }, - "source_throttle_time_in_millis": 2427276, - "target_throttle_time_in_millis": 3026302, - "total_time_in_millis": 5943435 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830770164, - "stop_time_in_millis": 1569836715073, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 5944909, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73357235, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49095627531, - "reused_in_bytes": 0, - "total_in_bytes": 49095627531 - }, - "source_throttle_time_in_millis": 3640532, - "target_throttle_time_in_millis": 2349177, - "total_time_in_millis": 7068793 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772928763, - "stop_time_in_millis": 1569779999071, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 7070308, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73375121, - "total_time_in_millis": 963 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49369916685, - "reused_in_bytes": 0, - "total_in_bytes": 49369916685 - }, - "source_throttle_time_in_millis": 160923, - "target_throttle_time_in_millis": 200161, - "total_time_in_millis": 1655800 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569872360723, - "stop_time_in_millis": 1569874018346, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1657623, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73435930, - "total_time_in_millis": 1811 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48032809784, - "reused_in_bytes": 0, - "total_in_bytes": 48032809784 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 461, - "total_time_in_millis": 1149463 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941564748, - "stop_time_in_millis": 1569942714822, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1150074, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71617003, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49348028921, - "reused_in_bytes": 0, - "total_in_bytes": 49348028921 - }, - "source_throttle_time_in_millis": 500799, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1658700 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569901934427, - "stop_time_in_millis": 1569903593733, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1659306, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73368135, - "total_time_in_millis": 597 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48032809784, - "reused_in_bytes": 0, - "total_in_bytes": 48032809784 - }, - "source_throttle_time_in_millis": 2292033, - "target_throttle_time_in_millis": 5867006, - "total_time_in_millis": 7861792 - }, - "index_name": "om-iu-bro-2019.09.15-000931", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483071, - "stop_time_in_millis": 1569833345734, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 7862663, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71617003, - "total_time_in_millis": 856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52394186130, - "reused_in_bytes": 0, - "total_in_bytes": 52394186130 - }, - "source_throttle_time_in_millis": 1134444, - "target_throttle_time_in_millis": 3983526, - "total_time_in_millis": 5847872 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320085, - "stop_time_in_millis": 1569838168838, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 5848753, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73286848, - "total_time_in_millis": 863 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52127783189, - "reused_in_bytes": 0, - "total_in_bytes": 52127783189 - }, - "source_throttle_time_in_millis": 5292201, - "target_throttle_time_in_millis": 4764932, - "total_time_in_millis": 9736989 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811647789, - "stop_time_in_millis": 1569821385737, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 9737948, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73850965, - "total_time_in_millis": 936 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54809588770, - "reused_in_bytes": 0, - "total_in_bytes": 54809588770 - }, - "source_throttle_time_in_millis": 68560, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 2238465 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908688, - "stop_time_in_millis": 1569145150002, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2241314, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77096629, - "total_time_in_millis": 2313 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51944526314, - "reused_in_bytes": 0, - "total_in_bytes": 51944526314 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 124, - "total_time_in_millis": 1458484 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569908513154, - "stop_time_in_millis": 1569909972289, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1459134, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73813679, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55579889188, - "reused_in_bytes": 0, - "total_in_bytes": 55579889188 - }, - "source_throttle_time_in_millis": 415724, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2811745 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145723043, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2814355, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77069184, - "total_time_in_millis": 2585 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51760858869, - "reused_in_bytes": 0, - "total_in_bytes": 51760858869 - }, - "source_throttle_time_in_millis": 64574, - "target_throttle_time_in_millis": 4896754, - "total_time_in_millis": 4988707 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732207, - "stop_time_in_millis": 1569840721649, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 4989441, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73849654, - "total_time_in_millis": 723 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52089023217, - "reused_in_bytes": 0, - "total_in_bytes": 52089023217 - }, - "source_throttle_time_in_millis": 2586632, - "target_throttle_time_in_millis": 826288, - "total_time_in_millis": 4940203 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867312, - "stop_time_in_millis": 1569840810169, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 4942857, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73819043, - "total_time_in_millis": 645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52127783189, - "reused_in_bytes": 0, - "total_in_bytes": 52127783189 - }, - "source_throttle_time_in_millis": 4282290, - "target_throttle_time_in_millis": 6220187, - "total_time_in_millis": 9895152 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569791591780, - "stop_time_in_millis": 1569801488287, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 9896506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73850965, - "total_time_in_millis": 824 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4873 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569145238077, - "stop_time_in_millis": 1569145243912, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5835, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 883 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55132503652, - "reused_in_bytes": 0, - "total_in_bytes": 55132503652 - }, - "source_throttle_time_in_millis": 69265, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2644084 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908697, - "stop_time_in_millis": 1569145556056, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2647359, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77350524, - "total_time_in_millis": 2748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55359396359, - "reused_in_bytes": 0, - "total_in_bytes": 55359396359 - }, - "source_throttle_time_in_millis": 69545, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2337290 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145248605, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2339918, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76661924, - "total_time_in_millis": 2603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 270, - "reused": 0, - "total": 270 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53973538068, - "reused_in_bytes": 0, - "total_in_bytes": 53973538068 - }, - "source_throttle_time_in_millis": 51128, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 3903918 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569146815380, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 3906692, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76451606, - "total_time_in_millis": 2222 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51755699593, - "reused_in_bytes": 0, - "total_in_bytes": 51755699593 - }, - "source_throttle_time_in_millis": 38255, - "target_throttle_time_in_millis": 100581, - "total_time_in_millis": 1564439 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569858149327, - "stop_time_in_millis": 1569859714499, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1565172, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73649513, - "total_time_in_millis": 723 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52273145211, - "reused_in_bytes": 0, - "total_in_bytes": 52273145211 - }, - "source_throttle_time_in_millis": 14445, - "target_throttle_time_in_millis": 913791, - "total_time_in_millis": 1970617 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569905028308, - "stop_time_in_millis": 1569906999535, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1971227, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73449322, - "total_time_in_millis": 596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55470220365, - "reused_in_bytes": 0, - "total_in_bytes": 55470220365 - }, - "source_throttle_time_in_millis": 70183, - "target_throttle_time_in_millis": 79, - "total_time_in_millis": 2254463 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145166109, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2257422, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76911271, - "total_time_in_millis": 2427 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55025201346, - "reused_in_bytes": 0, - "total_in_bytes": 55025201346 - }, - "source_throttle_time_in_millis": 71651, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2326168 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145237906, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2329218, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77485264, - "total_time_in_millis": 2527 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55060398197, - "reused_in_bytes": 0, - "total_in_bytes": 55060398197 - }, - "source_throttle_time_in_millis": 68504, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2252167 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145163758, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2255070, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77322304, - "total_time_in_millis": 2357 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51944526314, - "reused_in_bytes": 0, - "total_in_bytes": 51944526314 - }, - "source_throttle_time_in_millis": 4481941, - "target_throttle_time_in_millis": 2064845, - "total_time_in_millis": 7548769 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824197157, - "stop_time_in_millis": 1569831746747, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 7549589, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73813679, - "total_time_in_millis": 798 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52273145211, - "reused_in_bytes": 0, - "total_in_bytes": 52273145211 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 94378, - "total_time_in_millis": 1292755 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569936965617, - "stop_time_in_millis": 1569938259076, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1293459, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73449322, - "total_time_in_millis": 695 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51822298108, - "reused_in_bytes": 0, - "total_in_bytes": 51822298108 - }, - "source_throttle_time_in_millis": 1388378, - "target_throttle_time_in_millis": 1196056, - "total_time_in_millis": 4019259 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819468598, - "stop_time_in_millis": 1569823488646, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 4020048, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73786500, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 354, - "reused": 0, - "total": 354 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54843930206, - "reused_in_bytes": 0, - "total_in_bytes": 54843930206 - }, - "source_throttle_time_in_millis": 95551, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2264004 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145175892, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2267204, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77294472, - "total_time_in_millis": 2642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52017556767, - "reused_in_bytes": 0, - "total_in_bytes": 52017556767 - }, - "source_throttle_time_in_millis": 368502, - "target_throttle_time_in_millis": 4225342, - "total_time_in_millis": 4848020 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790671949, - "stop_time_in_millis": 1569795520836, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 4848886, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73798614, - "total_time_in_millis": 854 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5730 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569145136755, - "stop_time_in_millis": 1569145143545, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 6790, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 1012 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 345, - "reused": 0, - "total": 345 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54752924313, - "reused_in_bytes": 0, - "total_in_bytes": 54752924313 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 83524, - "total_time_in_millis": 2008852 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569145162649, - "stop_time_in_millis": 1569147174469, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2011819, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77138659, - "total_time_in_millis": 2951 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52620166460, - "reused_in_bytes": 0, - "total_in_bytes": 52620166460 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 60593, - "total_time_in_millis": 1377145 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569872540986, - "stop_time_in_millis": 1569873918851, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1377864, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728446, - "total_time_in_millis": 710 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52430251839, - "reused_in_bytes": 0, - "total_in_bytes": 52430251839 - }, - "source_throttle_time_in_millis": 5666238, - "target_throttle_time_in_millis": 1446839, - "total_time_in_millis": 8139003 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832343539, - "stop_time_in_millis": 1569840486595, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 8143055, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73414401, - "total_time_in_millis": 648 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51396948289, - "reused_in_bytes": 0, - "total_in_bytes": 51396948289 - }, - "source_throttle_time_in_millis": 364605, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2629562 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908686, - "stop_time_in_millis": 1569145541555, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2632868, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72979016, - "total_time_in_millis": 2622 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52422809718, - "reused_in_bytes": 0, - "total_in_bytes": 52422809718 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 43900, - "total_time_in_millis": 1259892 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569890701337, - "stop_time_in_millis": 1569891961895, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1260558, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73433354, - "total_time_in_millis": 650 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52620166460, - "reused_in_bytes": 0, - "total_in_bytes": 52620166460 - }, - "source_throttle_time_in_millis": 57694, - "target_throttle_time_in_millis": 34510, - "total_time_in_millis": 1323589 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569914728843, - "stop_time_in_millis": 1569916053101, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1324257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728446, - "total_time_in_millis": 657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55491820746, - "reused_in_bytes": 0, - "total_in_bytes": 55491820746 - }, - "source_throttle_time_in_millis": 81817, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1556819 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569145664523, - "stop_time_in_millis": 1569147223652, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1559128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76839543, - "total_time_in_millis": 2296 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51330401387, - "reused_in_bytes": 0, - "total_in_bytes": 51330401387 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 206, - "total_time_in_millis": 1198843 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930408077, - "stop_time_in_millis": 1569931607528, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1199451, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73336118, - "total_time_in_millis": 600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51760858869, - "reused_in_bytes": 0, - "total_in_bytes": 51760858869 - }, - "source_throttle_time_in_millis": 356094, - "target_throttle_time_in_millis": 2168490, - "total_time_in_millis": 4475009 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467908, - "stop_time_in_millis": 1569826944162, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 4476254, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73849654, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48801289638, - "reused_in_bytes": 0, - "total_in_bytes": 48801289638 - }, - "source_throttle_time_in_millis": 1154251, - "target_throttle_time_in_millis": 5808032, - "total_time_in_millis": 6652682 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778916325, - "stop_time_in_millis": 1569785569749, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 6653423, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70064779, - "total_time_in_millis": 719 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52444782241, - "reused_in_bytes": 0, - "total_in_bytes": 52444782241 - }, - "source_throttle_time_in_millis": 6577832, - "target_throttle_time_in_millis": 1200828, - "total_time_in_millis": 9098970 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432719, - "stop_time_in_millis": 1569837532545, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 9099825, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73342705, - "total_time_in_millis": 841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55082706020, - "reused_in_bytes": 0, - "total_in_bytes": 55082706020 - }, - "source_throttle_time_in_millis": 74094, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2224935 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569142908687, - "stop_time_in_millis": 1569145136712, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2228024, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77367997, - "total_time_in_millis": 2568 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51908112758, - "reused_in_bytes": 0, - "total_in_bytes": 51908112758 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 26862, - "total_time_in_millis": 1207237 - }, - "index_name": "om-iu-bro-2019.09.20-000955", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435639, - "stop_time_in_millis": 1569844643594, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1207955, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73724936, - "total_time_in_millis": 708 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53322535798, - "reused_in_bytes": 0, - "total_in_bytes": 53322535798 - }, - "source_throttle_time_in_millis": 370641, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2591702 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546770, - "stop_time_in_millis": 1569236140919, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2594148, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78129407, - "total_time_in_millis": 1922 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51788886689, - "reused_in_bytes": 0, - "total_in_bytes": 51788886689 - }, - "source_throttle_time_in_millis": 2772092, - "target_throttle_time_in_millis": 4479933, - "total_time_in_millis": 7097219 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822000033, - "stop_time_in_millis": 1569829098544, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 7098510, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76175884, - "total_time_in_millis": 772 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54682352641, - "reused_in_bytes": 0, - "total_in_bytes": 54682352641 - }, - "source_throttle_time_in_millis": 68245, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2296446 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546772, - "stop_time_in_millis": 1569235846049, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2299277, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77977698, - "total_time_in_millis": 2290 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53734282171, - "reused_in_bytes": 0, - "total_in_bytes": 53734282171 - }, - "source_throttle_time_in_millis": 66349, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2551576 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546776, - "stop_time_in_millis": 1569236101381, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2554604, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78122872, - "total_time_in_millis": 2502 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52570235908, - "reused_in_bytes": 0, - "total_in_bytes": 52570235908 - }, - "source_throttle_time_in_millis": 1648480, - "target_throttle_time_in_millis": 6696835, - "total_time_in_millis": 7585241 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832295261, - "stop_time_in_millis": 1569839881280, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 7586019, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75930193, - "total_time_in_millis": 699 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51990558749, - "reused_in_bytes": 0, - "total_in_bytes": 51990558749 - }, - "source_throttle_time_in_millis": 8601, - "target_throttle_time_in_millis": 53597, - "total_time_in_millis": 1255125 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961931376, - "stop_time_in_millis": 1569963187163, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1255786, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76154084, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51674887597, - "reused_in_bytes": 0, - "total_in_bytes": 51674887597 - }, - "source_throttle_time_in_millis": 1781271, - "target_throttle_time_in_millis": 5740256, - "total_time_in_millis": 7513628 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483166, - "stop_time_in_millis": 1569832997577, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 7514411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75739775, - "total_time_in_millis": 753 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48635910741, - "reused_in_bytes": 0, - "total_in_bytes": 48635910741 - }, - "source_throttle_time_in_millis": 111790, - "target_throttle_time_in_millis": 927732, - "total_time_in_millis": 1999685 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569958806101, - "stop_time_in_millis": 1569960806439, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2000338, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72054330, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51538488328, - "reused_in_bytes": 0, - "total_in_bytes": 51538488328 - }, - "source_throttle_time_in_millis": 544811, - "target_throttle_time_in_millis": 4395952, - "total_time_in_millis": 5270724 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569786347386, - "stop_time_in_millis": 1569791619866, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5272480, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76112424, - "total_time_in_millis": 771 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53852960752, - "reused_in_bytes": 0, - "total_in_bytes": 53852960752 - }, - "source_throttle_time_in_millis": 61910, - "target_throttle_time_in_millis": 37, - "total_time_in_millis": 2561281 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546776, - "stop_time_in_millis": 1569236110711, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2563934, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78260277, - "total_time_in_millis": 2119 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51810357866, - "reused_in_bytes": 0, - "total_in_bytes": 51810357866 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 7085, - "total_time_in_millis": 1431721 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962854422, - "stop_time_in_millis": 1569964286751, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1432329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76128597, - "total_time_in_millis": 600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50156323024, - "reused_in_bytes": 0, - "total_in_bytes": 50156323024 - }, - "source_throttle_time_in_millis": 1465479, - "target_throttle_time_in_millis": 6145419, - "total_time_in_millis": 7385398 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797526640, - "stop_time_in_millis": 1569804912817, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 7386177, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73607442, - "total_time_in_millis": 767 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51900579869, - "reused_in_bytes": 0, - "total_in_bytes": 51900579869 - }, - "source_throttle_time_in_millis": 5644280, - "target_throttle_time_in_millis": 4920131, - "total_time_in_millis": 10300980 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575027, - "stop_time_in_millis": 1569837876828, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 10301800, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76045834, - "total_time_in_millis": 790 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52570235908, - "reused_in_bytes": 0, - "total_in_bytes": 52570235908 - }, - "source_throttle_time_in_millis": 3369880, - "target_throttle_time_in_millis": 3514748, - "total_time_in_millis": 7238905 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829789267, - "stop_time_in_millis": 1569837028899, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 7239632, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75930193, - "total_time_in_millis": 712 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51859063068, - "reused_in_bytes": 0, - "total_in_bytes": 51859063068 - }, - "source_throttle_time_in_millis": 5529369, - "target_throttle_time_in_millis": 4316352, - "total_time_in_millis": 9571646 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792925716, - "stop_time_in_millis": 1569802498160, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 9572444, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76038032, - "total_time_in_millis": 789 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51226844213, - "reused_in_bytes": 0, - "total_in_bytes": 51226844213 - }, - "source_throttle_time_in_millis": 935770, - "target_throttle_time_in_millis": 5256609, - "total_time_in_millis": 6417710 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810128380, - "stop_time_in_millis": 1569816547635, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6419255, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75685605, - "total_time_in_millis": 1520 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50156323024, - "reused_in_bytes": 0, - "total_in_bytes": 50156323024 - }, - "source_throttle_time_in_millis": 1334653, - "target_throttle_time_in_millis": 14710, - "total_time_in_millis": 2609727 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569912742822, - "stop_time_in_millis": 1569915354734, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2611912, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73607442, - "total_time_in_millis": 664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52522267054, - "reused_in_bytes": 0, - "total_in_bytes": 52522267054 - }, - "source_throttle_time_in_millis": 160369, - "target_throttle_time_in_millis": 352075, - "total_time_in_millis": 1811962 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569969717222, - "stop_time_in_millis": 1569971529818, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1812596, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75790410, - "total_time_in_millis": 626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53825044796, - "reused_in_bytes": 0, - "total_in_bytes": 53825044796 - }, - "source_throttle_time_in_millis": 62607, - "target_throttle_time_in_millis": 27, - "total_time_in_millis": 2062069 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546770, - "stop_time_in_millis": 1569235611415, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2064645, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78385345, - "total_time_in_millis": 2051 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54678776753, - "reused_in_bytes": 0, - "total_in_bytes": 54678776753 - }, - "source_throttle_time_in_millis": 67008, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2202400 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546770, - "stop_time_in_millis": 1569235751405, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2204634, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78150787, - "total_time_in_millis": 2223 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54398628397, - "reused_in_bytes": 0, - "total_in_bytes": 54398628397 - }, - "source_throttle_time_in_millis": 96635, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2256884 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546771, - "stop_time_in_millis": 1569235806138, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2259367, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78137566, - "total_time_in_millis": 1962 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 46995894809, - "reused_in_bytes": 0, - "total_in_bytes": 46995894809 - }, - "source_throttle_time_in_millis": 95485, - "target_throttle_time_in_millis": 82, - "total_time_in_millis": 1324569 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892399428, - "stop_time_in_millis": 1569893724754, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1325325, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69556209, - "total_time_in_millis": 748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52442192066, - "reused_in_bytes": 0, - "total_in_bytes": 52442192066 - }, - "source_throttle_time_in_millis": 279837, - "target_throttle_time_in_millis": 601990, - "total_time_in_millis": 2313637 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867316, - "stop_time_in_millis": 1569838181773, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2314457, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75961898, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48635910741, - "reused_in_bytes": 0, - "total_in_bytes": 48635910741 - }, - "source_throttle_time_in_millis": 2849328, - "target_throttle_time_in_millis": 4443524, - "total_time_in_millis": 7920853 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772805595, - "stop_time_in_millis": 1569780727291, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 7921695, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72054330, - "total_time_in_millis": 822 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 238, - "reused": 0, - "total": 238 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53888816962, - "reused_in_bytes": 0, - "total_in_bytes": 53888816962 - }, - "source_throttle_time_in_millis": 66110, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2143913 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546771, - "stop_time_in_millis": 1569235693088, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2146317, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78362912, - "total_time_in_millis": 1877 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54238277111, - "reused_in_bytes": 0, - "total_in_bytes": 54238277111 - }, - "source_throttle_time_in_millis": 68310, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2188983 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546771, - "stop_time_in_millis": 1569235738331, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2191560, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77641948, - "total_time_in_millis": 1942 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53939041452, - "reused_in_bytes": 0, - "total_in_bytes": 53939041452 - }, - "source_throttle_time_in_millis": 66086, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2167987 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546771, - "stop_time_in_millis": 1569235717209, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2170438, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78319391, - "total_time_in_millis": 1932 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53651845235, - "reused_in_bytes": 0, - "total_in_bytes": 53651845235 - }, - "source_throttle_time_in_millis": 66332, - "target_throttle_time_in_millis": 19, - "total_time_in_millis": 2076109 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546770, - "stop_time_in_millis": 1569235625393, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2078623, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78301529, - "total_time_in_millis": 1997 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51854208361, - "reused_in_bytes": 0, - "total_in_bytes": 51854208361 - }, - "source_throttle_time_in_millis": 4777918, - "target_throttle_time_in_millis": 4149611, - "total_time_in_millis": 9087972 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825970429, - "stop_time_in_millis": 1569835059233, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 9088804, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76026831, - "total_time_in_millis": 822 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51906698751, - "reused_in_bytes": 0, - "total_in_bytes": 51906698751 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 547416, - "total_time_in_millis": 1766644 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569927876579, - "stop_time_in_millis": 1569929643878, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1767298, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76121042, - "total_time_in_millis": 645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53276656160, - "reused_in_bytes": 0, - "total_in_bytes": 53276656160 - }, - "source_throttle_time_in_millis": 49074, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3683623 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546771, - "stop_time_in_millis": 1569237233825, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 3687054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77878372, - "total_time_in_millis": 2902 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53853298157, - "reused_in_bytes": 0, - "total_in_bytes": 53853298157 - }, - "source_throttle_time_in_millis": 62563, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2134850 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569233546771, - "stop_time_in_millis": 1569235683568, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2136797, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78315187, - "total_time_in_millis": 1934 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 46995894809, - "reused_in_bytes": 0, - "total_in_bytes": 46995894809 - }, - "source_throttle_time_in_millis": 5186, - "target_throttle_time_in_millis": 99176, - "total_time_in_millis": 1303187 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569867673589, - "stop_time_in_millis": 1569868977396, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1303806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69556209, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52270958264, - "reused_in_bytes": 0, - "total_in_bytes": 52270958264 - }, - "source_throttle_time_in_millis": 3535425, - "target_throttle_time_in_millis": 4787807, - "total_time_in_millis": 8282464 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772928757, - "stop_time_in_millis": 1569781212096, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 8283338, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75469737, - "total_time_in_millis": 859 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52634468693, - "reused_in_bytes": 0, - "total_in_bytes": 52634468693 - }, - "source_throttle_time_in_millis": 5550129, - "target_throttle_time_in_millis": 3328959, - "total_time_in_millis": 9802127 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467907, - "stop_time_in_millis": 1569832272753, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 9804846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75764607, - "total_time_in_millis": 2695 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51674887597, - "reused_in_bytes": 0, - "total_in_bytes": 51674887597 - }, - "source_throttle_time_in_millis": 737996, - "target_throttle_time_in_millis": 5581199, - "total_time_in_millis": 6190993 - }, - "index_name": "om-iu-bro-2019.09.21-000959", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828680381, - "stop_time_in_millis": 1569834872653, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 6192271, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75739775, - "total_time_in_millis": 749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52612822107, - "reused_in_bytes": 0, - "total_in_bytes": 52612822107 - }, - "source_throttle_time_in_millis": 96014, - "target_throttle_time_in_millis": 958660, - "total_time_in_millis": 2093935 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906872067, - "stop_time_in_millis": 1569908966665, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2094598, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74476466, - "total_time_in_millis": 653 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56429693825, - "reused_in_bytes": 0, - "total_in_bytes": 56429693825 - }, - "source_throttle_time_in_millis": 95009, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2626400 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568854815918, - "stop_time_in_millis": 1568857444845, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2628927, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77832574, - "total_time_in_millis": 2510 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52659807531, - "reused_in_bytes": 0, - "total_in_bytes": 52659807531 - }, - "source_throttle_time_in_millis": 10976, - "target_throttle_time_in_millis": 50941, - "total_time_in_millis": 1638139 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569923261854, - "stop_time_in_millis": 1569924900778, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1638923, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74565409, - "total_time_in_millis": 773 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53045892882, - "reused_in_bytes": 0, - "total_in_bytes": 53045892882 - }, - "source_throttle_time_in_millis": 4244514, - "target_throttle_time_in_millis": 5645630, - "total_time_in_millis": 9525446 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824192490, - "stop_time_in_millis": 1569833718792, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 9526301, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74162663, - "total_time_in_millis": 841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52659807531, - "reused_in_bytes": 0, - "total_in_bytes": 52659807531 - }, - "source_throttle_time_in_millis": 2776070, - "target_throttle_time_in_millis": 6358888, - "total_time_in_millis": 8536671 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569777285363, - "stop_time_in_millis": 1569785822863, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 8537499, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74565409, - "total_time_in_millis": 800 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52421518252, - "reused_in_bytes": 0, - "total_in_bytes": 52421518252 - }, - "source_throttle_time_in_millis": 1281842, - "target_throttle_time_in_millis": 15255, - "total_time_in_millis": 2658288 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569912985213, - "stop_time_in_millis": 1569915644208, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2658995, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74461418, - "total_time_in_millis": 699 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53045892882, - "reused_in_bytes": 0, - "total_in_bytes": 53045892882 - }, - "source_throttle_time_in_millis": 4543730, - "target_throttle_time_in_millis": 56398, - "total_time_in_millis": 6119490 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756749277, - "stop_time_in_millis": 1569762870106, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 6120828, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74162663, - "total_time_in_millis": 801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53201823557, - "reused_in_bytes": 0, - "total_in_bytes": 53201823557 - }, - "source_throttle_time_in_millis": 174553, - "target_throttle_time_in_millis": 3482505, - "total_time_in_millis": 4395516 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568902892767, - "stop_time_in_millis": 1568907288964, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 4396197, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74333318, - "total_time_in_millis": 668 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52344579726, - "reused_in_bytes": 0, - "total_in_bytes": 52344579726 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 54375, - "total_time_in_millis": 1367507 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947627155, - "stop_time_in_millis": 1569948995339, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1368183, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74110604, - "total_time_in_millis": 665 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53201823557, - "reused_in_bytes": 0, - "total_in_bytes": 53201823557 - }, - "source_throttle_time_in_millis": 5258624, - "target_throttle_time_in_millis": 4742234, - "total_time_in_millis": 10014364 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568884636236, - "stop_time_in_millis": 1568894651923, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 10015687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74333318, - "total_time_in_millis": 804 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52480477139, - "reused_in_bytes": 0, - "total_in_bytes": 52480477139 - }, - "source_throttle_time_in_millis": 6858890, - "target_throttle_time_in_millis": 3872702, - "total_time_in_millis": 11029547 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337356, - "stop_time_in_millis": 1569809368852, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 11031496, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74335491, - "total_time_in_millis": 883 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52345046065, - "reused_in_bytes": 0, - "total_in_bytes": 52345046065 - }, - "source_throttle_time_in_millis": 27372, - "target_throttle_time_in_millis": 93, - "total_time_in_millis": 1274704 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902431999, - "stop_time_in_millis": 1569903707326, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1275326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74520499, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52612822107, - "reused_in_bytes": 0, - "total_in_bytes": 52612822107 - }, - "source_throttle_time_in_millis": 5025956, - "target_throttle_time_in_millis": 5119944, - "total_time_in_millis": 10880655 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893904094, - "stop_time_in_millis": 1568904785550, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 10881456, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74476466, - "total_time_in_millis": 789 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52967853475, - "reused_in_bytes": 0, - "total_in_bytes": 52967853475 - }, - "source_throttle_time_in_millis": 82937, - "target_throttle_time_in_millis": 136852, - "total_time_in_millis": 1663958 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569971376171, - "stop_time_in_millis": 1569973040843, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1664671, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74095258, - "total_time_in_millis": 702 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51382166478, - "reused_in_bytes": 0, - "total_in_bytes": 51382166478 - }, - "source_throttle_time_in_millis": 130572, - "target_throttle_time_in_millis": 164, - "total_time_in_millis": 1442550 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569870892202, - "stop_time_in_millis": 1569872337272, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1445070, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73325421, - "total_time_in_millis": 2508 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52542053432, - "reused_in_bytes": 0, - "total_in_bytes": 52542053432 - }, - "source_throttle_time_in_millis": 4749924, - "target_throttle_time_in_millis": 5560796, - "total_time_in_millis": 9681940 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819612058, - "stop_time_in_millis": 1569829294858, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 9682799, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74530998, - "total_time_in_millis": 843 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52965355999, - "reused_in_bytes": 0, - "total_in_bytes": 52965355999 - }, - "source_throttle_time_in_millis": 1699848, - "target_throttle_time_in_millis": 2352598, - "total_time_in_millis": 4823249 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832328648, - "stop_time_in_millis": 1569837153667, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 4825019, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73874010, - "total_time_in_millis": 698 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52345046065, - "reused_in_bytes": 0, - "total_in_bytes": 52345046065 - }, - "source_throttle_time_in_millis": 77773, - "target_throttle_time_in_millis": 44855, - "total_time_in_millis": 1328696 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569912117096, - "stop_time_in_millis": 1569913446382, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1329286, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74520499, - "total_time_in_millis": 579 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51382166478, - "reused_in_bytes": 0, - "total_in_bytes": 51382166478 - }, - "source_throttle_time_in_millis": 2217998, - "target_throttle_time_in_millis": 5461200, - "total_time_in_millis": 7442520 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813693268, - "stop_time_in_millis": 1569821136659, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 7443391, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73325421, - "total_time_in_millis": 861 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52373344670, - "reused_in_bytes": 0, - "total_in_bytes": 52373344670 - }, - "source_throttle_time_in_millis": 1106543, - "target_throttle_time_in_millis": 2665467, - "total_time_in_millis": 4645498 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568898317875, - "stop_time_in_millis": 1568902964182, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 4646306, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74250133, - "total_time_in_millis": 701 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52395045798, - "reused_in_bytes": 0, - "total_in_bytes": 52395045798 - }, - "source_throttle_time_in_millis": 4620719, - "target_throttle_time_in_millis": 3929036, - "total_time_in_millis": 8990327 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568895199752, - "stop_time_in_millis": 1568904191336, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 8991584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74341690, - "total_time_in_millis": 730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56503685623, - "reused_in_bytes": 0, - "total_in_bytes": 56503685623 - }, - "source_throttle_time_in_millis": 73617, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2355043 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568854815918, - "stop_time_in_millis": 1568857173881, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2357963, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78170408, - "total_time_in_millis": 2404 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55619198238, - "reused_in_bytes": 0, - "total_in_bytes": 55619198238 - }, - "source_throttle_time_in_millis": 70027, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2307218 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568854815917, - "stop_time_in_millis": 1568857126374, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2310457, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77917854, - "total_time_in_millis": 2713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56215957789, - "reused_in_bytes": 0, - "total_in_bytes": 56215957789 - }, - "source_throttle_time_in_millis": 72334, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2727104 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568854815928, - "stop_time_in_millis": 1568857546124, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2730196, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77575226, - "total_time_in_millis": 3075 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55793321095, - "reused_in_bytes": 0, - "total_in_bytes": 55793321095 - }, - "source_throttle_time_in_millis": 69669, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2298135 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568854815919, - "stop_time_in_millis": 1568857117155, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2301236, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78282073, - "total_time_in_millis": 2571 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52433814254, - "reused_in_bytes": 0, - "total_in_bytes": 52433814254 - }, - "source_throttle_time_in_millis": 2787660, - "target_throttle_time_in_millis": 934544, - "total_time_in_millis": 4761151 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568904076415, - "stop_time_in_millis": 1568908838187, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 4761772, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74248702, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50126215766, - "reused_in_bytes": 0, - "total_in_bytes": 50126215766 - }, - "source_throttle_time_in_millis": 3984383, - "target_throttle_time_in_millis": 4187271, - "total_time_in_millis": 8543047 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893366855, - "stop_time_in_millis": 1568901911970, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 8545114, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71285711, - "total_time_in_millis": 2056 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52395045798, - "reused_in_bytes": 0, - "total_in_bytes": 52395045798 - }, - "source_throttle_time_in_millis": 56914, - "target_throttle_time_in_millis": 5372817, - "total_time_in_millis": 5593277 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810004632, - "stop_time_in_millis": 1569815598739, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 5594107, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74341690, - "total_time_in_millis": 818 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53088956351, - "reused_in_bytes": 0, - "total_in_bytes": 53088956351 - }, - "source_throttle_time_in_millis": 1094211, - "target_throttle_time_in_millis": 4997331, - "total_time_in_millis": 6186457 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781891885, - "stop_time_in_millis": 1569788079396, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6187510, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74080753, - "total_time_in_millis": 1016 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52967853475, - "reused_in_bytes": 0, - "total_in_bytes": 52967853475 - }, - "source_throttle_time_in_millis": 918563, - "target_throttle_time_in_millis": 5936228, - "total_time_in_millis": 6840140 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825007350, - "stop_time_in_millis": 1569831848312, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6840961, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74095258, - "total_time_in_millis": 811 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52344579726, - "reused_in_bytes": 0, - "total_in_bytes": 52344579726 - }, - "source_throttle_time_in_millis": 335963, - "target_throttle_time_in_millis": 19718, - "total_time_in_millis": 1739761 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954841888, - "stop_time_in_millis": 1569956582297, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1740409, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74110604, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50126215766, - "reused_in_bytes": 0, - "total_in_bytes": 50126215766 - }, - "source_throttle_time_in_millis": 926818, - "target_throttle_time_in_millis": 6430379, - "total_time_in_millis": 7504616 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810280875, - "stop_time_in_millis": 1569817786718, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 7505842, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71285711, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53187705115, - "reused_in_bytes": 0, - "total_in_bytes": 53187705115 - }, - "source_throttle_time_in_millis": 45814, - "target_throttle_time_in_millis": 314166, - "total_time_in_millis": 1977274 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569935680562, - "stop_time_in_millis": 1569937658463, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1977900, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74397195, - "total_time_in_millis": 617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52421518252, - "reused_in_bytes": 0, - "total_in_bytes": 52421518252 - }, - "source_throttle_time_in_millis": 4751627, - "target_throttle_time_in_millis": 5406071, - "total_time_in_millis": 9721550 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568884636292, - "stop_time_in_millis": 1568894358668, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 9722376, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74461418, - "total_time_in_millis": 808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52373344670, - "reused_in_bytes": 0, - "total_in_bytes": 52373344670 - }, - "source_throttle_time_in_millis": 191916, - "target_throttle_time_in_millis": 35484, - "total_time_in_millis": 1485003 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569938592154, - "stop_time_in_millis": 1569940078345, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1486190, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74250133, - "total_time_in_millis": 673 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52480477139, - "reused_in_bytes": 0, - "total_in_bytes": 52480477139 - }, - "source_throttle_time_in_millis": 1526303, - "target_throttle_time_in_millis": 5576964, - "total_time_in_millis": 7093931 - }, - "index_name": "om-iu-bro-2019.09.16-000939", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827950779, - "stop_time_in_millis": 1569835045443, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 7094663, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74335491, - "total_time_in_millis": 722 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56896669338, - "reused_in_bytes": 0, - "total_in_bytes": 56896669338 - }, - "source_throttle_time_in_millis": 88699, - "target_throttle_time_in_millis": 61059, - "total_time_in_millis": 1697134 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569877995138, - "stop_time_in_millis": 1569879693030, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1697892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84213426, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 28653276201, - "reused_in_bytes": 0, - "total_in_bytes": 28653276201 - }, - "source_throttle_time_in_millis": 2564470, - "target_throttle_time_in_millis": 1721478, - "total_time_in_millis": 4961501 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805387797, - "stop_time_in_millis": 1569810349859, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 4962062, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 45220193, - "total_time_in_millis": 544 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58562858249, - "reused_in_bytes": 0, - "total_in_bytes": 58562858249 - }, - "source_throttle_time_in_millis": 83306, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2614909 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220461, - "stop_time_in_millis": 1569217838063, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2617601, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86162464, - "total_time_in_millis": 2147 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 59172046014, - "reused_in_bytes": 0, - "total_in_bytes": 59172046014 - }, - "source_throttle_time_in_millis": 71740, - "target_throttle_time_in_millis": 82, - "total_time_in_millis": 2904733 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220469, - "stop_time_in_millis": 1569218128212, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2907743, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86026590, - "total_time_in_millis": 2474 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 59381840137, - "reused_in_bytes": 0, - "total_in_bytes": 59381840137 - }, - "source_throttle_time_in_millis": 72130, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2384913 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220462, - "stop_time_in_millis": 1569217609510, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2389047, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86118422, - "total_time_in_millis": 3607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 59278671506, - "reused_in_bytes": 0, - "total_in_bytes": 59278671506 - }, - "source_throttle_time_in_millis": 82309, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2434166 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220459, - "stop_time_in_millis": 1569217657347, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2436888, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86278520, - "total_time_in_millis": 2182 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56916862503, - "reused_in_bytes": 0, - "total_in_bytes": 56916862503 - }, - "source_throttle_time_in_millis": 4211257, - "target_throttle_time_in_millis": 1696045, - "total_time_in_millis": 7285708 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806704216, - "stop_time_in_millis": 1569813990825, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 7286608, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84217861, - "total_time_in_millis": 890 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56951511392, - "reused_in_bytes": 0, - "total_in_bytes": 56951511392 - }, - "source_throttle_time_in_millis": 4133383, - "target_throttle_time_in_millis": 4911136, - "total_time_in_millis": 8961345 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820697963, - "stop_time_in_millis": 1569829660228, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 8962264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84204003, - "total_time_in_millis": 906 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 59102845716, - "reused_in_bytes": 0, - "total_in_bytes": 59102845716 - }, - "source_throttle_time_in_millis": 74608, - "target_throttle_time_in_millis": 50, - "total_time_in_millis": 2420121 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220465, - "stop_time_in_millis": 1569217643728, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2423263, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86167755, - "total_time_in_millis": 2454 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56843529946, - "reused_in_bytes": 0, - "total_in_bytes": 56843529946 - }, - "source_throttle_time_in_millis": 271081, - "target_throttle_time_in_millis": 39815, - "total_time_in_millis": 1990470 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964663504, - "stop_time_in_millis": 1569966654745, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1991241, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84226432, - "total_time_in_millis": 761 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 28396519112, - "reused_in_bytes": 0, - "total_in_bytes": 28396519112 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 11925, - "total_time_in_millis": 714290 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569975087740, - "stop_time_in_millis": 1569975802432, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 714691, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 44911426, - "total_time_in_millis": 392 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 27524915412, - "reused_in_bytes": 0, - "total_in_bytes": 27524915412 - }, - "source_throttle_time_in_millis": 39266, - "target_throttle_time_in_millis": 77, - "total_time_in_millis": 747388 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569950846764, - "stop_time_in_millis": 1569951594571, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 747806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 43526785, - "total_time_in_millis": 405 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56880191820, - "reused_in_bytes": 0, - "total_in_bytes": 56880191820 - }, - "source_throttle_time_in_millis": 820754, - "target_throttle_time_in_millis": 2245357, - "total_time_in_millis": 4124194 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706969, - "stop_time_in_millis": 1569842831971, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 4125002, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84209136, - "total_time_in_millis": 797 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56541110389, - "reused_in_bytes": 0, - "total_in_bytes": 56541110389 - }, - "source_throttle_time_in_millis": 615126, - "target_throttle_time_in_millis": 5156724, - "total_time_in_millis": 6187326 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789685905, - "stop_time_in_millis": 1569795874220, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 6188315, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84230300, - "total_time_in_millis": 978 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56896669338, - "reused_in_bytes": 0, - "total_in_bytes": 56896669338 - }, - "source_throttle_time_in_millis": 4549001, - "target_throttle_time_in_millis": 4780851, - "total_time_in_millis": 9818237 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792925721, - "stop_time_in_millis": 1569802744932, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 9819211, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84213426, - "total_time_in_millis": 962 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56880191820, - "reused_in_bytes": 0, - "total_in_bytes": 56880191820 - }, - "source_throttle_time_in_millis": 4266415, - "target_throttle_time_in_millis": 6383979, - "total_time_in_millis": 10072486 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817025362, - "stop_time_in_millis": 1569827098764, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 10073401, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84209136, - "total_time_in_millis": 899 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57488154824, - "reused_in_bytes": 0, - "total_in_bytes": 57488154824 - }, - "source_throttle_time_in_millis": 1165573, - "target_throttle_time_in_millis": 6947792, - "total_time_in_millis": 7866932 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810992019, - "stop_time_in_millis": 1569818859918, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 7867899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84224358, - "total_time_in_millis": 947 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2790 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569217325044, - "stop_time_in_millis": 1569217328362, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 3317, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 487 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 28242228194, - "reused_in_bytes": 0, - "total_in_bytes": 28242228194 - }, - "source_throttle_time_in_millis": 26016, - "target_throttle_time_in_millis": 165238, - "total_time_in_millis": 827801 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961391072, - "stop_time_in_millis": 1569962219299, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 828227, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 44649013, - "total_time_in_millis": 414 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 59159810612, - "reused_in_bytes": 0, - "total_in_bytes": 59159810612 - }, - "source_throttle_time_in_millis": 69563, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2452452 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220460, - "stop_time_in_millis": 1569217676606, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2456146, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86190044, - "total_time_in_millis": 2344 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 27471288238, - "reused_in_bytes": 0, - "total_in_bytes": 27471288238 - }, - "source_throttle_time_in_millis": 68440, - "target_throttle_time_in_millis": 48447, - "total_time_in_millis": 740519 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569955606887, - "stop_time_in_millis": 1569956347801, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 740913, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 43452951, - "total_time_in_millis": 376 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57428773116, - "reused_in_bytes": 0, - "total_in_bytes": 57428773116 - }, - "source_throttle_time_in_millis": 4418625, - "target_throttle_time_in_millis": 3838366, - "total_time_in_millis": 9210034 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800321174, - "stop_time_in_millis": 1569809532168, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 9210994, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84226076, - "total_time_in_millis": 947 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56843529946, - "reused_in_bytes": 0, - "total_in_bytes": 56843529946 - }, - "source_throttle_time_in_millis": 3738817, - "target_throttle_time_in_millis": 3953037, - "total_time_in_millis": 7804364 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828680440, - "stop_time_in_millis": 1569836485599, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 7805158, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84226432, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58624015086, - "reused_in_bytes": 0, - "total_in_bytes": 58624015086 - }, - "source_throttle_time_in_millis": 75751, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2808605 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220470, - "stop_time_in_millis": 1569218032118, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2811648, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86180100, - "total_time_in_millis": 2513 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569216370313, - "stop_time_in_millis": 1569216370937, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 623, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 589 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 28242228194, - "reused_in_bytes": 0, - "total_in_bytes": 28242228194 - }, - "source_throttle_time_in_millis": 281657, - "target_throttle_time_in_millis": 1514480, - "total_time_in_millis": 2157831 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569786936318, - "stop_time_in_millis": 1569789094651, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2158332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 44649013, - "total_time_in_millis": 491 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 27471288238, - "reused_in_bytes": 0, - "total_in_bytes": 27471288238 - }, - "source_throttle_time_in_millis": 27737, - "target_throttle_time_in_millis": 41674, - "total_time_in_millis": 701916 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875626368, - "stop_time_in_millis": 1569876328695, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 702327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 43452951, - "total_time_in_millis": 402 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57366493565, - "reused_in_bytes": 0, - "total_in_bytes": 57366493565 - }, - "source_throttle_time_in_millis": 33352, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1382134 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902474866, - "stop_time_in_millis": 1569903857635, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1382769, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 83946266, - "total_time_in_millis": 626 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 224, - "reused": 0, - "total": 224 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 28962730592, - "reused_in_bytes": 0, - "total_in_bytes": 28962730592 - }, - "source_throttle_time_in_millis": 34382, - "target_throttle_time_in_millis": 27, - "total_time_in_millis": 1194828 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220461, - "stop_time_in_millis": 1569216418267, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1197806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 45508859, - "total_time_in_millis": 2453 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56876330566, - "reused_in_bytes": 0, - "total_in_bytes": 56876330566 - }, - "source_throttle_time_in_millis": 2673865, - "target_throttle_time_in_millis": 5675934, - "total_time_in_millis": 8194624 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805485261, - "stop_time_in_millis": 1569813680776, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 8195515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84218255, - "total_time_in_millis": 870 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58610492749, - "reused_in_bytes": 0, - "total_in_bytes": 58610492749 - }, - "source_throttle_time_in_millis": 76262, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2478936 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220461, - "stop_time_in_millis": 1569217701487, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2481025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86105258, - "total_time_in_millis": 2069 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 59102845716, - "reused_in_bytes": 0, - "total_in_bytes": 59102845716 - }, - "source_throttle_time_in_millis": 75325, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2420791 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569215220460, - "stop_time_in_millis": 1569217643575, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2423114, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 86167755, - "total_time_in_millis": 2312 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57358707945, - "reused_in_bytes": 0, - "total_in_bytes": 57358707945 - }, - "source_throttle_time_in_millis": 28148, - "target_throttle_time_in_millis": 46231, - "total_time_in_millis": 1890163 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569873464316, - "stop_time_in_millis": 1569875355338, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1891021, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 83970908, - "total_time_in_millis": 845 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56541110389, - "reused_in_bytes": 0, - "total_in_bytes": 56541110389 - }, - "source_throttle_time_in_millis": 3776911, - "target_throttle_time_in_millis": 620692, - "total_time_in_millis": 6365219 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830770136, - "stop_time_in_millis": 1569837136782, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 6366645, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84230300, - "total_time_in_millis": 908 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56786526575, - "reused_in_bytes": 0, - "total_in_bytes": 56786526575 - }, - "source_throttle_time_in_millis": 22130, - "target_throttle_time_in_millis": 79776, - "total_time_in_millis": 1792954 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569923702556, - "stop_time_in_millis": 1569925496251, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1793695, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84208234, - "total_time_in_millis": 730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56786526575, - "reused_in_bytes": 0, - "total_in_bytes": 56786526575 - }, - "source_throttle_time_in_millis": 6529791, - "target_throttle_time_in_millis": 5288028, - "total_time_in_millis": 11250469 - }, - "index_name": "om-iu-bro-2019.09.20-000958", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822899577, - "stop_time_in_millis": 1569834150949, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 11251372, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 84208234, - "total_time_in_millis": 875 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50573547873, - "reused_in_bytes": 0, - "total_in_bytes": 50573547873 - }, - "source_throttle_time_in_millis": 65202, - "target_throttle_time_in_millis": 51, - "total_time_in_millis": 2060072 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569181558238, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2063227, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72198080, - "total_time_in_millis": 2637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 207, - "reused": 0, - "total": 207 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52796017483, - "reused_in_bytes": 0, - "total_in_bytes": 52796017483 - }, - "source_throttle_time_in_millis": 304275, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2844488 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495010, - "stop_time_in_millis": 1569182341687, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2846676, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75550581, - "total_time_in_millis": 1661 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50957806922, - "reused_in_bytes": 0, - "total_in_bytes": 50957806922 - }, - "source_throttle_time_in_millis": 3330467, - "target_throttle_time_in_millis": 5489246, - "total_time_in_millis": 8501234 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823052663, - "stop_time_in_millis": 1569831554773, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8502109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73567421, - "total_time_in_millis": 863 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53093876002, - "reused_in_bytes": 0, - "total_in_bytes": 53093876002 - }, - "source_throttle_time_in_millis": 31902, - "target_throttle_time_in_millis": 70, - "total_time_in_millis": 2588955 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495020, - "stop_time_in_millis": 1569182086707, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2591686, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75784463, - "total_time_in_millis": 2201 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50950717915, - "reused_in_bytes": 0, - "total_in_bytes": 50950717915 - }, - "source_throttle_time_in_millis": 5278188, - "target_throttle_time_in_millis": 1833469, - "total_time_in_millis": 8233306 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794242768, - "stop_time_in_millis": 1569802477188, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 8234420, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73461431, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51456742442, - "reused_in_bytes": 0, - "total_in_bytes": 51456742442 - }, - "source_throttle_time_in_millis": 5556942, - "target_throttle_time_in_millis": 1052597, - "total_time_in_millis": 8224031 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810102071, - "stop_time_in_millis": 1569818326811, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 8224740, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73245596, - "total_time_in_millis": 698 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51753831094, - "reused_in_bytes": 0, - "total_in_bytes": 51753831094 - }, - "source_throttle_time_in_millis": 82462, - "target_throttle_time_in_millis": 25295, - "total_time_in_millis": 1470547 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961135529, - "stop_time_in_millis": 1569962606693, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1471164, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73179492, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51094747017, - "reused_in_bytes": 0, - "total_in_bytes": 51094747017 - }, - "source_throttle_time_in_millis": 3745190, - "target_throttle_time_in_millis": 4121373, - "total_time_in_millis": 7826592 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819407761, - "stop_time_in_millis": 1569827235113, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 7827352, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73449594, - "total_time_in_millis": 733 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51047034594, - "reused_in_bytes": 0, - "total_in_bytes": 51047034594 - }, - "source_throttle_time_in_millis": 4652680, - "target_throttle_time_in_millis": 1736556, - "total_time_in_millis": 7439671 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801633089, - "stop_time_in_millis": 1569809073529, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 7440439, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73411342, - "total_time_in_millis": 758 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51546006083, - "reused_in_bytes": 0, - "total_in_bytes": 51546006083 - }, - "source_throttle_time_in_millis": 74300, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 1557782 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957432450, - "stop_time_in_millis": 1569958990994, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1558543, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72935023, - "total_time_in_millis": 749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51795988008, - "reused_in_bytes": 0, - "total_in_bytes": 51795988008 - }, - "source_throttle_time_in_millis": 5412944, - "target_throttle_time_in_millis": 2339897, - "total_time_in_millis": 8532928 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826042999, - "stop_time_in_millis": 1569834576784, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 8533785, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73489343, - "total_time_in_millis": 790 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53530657695, - "reused_in_bytes": 0, - "total_in_bytes": 53530657695 - }, - "source_throttle_time_in_millis": 72052, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2239512 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569181737063, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2242052, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75327909, - "total_time_in_millis": 2017 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51624810082, - "reused_in_bytes": 0, - "total_in_bytes": 51624810082 - }, - "source_throttle_time_in_millis": 349163, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2582659 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569182080823, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2585812, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73977807, - "total_time_in_millis": 2633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51546006083, - "reused_in_bytes": 0, - "total_in_bytes": 51546006083 - }, - "source_throttle_time_in_millis": 227612, - "target_throttle_time_in_millis": 65305, - "total_time_in_millis": 1776193 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970005583, - "stop_time_in_millis": 1569971782504, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1776921, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72935023, - "total_time_in_millis": 713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50957806922, - "reused_in_bytes": 0, - "total_in_bytes": 50957806922 - }, - "source_throttle_time_in_millis": 2451847, - "target_throttle_time_in_millis": 5659744, - "total_time_in_millis": 7579399 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706937, - "stop_time_in_millis": 1569846286975, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7580038, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73567421, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51624810079, - "reused_in_bytes": 0, - "total_in_bytes": 51624810079 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 134, - "total_time_in_millis": 1204126 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569182085944, - "stop_time_in_millis": 1569183292598, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1206653, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73977807, - "total_time_in_millis": 2518 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51130845503, - "reused_in_bytes": 0, - "total_in_bytes": 51130845503 - }, - "source_throttle_time_in_millis": 5705997, - "target_throttle_time_in_millis": 4557975, - "total_time_in_millis": 10385508 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818860009, - "stop_time_in_millis": 1569829246343, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 10386334, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73522810, - "total_time_in_millis": 804 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51057113582, - "reused_in_bytes": 0, - "total_in_bytes": 51057113582 - }, - "source_throttle_time_in_millis": 3718693, - "target_throttle_time_in_millis": 2294560, - "total_time_in_millis": 6714672 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569774034759, - "stop_time_in_millis": 1569780750183, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 6715424, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73486112, - "total_time_in_millis": 708 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51753831094, - "reused_in_bytes": 0, - "total_in_bytes": 51753831094 - }, - "source_throttle_time_in_millis": 12252, - "target_throttle_time_in_millis": 47734, - "total_time_in_millis": 1469011 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569874699827, - "stop_time_in_millis": 1569876169516, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1469689, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73179492, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51509651332, - "reused_in_bytes": 0, - "total_in_bytes": 51509651332 - }, - "source_throttle_time_in_millis": 79432, - "target_throttle_time_in_millis": 72, - "total_time_in_millis": 1361565 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569882822032, - "stop_time_in_millis": 1569884184198, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1362165, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73022474, - "total_time_in_millis": 587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47478613246, - "reused_in_bytes": 0, - "total_in_bytes": 47478613246 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 261748, - "total_time_in_millis": 1321541 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978357747, - "stop_time_in_millis": 1569979679857, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1322109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 67418364, - "total_time_in_millis": 558 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52480706873, - "reused_in_bytes": 0, - "total_in_bytes": 52480706873 - }, - "source_throttle_time_in_millis": 51647, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3778344 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569183276502, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 3781490, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75313089, - "total_time_in_millis": 2620 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52846524427, - "reused_in_bytes": 0, - "total_in_bytes": 52846524427 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 285, - "total_time_in_millis": 1239027 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569181651795, - "stop_time_in_millis": 1569182892501, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1240705, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75315307, - "total_time_in_millis": 1661 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50359295243, - "reused_in_bytes": 0, - "total_in_bytes": 50359295243 - }, - "source_throttle_time_in_millis": 112082, - "target_throttle_time_in_millis": 149423, - "total_time_in_millis": 1896165 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569760839390, - "stop_time_in_millis": 1569762736285, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1896894, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72908142, - "total_time_in_millis": 714 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53175104227, - "reused_in_bytes": 0, - "total_in_bytes": 53175104227 - }, - "source_throttle_time_in_millis": 64754, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2091495 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569181590191, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2095180, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75898234, - "total_time_in_millis": 3158 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53099638634, - "reused_in_bytes": 0, - "total_in_bytes": 53099638634 - }, - "source_throttle_time_in_millis": 58248, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2063824 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569181561204, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2066192, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75857271, - "total_time_in_millis": 1847 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53195482164, - "reused_in_bytes": 0, - "total_in_bytes": 53195482164 - }, - "source_throttle_time_in_millis": 62842, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2138104 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495012, - "stop_time_in_millis": 1569181636457, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2141445, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75748226, - "total_time_in_millis": 2819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53274696845, - "reused_in_bytes": 0, - "total_in_bytes": 53274696845 - }, - "source_throttle_time_in_millis": 68433, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2173494 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569181671655, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2176644, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75772469, - "total_time_in_millis": 2627 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51047351245, - "reused_in_bytes": 0, - "total_in_bytes": 51047351245 - }, - "source_throttle_time_in_millis": 4963712, - "target_throttle_time_in_millis": 2252171, - "total_time_in_millis": 8404950 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814126769, - "stop_time_in_millis": 1569822534244, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 8407475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73505624, - "total_time_in_millis": 857 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52846524430, - "reused_in_bytes": 0, - "total_in_bytes": 52846524430 - }, - "source_throttle_time_in_millis": 66297, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2148918 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495011, - "stop_time_in_millis": 1569181646261, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2151250, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75315307, - "total_time_in_millis": 1787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50573547873, - "reused_in_bytes": 0, - "total_in_bytes": 50573547873 - }, - "source_throttle_time_in_millis": 63866, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2060067 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569179495012, - "stop_time_in_millis": 1569181558089, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2063077, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72198080, - "total_time_in_millis": 2489 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51186369144, - "reused_in_bytes": 0, - "total_in_bytes": 51186369144 - }, - "source_throttle_time_in_millis": 4751005, - "target_throttle_time_in_millis": 6253499, - "total_time_in_millis": 10147664 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810280929, - "stop_time_in_millis": 1569820429331, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 10148401, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73508220, - "total_time_in_millis": 710 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47478613246, - "reused_in_bytes": 0, - "total_in_bytes": 47478613246 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 29372, - "total_time_in_millis": 1375090 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899812911, - "stop_time_in_millis": 1569901188568, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1375657, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 67418364, - "total_time_in_millis": 559 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51047034594, - "reused_in_bytes": 0, - "total_in_bytes": 51047034594 - }, - "source_throttle_time_in_millis": 203131, - "target_throttle_time_in_millis": 65286, - "total_time_in_millis": 1578163 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569903373038, - "stop_time_in_millis": 1569904951826, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1578787, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73411342, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51795988008, - "reused_in_bytes": 0, - "total_in_bytes": 51795988008 - }, - "source_throttle_time_in_millis": 120781, - "target_throttle_time_in_millis": 6172, - "total_time_in_millis": 1500091 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896527740, - "stop_time_in_millis": 1569898028535, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1500795, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73489343, - "total_time_in_millis": 686 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51456742442, - "reused_in_bytes": 0, - "total_in_bytes": 51456742442 - }, - "source_throttle_time_in_millis": 263161, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1570429 - }, - "index_name": "om-iu-bro-2019.09.20-000957", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569934018155, - "stop_time_in_millis": 1569935589180, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1571025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73245596, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50260843879, - "reused_in_bytes": 0, - "total_in_bytes": 50260843879 - }, - "source_throttle_time_in_millis": 79308, - "target_throttle_time_in_millis": 3963, - "total_time_in_millis": 1283821 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569933685046, - "stop_time_in_millis": 1569934969470, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1284423, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72830305, - "total_time_in_millis": 581 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52882987866, - "reused_in_bytes": 0, - "total_in_bytes": 52882987866 - }, - "source_throttle_time_in_millis": 70625, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2129798 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898867, - "stop_time_in_millis": 1568821031714, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2132846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75752862, - "total_time_in_millis": 3030 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49943825683, - "reused_in_bytes": 0, - "total_in_bytes": 49943825683 - }, - "source_throttle_time_in_millis": 953380, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2192618 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569904571065, - "stop_time_in_millis": 1569906764260, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2193194, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72751708, - "total_time_in_millis": 568 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49943825683, - "reused_in_bytes": 0, - "total_in_bytes": 49943825683 - }, - "source_throttle_time_in_millis": 139517, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 1640406 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957799025, - "stop_time_in_millis": 1569959440056, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1641030, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72751708, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50188517896, - "reused_in_bytes": 0, - "total_in_bytes": 50188517896 - }, - "source_throttle_time_in_millis": 5432950, - "target_throttle_time_in_millis": 4257283, - "total_time_in_millis": 9608306 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813693264, - "stop_time_in_millis": 1569823302916, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 9609651, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72766109, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50631105921, - "reused_in_bytes": 0, - "total_in_bytes": 50631105921 - }, - "source_throttle_time_in_millis": 3997952, - "target_throttle_time_in_millis": 5399452, - "total_time_in_millis": 9017659 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258730, - "stop_time_in_millis": 1569781277734, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 9019003, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72526264, - "total_time_in_millis": 771 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50275088017, - "reused_in_bytes": 0, - "total_in_bytes": 50275088017 - }, - "source_throttle_time_in_millis": 2537634, - "target_throttle_time_in_millis": 821625, - "total_time_in_millis": 4829756 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835869312, - "stop_time_in_millis": 1569840699731, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 4830418, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72818886, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50787276328, - "reused_in_bytes": 0, - "total_in_bytes": 50787276328 - }, - "source_throttle_time_in_millis": 511836, - "target_throttle_time_in_millis": 6099884, - "total_time_in_millis": 6459448 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789094709, - "stop_time_in_millis": 1569795554959, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6460249, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72602106, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50054001815, - "reused_in_bytes": 0, - "total_in_bytes": 50054001815 - }, - "source_throttle_time_in_millis": 308164, - "target_throttle_time_in_millis": 2063620, - "total_time_in_millis": 3558873 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568903206673, - "stop_time_in_millis": 1568906766339, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 3559666, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72757206, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53020188591, - "reused_in_bytes": 0, - "total_in_bytes": 53020188591 - }, - "source_throttle_time_in_millis": 66838, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2544444 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898869, - "stop_time_in_millis": 1568821447129, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2548260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75901512, - "total_time_in_millis": 3286 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52882310949, - "reused_in_bytes": 0, - "total_in_bytes": 52882310949 - }, - "source_throttle_time_in_millis": 67022, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2245525 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898863, - "stop_time_in_millis": 1568821160273, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2261410, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75756193, - "total_time_in_millis": 15840 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50667024453, - "reused_in_bytes": 0, - "total_in_bytes": 50667024453 - }, - "source_throttle_time_in_millis": 5585504, - "target_throttle_time_in_millis": 961302, - "total_time_in_millis": 7829353 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831547872, - "stop_time_in_millis": 1569839378164, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 7830292, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72505761, - "total_time_in_millis": 821 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50641524282, - "reused_in_bytes": 0, - "total_in_bytes": 50641524282 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 115734, - "total_time_in_millis": 1275821 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902101893, - "stop_time_in_millis": 1569903378289, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1276395, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72419938, - "total_time_in_millis": 566 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50054001815, - "reused_in_bytes": 0, - "total_in_bytes": 50054001815 - }, - "source_throttle_time_in_millis": 2263442, - "target_throttle_time_in_millis": 3795497, - "total_time_in_millis": 6206047 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782975428, - "stop_time_in_millis": 1569789182232, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 6206803, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72757206, - "total_time_in_millis": 728 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50236878354, - "reused_in_bytes": 0, - "total_in_bytes": 50236878354 - }, - "source_throttle_time_in_millis": 3625544, - "target_throttle_time_in_millis": 1787452, - "total_time_in_millis": 7042969 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568894651671, - "stop_time_in_millis": 1568901695429, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7043758, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72773079, - "total_time_in_millis": 774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50554856835, - "reused_in_bytes": 0, - "total_in_bytes": 50554856835 - }, - "source_throttle_time_in_millis": 306077, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 1492180 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956674854, - "stop_time_in_millis": 1569958167640, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1492786, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72286111, - "total_time_in_millis": 597 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52976951202, - "reused_in_bytes": 0, - "total_in_bytes": 52976951202 - }, - "source_throttle_time_in_millis": 69289, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2068694 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898861, - "stop_time_in_millis": 1568820971385, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2072523, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75904882, - "total_time_in_millis": 2803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50787276328, - "reused_in_bytes": 0, - "total_in_bytes": 50787276328 - }, - "source_throttle_time_in_millis": 5376133, - "target_throttle_time_in_millis": 1335289, - "total_time_in_millis": 7977087 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732141, - "stop_time_in_millis": 1569843710324, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 7978183, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72602106, - "total_time_in_millis": 580 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52742434194, - "reused_in_bytes": 0, - "total_in_bytes": 52742434194 - }, - "source_throttle_time_in_millis": 63479, - "target_throttle_time_in_millis": 139, - "total_time_in_millis": 2590545 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898862, - "stop_time_in_millis": 1568821492548, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2593685, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75566523, - "total_time_in_millis": 2623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50137356510, - "reused_in_bytes": 0, - "total_in_bytes": 50137356510 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 123, - "total_time_in_millis": 1235492 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569037375448, - "stop_time_in_millis": 1569038611557, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1236108, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72785977, - "total_time_in_millis": 608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53485523486, - "reused_in_bytes": 0, - "total_in_bytes": 53485523486 - }, - "source_throttle_time_in_millis": 70075, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2184292 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898866, - "stop_time_in_millis": 1568821086046, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2187180, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75709082, - "total_time_in_millis": 2873 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50006961650, - "reused_in_bytes": 0, - "total_in_bytes": 50006961650 - }, - "source_throttle_time_in_millis": 1274494, - "target_throttle_time_in_millis": 3286005, - "total_time_in_millis": 5458590 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788879984, - "stop_time_in_millis": 1569794339302, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5459318, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72640344, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 255, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 3580, - "reused_in_bytes": 51801186767, - "total_in_bytes": 51801190347 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4780 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568822774354, - "stop_time_in_millis": 1568822780038, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 5683, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74618312, - "total_time_in_millis": 865 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50006961650, - "reused_in_bytes": 0, - "total_in_bytes": 50006961650 - }, - "source_throttle_time_in_millis": 1537310, - "target_throttle_time_in_millis": 4644143, - "total_time_in_millis": 6555520 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258637, - "stop_time_in_millis": 1569778814976, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 6556338, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72640344, - "total_time_in_millis": 794 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50641524282, - "reused_in_bytes": 0, - "total_in_bytes": 50641524282 - }, - "source_throttle_time_in_millis": 510239, - "target_throttle_time_in_millis": 5963048, - "total_time_in_millis": 6479632 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783757594, - "stop_time_in_millis": 1569790237918, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6480324, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72419938, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48583559788, - "reused_in_bytes": 0, - "total_in_bytes": 48583559788 - }, - "source_throttle_time_in_millis": 31788, - "target_throttle_time_in_millis": 7677203, - "total_time_in_millis": 7121967 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688540, - "stop_time_in_millis": 1569763811297, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 7122757, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70583416, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49481406638, - "reused_in_bytes": 0, - "total_in_bytes": 49481406638 - }, - "source_throttle_time_in_millis": 41008, - "target_throttle_time_in_millis": 347, - "total_time_in_millis": 1215646 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569933384282, - "stop_time_in_millis": 1569934600537, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1216255, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72020145, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53409779117, - "reused_in_bytes": 0, - "total_in_bytes": 53409779117 - }, - "source_throttle_time_in_millis": 72413, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2190875 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898863, - "stop_time_in_millis": 1568821092606, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2193742, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75608642, - "total_time_in_millis": 2851 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50766330505, - "reused_in_bytes": 0, - "total_in_bytes": 50766330505 - }, - "source_throttle_time_in_millis": 4889040, - "target_throttle_time_in_millis": 2516390, - "total_time_in_millis": 8605026 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568895199709, - "stop_time_in_millis": 1568903805466, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 8605757, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72713687, - "total_time_in_millis": 714 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50188517896, - "reused_in_bytes": 0, - "total_in_bytes": 50188517896 - }, - "source_throttle_time_in_millis": 2034340, - "target_throttle_time_in_millis": 6090540, - "total_time_in_millis": 7851223 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827521533, - "stop_time_in_millis": 1569835373639, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 7852106, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72766109, - "total_time_in_millis": 814 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50182981926, - "reused_in_bytes": 0, - "total_in_bytes": 50182981926 - }, - "source_throttle_time_in_millis": 703049, - "target_throttle_time_in_millis": 3353335, - "total_time_in_millis": 4910987 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093236, - "stop_time_in_millis": 1569835005540, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 4912304, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72744769, - "total_time_in_millis": 787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52925981464, - "reused_in_bytes": 0, - "total_in_bytes": 52925981464 - }, - "source_throttle_time_in_millis": 64317, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2144580 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568818898863, - "stop_time_in_millis": 1568821046333, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2147470, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75993550, - "total_time_in_millis": 2875 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48583559788, - "reused_in_bytes": 0, - "total_in_bytes": 48583559788 - }, - "source_throttle_time_in_millis": 41334, - "target_throttle_time_in_millis": 45340, - "total_time_in_millis": 1380159 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569914772182, - "stop_time_in_millis": 1569916152976, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1380794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70583416, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50667024453, - "reused_in_bytes": 0, - "total_in_bytes": 50667024453 - }, - "source_throttle_time_in_millis": 230318, - "target_throttle_time_in_millis": 27728, - "total_time_in_millis": 1593703 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959796641, - "stop_time_in_millis": 1569961391030, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1594389, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72505761, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50554856835, - "reused_in_bytes": 0, - "total_in_bytes": 50554856835 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 72, - "total_time_in_millis": 1301585 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569926519472, - "stop_time_in_millis": 1569927821677, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1302204, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72286111, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50113101458, - "reused_in_bytes": 0, - "total_in_bytes": 50113101458 - }, - "source_throttle_time_in_millis": 2778353, - "target_throttle_time_in_millis": 3262777, - "total_time_in_millis": 6327970 - }, - "index_name": "om-iu-bro-2019.09.16-000937", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811425506, - "stop_time_in_millis": 1569817754288, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 6328782, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72607739, - "total_time_in_millis": 764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50281187151, - "reused_in_bytes": 0, - "total_in_bytes": 50281187151 - }, - "source_throttle_time_in_millis": 4145, - "target_throttle_time_in_millis": 25393, - "total_time_in_millis": 1462998 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569902288944, - "stop_time_in_millis": 1569903752529, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1463585, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72783271, - "total_time_in_millis": 572 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50183153731, - "reused_in_bytes": 0, - "total_in_bytes": 50183153731 - }, - "source_throttle_time_in_millis": 3603956, - "target_throttle_time_in_millis": 2811253, - "total_time_in_millis": 7435731 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772441408, - "stop_time_in_millis": 1569779877969, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 7436560, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72893259, - "total_time_in_millis": 803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50875131485, - "reused_in_bytes": 0, - "total_in_bytes": 50875131485 - }, - "source_throttle_time_in_millis": 9279, - "target_throttle_time_in_millis": 70734, - "total_time_in_millis": 1678308 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569898466385, - "stop_time_in_millis": 1569900145410, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1679025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72453990, - "total_time_in_millis": 709 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50284738773, - "reused_in_bytes": 0, - "total_in_bytes": 50284738773 - }, - "source_throttle_time_in_millis": 5255279, - "target_throttle_time_in_millis": 5821215, - "total_time_in_millis": 10808383 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808409956, - "stop_time_in_millis": 1569819219174, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 10809217, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72801418, - "total_time_in_millis": 823 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50252681604, - "reused_in_bytes": 0, - "total_in_bytes": 50252681604 - }, - "source_throttle_time_in_millis": 148558, - "target_throttle_time_in_millis": 17210, - "total_time_in_millis": 1494883 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886864691, - "stop_time_in_millis": 1569888360276, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1495584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72901881, - "total_time_in_millis": 692 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50089150962, - "reused_in_bytes": 0, - "total_in_bytes": 50089150962 - }, - "source_throttle_time_in_millis": 4987269, - "target_throttle_time_in_millis": 1284489, - "total_time_in_millis": 7824999 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807610914, - "stop_time_in_millis": 1569815437279, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 7826365, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72896167, - "total_time_in_millis": 840 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50241845092, - "reused_in_bytes": 0, - "total_in_bytes": 50241845092 - }, - "source_throttle_time_in_millis": 5530578, - "target_throttle_time_in_millis": 5101891, - "total_time_in_millis": 10576413 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772135675, - "stop_time_in_millis": 1569782714960, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 10579285, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72738998, - "total_time_in_millis": 831 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50284738773, - "reused_in_bytes": 0, - "total_in_bytes": 50284738773 - }, - "source_throttle_time_in_millis": 3643864, - "target_throttle_time_in_millis": 5658220, - "total_time_in_millis": 8762819 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789747479, - "stop_time_in_millis": 1569798511220, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 8763741, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72801418, - "total_time_in_millis": 888 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50241845092, - "reused_in_bytes": 0, - "total_in_bytes": 50241845092 - }, - "source_throttle_time_in_millis": 49697, - "target_throttle_time_in_millis": 59801, - "total_time_in_millis": 1250789 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569905876482, - "stop_time_in_millis": 1569907127901, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1251419, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72738998, - "total_time_in_millis": 622 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51829703344, - "reused_in_bytes": 0, - "total_in_bytes": 51829703344 - }, - "source_throttle_time_in_millis": 46950, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 4366425 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303971, - "stop_time_in_millis": 1569164673988, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 4370017, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74777773, - "total_time_in_millis": 3563 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52815415507, - "reused_in_bytes": 0, - "total_in_bytes": 52815415507 - }, - "source_throttle_time_in_millis": 69755, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2235629 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303960, - "stop_time_in_millis": 1569162543635, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2239674, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74700090, - "total_time_in_millis": 1999 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50174460550, - "reused_in_bytes": 0, - "total_in_bytes": 50174460550 - }, - "source_throttle_time_in_millis": 182604, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 1525463 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569330245762, - "stop_time_in_millis": 1569331771852, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1526090, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72738347, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52471616391, - "reused_in_bytes": 0, - "total_in_bytes": 52471616391 - }, - "source_throttle_time_in_millis": 63932, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2115685 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303961, - "stop_time_in_millis": 1569162423057, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2119096, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75111722, - "total_time_in_millis": 2886 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52435619940, - "reused_in_bytes": 0, - "total_in_bytes": 52435619940 - }, - "source_throttle_time_in_millis": 290398, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3057849 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303994, - "stop_time_in_millis": 1569163364389, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 3060394, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75195275, - "total_time_in_millis": 2517 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50893253131, - "reused_in_bytes": 0, - "total_in_bytes": 50893253131 - }, - "source_throttle_time_in_millis": 14429, - "target_throttle_time_in_millis": 158790, - "total_time_in_millis": 1393674 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569857009660, - "stop_time_in_millis": 1569858403996, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1394336, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72525528, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50979696315, - "reused_in_bytes": 0, - "total_in_bytes": 50979696315 - }, - "source_throttle_time_in_millis": 4204781, - "target_throttle_time_in_millis": 5605536, - "total_time_in_millis": 9256152 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812040387, - "stop_time_in_millis": 1569821297352, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 9256964, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72753115, - "total_time_in_millis": 801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50400011066, - "reused_in_bytes": 0, - "total_in_bytes": 50400011066 - }, - "source_throttle_time_in_millis": 4938846, - "target_throttle_time_in_millis": 3193415, - "total_time_in_millis": 8770422 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801983811, - "stop_time_in_millis": 1569810755021, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 8771209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72766806, - "total_time_in_millis": 776 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52539546480, - "reused_in_bytes": 0, - "total_in_bytes": 52539546480 - }, - "source_throttle_time_in_millis": 66396, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2158973 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303960, - "stop_time_in_millis": 1569162466051, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2162091, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75121870, - "total_time_in_millis": 2599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52980669723, - "reused_in_bytes": 0, - "total_in_bytes": 52980669723 - }, - "source_throttle_time_in_millis": 74422, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2129774 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303960, - "stop_time_in_millis": 1569162435984, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2132023, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75035961, - "total_time_in_millis": 1724 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53076160515, - "reused_in_bytes": 0, - "total_in_bytes": 53076160515 - }, - "source_throttle_time_in_millis": 65087, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2237914 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303995, - "stop_time_in_millis": 1569162544323, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2240327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75173251, - "total_time_in_millis": 2259 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50252681604, - "reused_in_bytes": 0, - "total_in_bytes": 50252681604 - }, - "source_throttle_time_in_millis": 3404643, - "target_throttle_time_in_millis": 1448426, - "total_time_in_millis": 6189896 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093257, - "stop_time_in_millis": 1569836283930, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6190672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72901881, - "total_time_in_millis": 763 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50439748054, - "reused_in_bytes": 0, - "total_in_bytes": 50439748054 - }, - "source_throttle_time_in_millis": 5943348, - "target_throttle_time_in_millis": 3103650, - "total_time_in_millis": 9403547 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800321200, - "stop_time_in_millis": 1569809725566, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 9404366, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72875892, - "total_time_in_millis": 797 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52451675797, - "reused_in_bytes": 0, - "total_in_bytes": 52451675797 - }, - "source_throttle_time_in_millis": 60428, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2049326 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303960, - "stop_time_in_millis": 1569162356543, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2052583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75416963, - "total_time_in_millis": 2737 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52200125903, - "reused_in_bytes": 0, - "total_in_bytes": 52200125903 - }, - "source_throttle_time_in_millis": 237739, - "target_throttle_time_in_millis": 206, - "total_time_in_millis": 3707054 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303966, - "stop_time_in_millis": 1569164014253, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 3710287, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74923305, - "total_time_in_millis": 3216 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50439748054, - "reused_in_bytes": 0, - "total_in_bytes": 50439748054 - }, - "source_throttle_time_in_millis": 81616, - "target_throttle_time_in_millis": 66656, - "total_time_in_millis": 1323998 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937915376, - "stop_time_in_millis": 1569939240011, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1324634, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72875892, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50936974701, - "reused_in_bytes": 0, - "total_in_bytes": 50936974701 - }, - "source_throttle_time_in_millis": 63506, - "target_throttle_time_in_millis": 2218820, - "total_time_in_millis": 3080160 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788539832, - "stop_time_in_millis": 1569791620772, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 3080939, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72699871, - "total_time_in_millis": 759 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47889580577, - "reused_in_bytes": 0, - "total_in_bytes": 47889580577 - }, - "source_throttle_time_in_millis": 4976305, - "target_throttle_time_in_millis": 4801397, - "total_time_in_millis": 9332498 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826042262, - "stop_time_in_millis": 1569835376074, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 9333812, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69837104, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50328582626, - "reused_in_bytes": 0, - "total_in_bytes": 50328582626 - }, - "source_throttle_time_in_millis": 172480, - "target_throttle_time_in_millis": 24273, - "total_time_in_millis": 1430195 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943109397, - "stop_time_in_millis": 1569944540212, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1430814, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72780184, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50893253131, - "reused_in_bytes": 0, - "total_in_bytes": 50893253131 - }, - "source_throttle_time_in_millis": 5191010, - "target_throttle_time_in_millis": 4215793, - "total_time_in_millis": 9755154 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569799862716, - "stop_time_in_millis": 1569809619364, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 9756648, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72525528, - "total_time_in_millis": 1470 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49705637966, - "reused_in_bytes": 0, - "total_in_bytes": 49705637966 - }, - "source_throttle_time_in_millis": 33741, - "target_throttle_time_in_millis": 58183, - "total_time_in_millis": 1486253 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569922663747, - "stop_time_in_millis": 1569924150658, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1486911, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72449120, - "total_time_in_millis": 649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47889580577, - "reused_in_bytes": 0, - "total_in_bytes": 47889580577 - }, - "source_throttle_time_in_millis": 4622295, - "target_throttle_time_in_millis": 2566445, - "total_time_in_millis": 7754931 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817271413, - "stop_time_in_millis": 1569825027378, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7755965, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69837104, - "total_time_in_millis": 1019 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53382047398, - "reused_in_bytes": 0, - "total_in_bytes": 53382047398 - }, - "source_throttle_time_in_millis": 63643, - "target_throttle_time_in_millis": 260, - "total_time_in_millis": 2138869 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569160303961, - "stop_time_in_millis": 1569162446353, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2142391, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75352470, - "total_time_in_millis": 3004 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50174460550, - "reused_in_bytes": 0, - "total_in_bytes": 50174460550 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 102253, - "total_time_in_millis": 1358506 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875080648, - "stop_time_in_millis": 1569876439803, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1359155, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72738347, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50036995004, - "reused_in_bytes": 0, - "total_in_bytes": 50036995004 - }, - "source_throttle_time_in_millis": 4333708, - "target_throttle_time_in_millis": 4183641, - "total_time_in_millis": 8467815 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772290309, - "stop_time_in_millis": 1569780758949, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 8468640, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72551962, - "total_time_in_millis": 805 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50089150962, - "reused_in_bytes": 0, - "total_in_bytes": 50089150962 - }, - "source_throttle_time_in_millis": 1907060, - "target_throttle_time_in_millis": 4335313, - "total_time_in_millis": 7144580 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819212505, - "stop_time_in_millis": 1569826358625, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 7146120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72896167, - "total_time_in_millis": 1529 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50990515952, - "reused_in_bytes": 0, - "total_in_bytes": 50990515952 - }, - "source_throttle_time_in_millis": 425237, - "target_throttle_time_in_millis": 66209, - "total_time_in_millis": 1901143 - }, - "index_name": "om-iu-bro-2019.09.20-000956", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569925962325, - "stop_time_in_millis": 1569927864098, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1901772, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72755096, - "total_time_in_millis": 620 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52716270803, - "reused_in_bytes": 0, - "total_in_bytes": 52716270803 - }, - "source_throttle_time_in_millis": 397706, - "target_throttle_time_in_millis": 4724340, - "total_time_in_millis": 5160681 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706913, - "stop_time_in_millis": 1569843868223, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 5161309, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74610261, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55638428643, - "reused_in_bytes": 0, - "total_in_bytes": 55638428643 - }, - "source_throttle_time_in_millis": 40597, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2755821 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568836902995, - "stop_time_in_millis": 1568839661780, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2758784, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78043454, - "total_time_in_millis": 2444 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52478427517, - "reused_in_bytes": 0, - "total_in_bytes": 52478427517 - }, - "source_throttle_time_in_millis": 5621475, - "target_throttle_time_in_millis": 4991481, - "total_time_in_millis": 10316894 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813693267, - "stop_time_in_millis": 1569824010966, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 10317698, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74493533, - "total_time_in_millis": 785 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52554388641, - "reused_in_bytes": 0, - "total_in_bytes": 52554388641 - }, - "source_throttle_time_in_millis": 3391312, - "target_throttle_time_in_millis": 4030480, - "total_time_in_millis": 7777048 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828680387, - "stop_time_in_millis": 1569836458156, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7777769, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74649652, - "total_time_in_millis": 709 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52462935448, - "reused_in_bytes": 0, - "total_in_bytes": 52462935448 - }, - "source_throttle_time_in_millis": 25268, - "target_throttle_time_in_millis": 48932, - "total_time_in_millis": 1313695 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569930999467, - "stop_time_in_millis": 1569932313742, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1314275, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74599633, - "total_time_in_millis": 572 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53047396098, - "reused_in_bytes": 0, - "total_in_bytes": 53047396098 - }, - "source_throttle_time_in_millis": 2061926, - "target_throttle_time_in_millis": 4254273, - "total_time_in_millis": 6449519 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569833697976, - "stop_time_in_millis": 1569840149791, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 6451814, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74128624, - "total_time_in_millis": 2243 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49964227207, - "reused_in_bytes": 0, - "total_in_bytes": 49964227207 - }, - "source_throttle_time_in_millis": 505099, - "target_throttle_time_in_millis": 1427648, - "total_time_in_millis": 3208004 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732188, - "stop_time_in_millis": 1569838940843, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 3208654, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71157973, - "total_time_in_millis": 641 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51896347974, - "reused_in_bytes": 0, - "total_in_bytes": 51896347974 - }, - "source_throttle_time_in_millis": 217735, - "target_throttle_time_in_millis": 98160, - "total_time_in_millis": 1786179 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970003624, - "stop_time_in_millis": 1569971790473, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1786849, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74180913, - "total_time_in_millis": 656 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52973458781, - "reused_in_bytes": 0, - "total_in_bytes": 52973458781 - }, - "source_throttle_time_in_millis": 2134322, - "target_throttle_time_in_millis": 216946, - "total_time_in_millis": 3885715 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867307, - "stop_time_in_millis": 1569839753693, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 3886385, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74158019, - "total_time_in_millis": 656 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52485314298, - "reused_in_bytes": 0, - "total_in_bytes": 52485314298 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 286, - "total_time_in_millis": 1451798 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569871003138, - "stop_time_in_millis": 1569872455643, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1452505, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74461481, - "total_time_in_millis": 696 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55829102058, - "reused_in_bytes": 0, - "total_in_bytes": 55829102058 - }, - "source_throttle_time_in_millis": 71564, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2475549 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568836902995, - "stop_time_in_millis": 1568839381760, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2478764, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78317687, - "total_time_in_millis": 2694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52400937925, - "reused_in_bytes": 0, - "total_in_bytes": 52400937925 - }, - "source_throttle_time_in_millis": 420851, - "target_throttle_time_in_millis": 35058, - "total_time_in_millis": 1887830 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920893852, - "stop_time_in_millis": 1569922782327, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1888474, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74328955, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52478427517, - "reused_in_bytes": 0, - "total_in_bytes": 52478427517 - }, - "source_throttle_time_in_millis": 5739920, - "target_throttle_time_in_millis": 2979350, - "total_time_in_millis": 9445141 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795347824, - "stop_time_in_millis": 1569804794260, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9446435, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74493533, - "total_time_in_millis": 753 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53076412866, - "reused_in_bytes": 0, - "total_in_bytes": 53076412866 - }, - "source_throttle_time_in_millis": 4800611, - "target_throttle_time_in_millis": 6450819, - "total_time_in_millis": 10170552 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817481459, - "stop_time_in_millis": 1569827652797, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 10171337, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74363901, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52462935448, - "reused_in_bytes": 0, - "total_in_bytes": 52462935448 - }, - "source_throttle_time_in_millis": 472227, - "target_throttle_time_in_millis": 7068840, - "total_time_in_millis": 7655086 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781752045, - "stop_time_in_millis": 1569789408166, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7656121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74599633, - "total_time_in_millis": 996 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53172473835, - "reused_in_bytes": 0, - "total_in_bytes": 53172473835 - }, - "source_throttle_time_in_millis": 48247, - "target_throttle_time_in_millis": 39523, - "total_time_in_millis": 1391987 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977154069, - "stop_time_in_millis": 1569978547545, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1393475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74575078, - "total_time_in_millis": 1478 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52554388641, - "reused_in_bytes": 0, - "total_in_bytes": 52554388641 - }, - "source_throttle_time_in_millis": 35542, - "target_throttle_time_in_millis": 97404, - "total_time_in_millis": 1722810 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569938484736, - "stop_time_in_millis": 1569940208185, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1723448, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74649652, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52526241798, - "reused_in_bytes": 0, - "total_in_bytes": 52526241798 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 296, - "total_time_in_millis": 1375831 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569925266281, - "stop_time_in_millis": 1569926642731, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1376450, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74657161, - "total_time_in_millis": 608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55629973377, - "reused_in_bytes": 0, - "total_in_bytes": 55629973377 - }, - "source_throttle_time_in_millis": 66757, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2322986 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568836902995, - "stop_time_in_millis": 1568839229137, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2326141, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78357155, - "total_time_in_millis": 2623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52526241798, - "reused_in_bytes": 0, - "total_in_bytes": 52526241798 - }, - "source_throttle_time_in_millis": 1881785, - "target_throttle_time_in_millis": 3182080, - "total_time_in_millis": 5766660 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320053, - "stop_time_in_millis": 1569838087464, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5767411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74657161, - "total_time_in_millis": 725 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52582068623, - "reused_in_bytes": 0, - "total_in_bytes": 52582068623 - }, - "source_throttle_time_in_millis": 6375146, - "target_throttle_time_in_millis": 665438, - "total_time_in_millis": 8588145 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783693615, - "stop_time_in_millis": 1569792282468, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 8588853, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74646709, - "total_time_in_millis": 681 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52603911647, - "reused_in_bytes": 0, - "total_in_bytes": 52603911647 - }, - "source_throttle_time_in_millis": 5219047, - "target_throttle_time_in_millis": 3232094, - "total_time_in_millis": 9092660 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783757657, - "stop_time_in_millis": 1569792851550, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 9093893, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74674209, - "total_time_in_millis": 710 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5088 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568839229170, - "stop_time_in_millis": 1568839235253, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 6083, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 923 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52696495334, - "reused_in_bytes": 0, - "total_in_bytes": 52696495334 - }, - "source_throttle_time_in_millis": 50991, - "target_throttle_time_in_millis": 23, - "total_time_in_millis": 4590477 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568836903004, - "stop_time_in_millis": 1568841497235, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 4594231, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74242100, - "total_time_in_millis": 3221 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53076412866, - "reused_in_bytes": 0, - "total_in_bytes": 53076412866 - }, - "source_throttle_time_in_millis": 23696, - "target_throttle_time_in_millis": 5416144, - "total_time_in_millis": 5198385 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435641, - "stop_time_in_millis": 1569848634709, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5199068, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74363901, - "total_time_in_millis": 672 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56454450690, - "reused_in_bytes": 0, - "total_in_bytes": 56454450690 - }, - "source_throttle_time_in_millis": 75334, - "target_throttle_time_in_millis": 38, - "total_time_in_millis": 2571936 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568836902996, - "stop_time_in_millis": 1568839478064, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2575067, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78161754, - "total_time_in_millis": 2608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53047396098, - "reused_in_bytes": 0, - "total_in_bytes": 53047396098 - }, - "source_throttle_time_in_millis": 6263586, - "target_throttle_time_in_millis": 4747122, - "total_time_in_millis": 10796638 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822899595, - "stop_time_in_millis": 1569833696985, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 10797390, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74128624, - "total_time_in_millis": 736 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56277715619, - "reused_in_bytes": 0, - "total_in_bytes": 56277715619 - }, - "source_throttle_time_in_millis": 104102, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2602621 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568836902996, - "stop_time_in_millis": 1568839509888, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2606892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77869657, - "total_time_in_millis": 2719 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53172473835, - "reused_in_bytes": 0, - "total_in_bytes": 53172473835 - }, - "source_throttle_time_in_millis": 4977360, - "target_throttle_time_in_millis": 4499039, - "total_time_in_millis": 9800843 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808833708, - "stop_time_in_millis": 1569818636342, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 9802633, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74575078, - "total_time_in_millis": 1126 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52716270803, - "reused_in_bytes": 0, - "total_in_bytes": 52716270803 - }, - "source_throttle_time_in_millis": 6631278, - "target_throttle_time_in_millis": 5767542, - "total_time_in_millis": 11623445 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782633556, - "stop_time_in_millis": 1569794258476, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 11624919, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74610261, - "total_time_in_millis": 955 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53135615809, - "reused_in_bytes": 0, - "total_in_bytes": 53135615809 - }, - "source_throttle_time_in_millis": 194181, - "target_throttle_time_in_millis": 990615, - "total_time_in_millis": 2454781 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569019179237, - "stop_time_in_millis": 1569021634698, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2455461, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74381596, - "total_time_in_millis": 644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53135615809, - "reused_in_bytes": 0, - "total_in_bytes": 53135615809 - }, - "source_throttle_time_in_millis": 2673030, - "target_throttle_time_in_millis": 2961733, - "total_time_in_millis": 6934416 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569817955436, - "stop_time_in_millis": 1569824890538, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6935102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74381596, - "total_time_in_millis": 667 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52603911647, - "reused_in_bytes": 0, - "total_in_bytes": 52603911647 - }, - "source_throttle_time_in_millis": 56671, - "target_throttle_time_in_millis": 8353529, - "total_time_in_millis": 7758372 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756749544, - "stop_time_in_millis": 1569764508655, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 7759110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74674209, - "total_time_in_millis": 712 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568839469896, - "stop_time_in_millis": 1568839470833, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 936, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 886 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53162439723, - "reused_in_bytes": 0, - "total_in_bytes": 53162439723 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 4408948, - "total_time_in_millis": 4837445 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568948018009, - "stop_time_in_millis": 1568952856323, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 4838313, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74471584, - "total_time_in_millis": 763 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51896347974, - "reused_in_bytes": 0, - "total_in_bytes": 51896347974 - }, - "source_throttle_time_in_millis": 87754, - "target_throttle_time_in_millis": 45928, - "total_time_in_millis": 1402612 - }, - "index_name": "om-iu-bro-2019.09.16-000938", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568960715625, - "stop_time_in_millis": 1568962118864, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1403239, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74180913, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 70 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322784806, - "stop_time_in_millis": 1566322785527, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 720, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 93, - "reused": 0, - "total": 93 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 238575198, - "reused_in_bytes": 0, - "total_in_bytes": 238575198 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 902, - "total_time_in_millis": 37099 - }, - "index_name": "eb-bro-sensor-stats", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568334078654, - "stop_time_in_millis": 1568334117020, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 38365, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1111 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397056297, - "stop_time_in_millis": 1566397057061, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 763, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 692 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 87, - "reused": 0, - "total": 87 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 238302740, - "reused_in_bytes": 0, - "total_in_bytes": 238302740 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 542, - "total_time_in_millis": 20679 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567072291360, - "stop_time_in_millis": 1567072312167, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 20807, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 110 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313902002, - "stop_time_in_millis": 1566313902933, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 930, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481082635, - "stop_time_in_millis": 1566481083150, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 455 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903057, - "stop_time_in_millis": 1566313903889, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 832, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 39 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491918912, - "stop_time_in_millis": 1566491919620, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 708, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 444 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411484711, - "stop_time_in_millis": 1566411485650, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 939, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 494 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 112 - }, - "index_name": "eb-bro-sensor-stats", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781913, - "stop_time_in_millis": 1568304782698, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 785, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 620 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 11 - }, - "index_name": ".reporting-2019.05.12", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397036212, - "stop_time_in_millis": 1566397036449, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 183 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15 - }, - "index_name": ".reporting-2019.05.12", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886600, - "stop_time_in_millis": 1568995886988, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 271 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 36, - "reused": 0, - "total": 36 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 5324319, - "reused_in_bytes": 0, - "total_in_bytes": 5324319 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 482 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995440785, - "stop_time_in_millis": 1568995441339, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 553, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 56 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 5289205, - "reused_in_bytes": 0, - "total_in_bytes": 5289205 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4514 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568077209084, - "stop_time_in_millis": 1568077214263, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 5179, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 108 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481082644, - "stop_time_in_millis": 1566481082763, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 118, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 90 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481085224, - "stop_time_in_millis": 1566481085651, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 426, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 375 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 16 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322784471, - "stop_time_in_millis": 1566322784671, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 200, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 17 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903103, - "stop_time_in_millis": 1566313903690, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 586, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 450 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491937480, - "stop_time_in_millis": 1566491937583, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 72 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 37 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465126, - "stop_time_in_millis": 1566411465535, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 408, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 331 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304787573, - "stop_time_in_millis": 1568304787743, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 170, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 104 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 384 - }, - "index_name": "om-iu-agg-bro-sensor-epm", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928439, - "stop_time_in_millis": 1568306929010, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 571, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 89 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50584607941, - "reused_in_bytes": 0, - "total_in_bytes": 50584607941 - }, - "source_throttle_time_in_millis": 22189, - "target_throttle_time_in_millis": 59829, - "total_time_in_millis": 1391098 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569894582994, - "stop_time_in_millis": 1569895974747, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1391753, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73294741, - "total_time_in_millis": 640 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50771930695, - "reused_in_bytes": 0, - "total_in_bytes": 50771930695 - }, - "source_throttle_time_in_millis": 3821234, - "target_throttle_time_in_millis": 2557378, - "total_time_in_millis": 7268015 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778146229, - "stop_time_in_millis": 1569785415090, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 7268861, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73345194, - "total_time_in_millis": 829 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49835088406, - "reused_in_bytes": 0, - "total_in_bytes": 49835088406 - }, - "source_throttle_time_in_millis": 122677, - "target_throttle_time_in_millis": 33562, - "total_time_in_millis": 1637201 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569890792259, - "stop_time_in_millis": 1569892430090, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1637831, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73439438, - "total_time_in_millis": 621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50076277948, - "reused_in_bytes": 0, - "total_in_bytes": 50076277948 - }, - "source_throttle_time_in_millis": 417098, - "target_throttle_time_in_millis": 5714724, - "total_time_in_millis": 6646454 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483059, - "stop_time_in_millis": 1569832130252, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 6647192, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73464512, - "total_time_in_millis": 726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51921270189, - "reused_in_bytes": 0, - "total_in_bytes": 51921270189 - }, - "source_throttle_time_in_millis": 60188, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2033025 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743944, - "stop_time_in_millis": 1569269779934, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2035989, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75528478, - "total_time_in_millis": 2425 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50470922660, - "reused_in_bytes": 0, - "total_in_bytes": 50470922660 - }, - "source_throttle_time_in_millis": 51080, - "target_throttle_time_in_millis": 804, - "total_time_in_millis": 1241976 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569891030823, - "stop_time_in_millis": 1569892273392, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1242569, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73019286, - "total_time_in_millis": 582 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49360714993, - "reused_in_bytes": 0, - "total_in_bytes": 49360714993 - }, - "source_throttle_time_in_millis": 1884692, - "target_throttle_time_in_millis": 5462049, - "total_time_in_millis": 7042406 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483126, - "stop_time_in_millis": 1569832526451, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 7043325, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72929590, - "total_time_in_millis": 905 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4925 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569269763668, - "stop_time_in_millis": 1569269769450, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 5781, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50630023000, - "reused_in_bytes": 0, - "total_in_bytes": 50630023000 - }, - "source_throttle_time_in_millis": 362561, - "target_throttle_time_in_millis": 4759702, - "total_time_in_millis": 5287173 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788232242, - "stop_time_in_millis": 1569793520210, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5287967, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73219418, - "total_time_in_millis": 776 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51792723169, - "reused_in_bytes": 0, - "total_in_bytes": 51792723169 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 140, - "total_time_in_millis": 1492904 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569269907934, - "stop_time_in_millis": 1569271403648, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1495713, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75404769, - "total_time_in_millis": 2796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51652625468, - "reused_in_bytes": 0, - "total_in_bytes": 51652625468 - }, - "source_throttle_time_in_millis": 63469, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1974096 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743945, - "stop_time_in_millis": 1569269721085, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1977139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75155976, - "total_time_in_millis": 2513 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51753011843, - "reused_in_bytes": 0, - "total_in_bytes": 51753011843 - }, - "source_throttle_time_in_millis": 28054, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2176653 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743948, - "stop_time_in_millis": 1569269923803, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2179855, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75548138, - "total_time_in_millis": 2671 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50584607941, - "reused_in_bytes": 0, - "total_in_bytes": 50584607941 - }, - "source_throttle_time_in_millis": 150709, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1311264 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937280249, - "stop_time_in_millis": 1569938592108, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1311859, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73294741, - "total_time_in_millis": 587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49894410487, - "reused_in_bytes": 0, - "total_in_bytes": 49894410487 - }, - "source_throttle_time_in_millis": 137948, - "target_throttle_time_in_millis": 4499789, - "total_time_in_millis": 4892162 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569795039763, - "stop_time_in_millis": 1569799932872, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 4893108, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73342656, - "total_time_in_millis": 930 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51469702251, - "reused_in_bytes": 0, - "total_in_bytes": 51469702251 - }, - "source_throttle_time_in_millis": 64395, - "target_throttle_time_in_millis": 101, - "total_time_in_millis": 1989385 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743944, - "stop_time_in_millis": 1569269736525, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1992580, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74879091, - "total_time_in_millis": 2458 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51699779341, - "reused_in_bytes": 0, - "total_in_bytes": 51699779341 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 98, - "total_time_in_millis": 1199902 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569269811524, - "stop_time_in_millis": 1569271013855, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1202330, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75280813, - "total_time_in_millis": 2420 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49835088406, - "reused_in_bytes": 0, - "total_in_bytes": 49835088406 - }, - "source_throttle_time_in_millis": 110424, - "target_throttle_time_in_millis": 60224, - "total_time_in_millis": 1584383 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937424839, - "stop_time_in_millis": 1569939009893, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1585054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73439438, - "total_time_in_millis": 663 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50017424785, - "reused_in_bytes": 0, - "total_in_bytes": 50017424785 - }, - "source_throttle_time_in_millis": 5554814, - "target_throttle_time_in_millis": 5378269, - "total_time_in_millis": 10327905 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808899268, - "stop_time_in_millis": 1569819228033, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 10328764, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73443747, - "total_time_in_millis": 825 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49877183174, - "reused_in_bytes": 0, - "total_in_bytes": 49877183174 - }, - "source_throttle_time_in_millis": 642711, - "target_throttle_time_in_millis": 6586865, - "total_time_in_millis": 6833526 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784373630, - "stop_time_in_millis": 1569791208018, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 6834388, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73458855, - "total_time_in_millis": 802 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51664226696, - "reused_in_bytes": 0, - "total_in_bytes": 51664226696 - }, - "source_throttle_time_in_millis": 63338, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 1995970 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743944, - "stop_time_in_millis": 1569269742930, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1998985, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75252826, - "total_time_in_millis": 2495 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50103144620, - "reused_in_bytes": 0, - "total_in_bytes": 50103144620 - }, - "source_throttle_time_in_millis": 4771846, - "target_throttle_time_in_millis": 584064, - "total_time_in_millis": 6820958 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569785220037, - "stop_time_in_millis": 1569792042977, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6822940, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73419213, - "total_time_in_millis": 1447 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50067172059, - "reused_in_bytes": 0, - "total_in_bytes": 50067172059 - }, - "source_throttle_time_in_millis": 553224, - "target_throttle_time_in_millis": 604667, - "total_time_in_millis": 2433618 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732139, - "stop_time_in_millis": 1569838166404, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2434264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73317678, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49360714993, - "reused_in_bytes": 0, - "total_in_bytes": 49360714993 - }, - "source_throttle_time_in_millis": 2104289, - "target_throttle_time_in_millis": 3526, - "total_time_in_millis": 3634722 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569330245770, - "stop_time_in_millis": 1569333881591, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 3635820, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72929590, - "total_time_in_millis": 576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52486787990, - "reused_in_bytes": 0, - "total_in_bytes": 52486787990 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 1526957 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569269842895, - "stop_time_in_millis": 1569271372913, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1530017, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75103119, - "total_time_in_millis": 3026 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49991868957, - "reused_in_bytes": 0, - "total_in_bytes": 49991868957 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 10522, - "total_time_in_millis": 1127290 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569910023756, - "stop_time_in_millis": 1569911151637, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1127881, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73357444, - "total_time_in_millis": 580 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49745218335, - "reused_in_bytes": 0, - "total_in_bytes": 49745218335 - }, - "source_throttle_time_in_millis": 46295, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3396384 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743944, - "stop_time_in_millis": 1569271143158, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 3399214, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73183438, - "total_time_in_millis": 2295 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51699779344, - "reused_in_bytes": 0, - "total_in_bytes": 51699779344 - }, - "source_throttle_time_in_millis": 89026, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2059526 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743945, - "stop_time_in_millis": 1569269806421, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2062475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75280813, - "total_time_in_millis": 2420 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49749441765, - "reused_in_bytes": 0, - "total_in_bytes": 49749441765 - }, - "source_throttle_time_in_millis": 2162593, - "target_throttle_time_in_millis": 2857815, - "total_time_in_millis": 5471762 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467903, - "stop_time_in_millis": 1569827940441, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 5472537, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73025870, - "total_time_in_millis": 763 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49566933508, - "reused_in_bytes": 0, - "total_in_bytes": 49566933508 - }, - "source_throttle_time_in_millis": 5988095, - "target_throttle_time_in_millis": 4471989, - "total_time_in_millis": 10291021 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782925239, - "stop_time_in_millis": 1569793217155, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 10291915, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71386204, - "total_time_in_millis": 880 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50771930695, - "reused_in_bytes": 0, - "total_in_bytes": 50771930695 - }, - "source_throttle_time_in_millis": 4672186, - "target_throttle_time_in_millis": 5279955, - "total_time_in_millis": 9311669 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820545360, - "stop_time_in_millis": 1569829861279, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 9315919, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73345194, - "total_time_in_millis": 3726 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50639211051, - "reused_in_bytes": 0, - "total_in_bytes": 50639211051 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 444, - "total_time_in_millis": 1236247 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569871007967, - "stop_time_in_millis": 1569872244873, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1236906, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73132924, - "total_time_in_millis": 643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52499993424, - "reused_in_bytes": 0, - "total_in_bytes": 52499993424 - }, - "source_throttle_time_in_millis": 64421, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2078248 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743944, - "stop_time_in_millis": 1569269825322, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2081378, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75217211, - "total_time_in_millis": 2604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48157836220, - "reused_in_bytes": 0, - "total_in_bytes": 48157836220 - }, - "source_throttle_time_in_millis": 60000, - "target_throttle_time_in_millis": 732205, - "total_time_in_millis": 1706567 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931938554, - "stop_time_in_millis": 1569933645713, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1707158, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71426758, - "total_time_in_millis": 580 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50470922660, - "reused_in_bytes": 0, - "total_in_bytes": 50470922660 - }, - "source_throttle_time_in_millis": 559146, - "target_throttle_time_in_millis": 3434542, - "total_time_in_millis": 5019778 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781744982, - "stop_time_in_millis": 1569786765563, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 5020581, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73019286, - "total_time_in_millis": 788 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50067172059, - "reused_in_bytes": 0, - "total_in_bytes": 50067172059 - }, - "source_throttle_time_in_millis": 5236611, - "target_throttle_time_in_millis": 3690938, - "total_time_in_millis": 9369822 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819785157, - "stop_time_in_millis": 1569829156392, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 9371234, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73317678, - "total_time_in_millis": 864 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51328119331, - "reused_in_bytes": 0, - "total_in_bytes": 51328119331 - }, - "source_throttle_time_in_millis": 84893, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2160999 - }, - "index_name": "om-iu-bro-2019.09.21-000961", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569267743945, - "stop_time_in_millis": 1569269907928, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2163982, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73298861, - "total_time_in_millis": 2459 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49716065569, - "reused_in_bytes": 0, - "total_in_bytes": 49716065569 - }, - "source_throttle_time_in_millis": 1987327, - "target_throttle_time_in_millis": 5512499, - "total_time_in_millis": 7517931 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569802542254, - "stop_time_in_millis": 1569810061041, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 7518787, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73108968, - "total_time_in_millis": 838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50547643234, - "reused_in_bytes": 0, - "total_in_bytes": 50547643234 - }, - "source_throttle_time_in_millis": 57618, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2031845 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332651, - "stop_time_in_millis": 1569253366771, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2034120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74866591, - "total_time_in_millis": 2252 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49775880100, - "reused_in_bytes": 0, - "total_in_bytes": 49775880100 - }, - "source_throttle_time_in_millis": 5205729, - "target_throttle_time_in_millis": 2227677, - "total_time_in_millis": 8015903 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831554859, - "stop_time_in_millis": 1569839572002, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8017143, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73094176, - "total_time_in_millis": 1221 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49119017164, - "reused_in_bytes": 0, - "total_in_bytes": 49119017164 - }, - "source_throttle_time_in_millis": 216139, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1776084 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569951594629, - "stop_time_in_millis": 1569953371864, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1777235, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73161237, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50692118943, - "reused_in_bytes": 0, - "total_in_bytes": 50692118943 - }, - "source_throttle_time_in_millis": 34056, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2293324 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332651, - "stop_time_in_millis": 1569253628869, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2296218, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75018073, - "total_time_in_millis": 2362 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50129280212, - "reused_in_bytes": 0, - "total_in_bytes": 50129280212 - }, - "source_throttle_time_in_millis": 88134, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2038986 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332650, - "stop_time_in_millis": 1569253377406, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2044755, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74853574, - "total_time_in_millis": 2162 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49680295231, - "reused_in_bytes": 0, - "total_in_bytes": 49680295231 - }, - "source_throttle_time_in_millis": 5044801, - "target_throttle_time_in_millis": 5055797, - "total_time_in_millis": 9489504 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796114366, - "stop_time_in_millis": 1569805605197, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9490830, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72926397, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50037427306, - "reused_in_bytes": 0, - "total_in_bytes": 50037427306 - }, - "source_throttle_time_in_millis": 45672, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 4077680 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332652, - "stop_time_in_millis": 1569255412613, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 4079961, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74537336, - "total_time_in_millis": 2264 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49679393663, - "reused_in_bytes": 0, - "total_in_bytes": 49679393663 - }, - "source_throttle_time_in_millis": 301514, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2458193 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332651, - "stop_time_in_millis": 1569253793695, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2461043, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73981925, - "total_time_in_millis": 2323 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49030980474, - "reused_in_bytes": 0, - "total_in_bytes": 49030980474 - }, - "source_throttle_time_in_millis": 2358763, - "target_throttle_time_in_millis": 1447557, - "total_time_in_millis": 4902311 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818139963, - "stop_time_in_millis": 1569823043199, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 4903236, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73131907, - "total_time_in_millis": 896 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47884741674, - "reused_in_bytes": 0, - "total_in_bytes": 47884741674 - }, - "source_throttle_time_in_millis": 59969, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 1986421 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332651, - "stop_time_in_millis": 1569253320796, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1988145, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71202425, - "total_time_in_millis": 1713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49716065569, - "reused_in_bytes": 0, - "total_in_bytes": 49716065569 - }, - "source_throttle_time_in_millis": 100141, - "target_throttle_time_in_millis": 198677, - "total_time_in_millis": 1519619 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970193351, - "stop_time_in_millis": 1569971713581, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1520229, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73108968, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48591277288, - "reused_in_bytes": 0, - "total_in_bytes": 48591277288 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 238, - "total_time_in_millis": 1087517 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569866585378, - "stop_time_in_millis": 1569867673523, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1088144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72921404, - "total_time_in_millis": 616 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48688045298, - "reused_in_bytes": 0, - "total_in_bytes": 48688045298 - }, - "source_throttle_time_in_millis": 83394, - "target_throttle_time_in_millis": 920725, - "total_time_in_millis": 1919411 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569904951930, - "stop_time_in_millis": 1569906872004, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1920074, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73227134, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49345074793, - "reused_in_bytes": 0, - "total_in_bytes": 49345074793 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 192363, - "total_time_in_millis": 1392517 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569858074591, - "stop_time_in_millis": 1569859468639, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1394047, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72407934, - "total_time_in_millis": 687 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48294983807, - "reused_in_bytes": 0, - "total_in_bytes": 48294983807 - }, - "source_throttle_time_in_millis": 3593044, - "target_throttle_time_in_millis": 2787652, - "total_time_in_millis": 7624776 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800689527, - "stop_time_in_millis": 1569808315074, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 7625547, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72393717, - "total_time_in_millis": 761 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49345074793, - "reused_in_bytes": 0, - "total_in_bytes": 49345074793 - }, - "source_throttle_time_in_millis": 419133, - "target_throttle_time_in_millis": 18639, - "total_time_in_millis": 1816711 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920988306, - "stop_time_in_millis": 1569922805657, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1817350, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72407934, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49126595129, - "reused_in_bytes": 0, - "total_in_bytes": 49126595129 - }, - "source_throttle_time_in_millis": 5425702, - "target_throttle_time_in_millis": 3690405, - "total_time_in_millis": 9182963 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794649830, - "stop_time_in_millis": 1569803833551, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 9183721, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73077172, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48984758354, - "reused_in_bytes": 0, - "total_in_bytes": 48984758354 - }, - "source_throttle_time_in_millis": 4553525, - "target_throttle_time_in_millis": 4702831, - "total_time_in_millis": 9105401 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813447535, - "stop_time_in_millis": 1569822553728, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 9106193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73075829, - "total_time_in_millis": 780 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4896 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569253335412, - "stop_time_in_millis": 1569253341132, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5719, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49296227976, - "reused_in_bytes": 0, - "total_in_bytes": 49296227976 - }, - "source_throttle_time_in_millis": 3892965, - "target_throttle_time_in_millis": 4087645, - "total_time_in_millis": 8439246 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772805660, - "stop_time_in_millis": 1569781245656, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 8439995, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73276121, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49119017164, - "reused_in_bytes": 0, - "total_in_bytes": 49119017164 - }, - "source_throttle_time_in_millis": 5048518, - "target_throttle_time_in_millis": 5181360, - "total_time_in_millis": 9542252 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807235730, - "stop_time_in_millis": 1569816778775, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 9543045, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73161237, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50551045564, - "reused_in_bytes": 0, - "total_in_bytes": 50551045564 - }, - "source_throttle_time_in_millis": 62429, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2049520 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332651, - "stop_time_in_millis": 1569253384681, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2052029, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74816234, - "total_time_in_millis": 2497 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51180349529, - "reused_in_bytes": 0, - "total_in_bytes": 51180349529 - }, - "source_throttle_time_in_millis": 4688, - "target_throttle_time_in_millis": 44, - "total_time_in_millis": 1454072 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569254416800, - "stop_time_in_millis": 1569255873645, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1456845, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74739337, - "total_time_in_millis": 2756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50904909327, - "reused_in_bytes": 0, - "total_in_bytes": 50904909327 - }, - "source_throttle_time_in_millis": 65698, - "target_throttle_time_in_millis": 22, - "total_time_in_millis": 2096758 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332653, - "stop_time_in_millis": 1569253432371, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2099718, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75082521, - "total_time_in_millis": 2429 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49138453475, - "reused_in_bytes": 0, - "total_in_bytes": 49138453475 - }, - "source_throttle_time_in_millis": 4698742, - "target_throttle_time_in_millis": 2972816, - "total_time_in_millis": 8012812 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814128750, - "stop_time_in_millis": 1569822142459, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 8013709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73283659, - "total_time_in_millis": 876 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49232453163, - "reused_in_bytes": 0, - "total_in_bytes": 49232453163 - }, - "source_throttle_time_in_millis": 1625713, - "target_throttle_time_in_millis": 4234329, - "total_time_in_millis": 5964156 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824192489, - "stop_time_in_millis": 1569830157937, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5965448, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73230796, - "total_time_in_millis": 747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49232453163, - "reused_in_bytes": 0, - "total_in_bytes": 49232453163 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 158, - "total_time_in_millis": 1118249 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954968556, - "stop_time_in_millis": 1569956087378, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1118822, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73230796, - "total_time_in_millis": 563 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 46657592875, - "reused_in_bytes": 0, - "total_in_bytes": 46657592875 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 279, - "total_time_in_millis": 1044915 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959505393, - "stop_time_in_millis": 1569960550881, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1045487, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69750738, - "total_time_in_millis": 564 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51313668263, - "reused_in_bytes": 0, - "total_in_bytes": 51313668263 - }, - "source_throttle_time_in_millis": 67225, - "target_throttle_time_in_millis": 12, - "total_time_in_millis": 2090131 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332650, - "stop_time_in_millis": 1569253425223, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2092572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74788020, - "total_time_in_millis": 2410 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48921342483, - "reused_in_bytes": 0, - "total_in_bytes": 48921342483 - }, - "source_throttle_time_in_millis": 3504215, - "target_throttle_time_in_millis": 3437075, - "total_time_in_millis": 7254136 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569825483068, - "stop_time_in_millis": 1569832738149, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7255081, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73204965, - "total_time_in_millis": 924 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49126595129, - "reused_in_bytes": 0, - "total_in_bytes": 49126595129 - }, - "source_throttle_time_in_millis": 140077, - "target_throttle_time_in_millis": 75123, - "total_time_in_millis": 1456313 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973039754, - "stop_time_in_millis": 1569974496701, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1456947, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73077172, - "total_time_in_millis": 624 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 48887904171, - "reused_in_bytes": 0, - "total_in_bytes": 48887904171 - }, - "source_throttle_time_in_millis": 64325, - "target_throttle_time_in_millis": 29, - "total_time_in_millis": 2086096 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569251332651, - "stop_time_in_millis": 1569253421279, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2088627, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71085185, - "total_time_in_millis": 1976 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49680295231, - "reused_in_bytes": 0, - "total_in_bytes": 49680295231 - }, - "source_throttle_time_in_millis": 47278, - "target_throttle_time_in_millis": 2405, - "total_time_in_millis": 1202840 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968175680, - "stop_time_in_millis": 1569969379141, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1203461, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72926397, - "total_time_in_millis": 608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49667571951, - "reused_in_bytes": 0, - "total_in_bytes": 49667571951 - }, - "source_throttle_time_in_millis": 4201928, - "target_throttle_time_in_millis": 5081429, - "total_time_in_millis": 8935344 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803249159, - "stop_time_in_millis": 1569812185345, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 8936185, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73077059, - "total_time_in_millis": 819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47568291837, - "reused_in_bytes": 0, - "total_in_bytes": 47568291837 - }, - "source_throttle_time_in_millis": 293820, - "target_throttle_time_in_millis": 92942, - "total_time_in_millis": 1538922 - }, - "index_name": "om-iu-bro-2019.09.21-000960", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855272189, - "stop_time_in_millis": 1569856811701, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1539511, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69592925, - "total_time_in_millis": 575 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322789643, - "stop_time_in_millis": 1566322790116, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 419 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 11 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397035718, - "stop_time_in_millis": 1566397036122, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 404, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 256 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 19 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481080589, - "stop_time_in_millis": 1566481081202, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 613, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 495 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 11 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481080297, - "stop_time_in_millis": 1566481080518, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 221, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 173 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322781811, - "stop_time_in_millis": 1566322782121, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 309, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 241 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 56, - "reused": 0, - "total": 56 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 25355378, - "reused_in_bytes": 0, - "total_in_bytes": 25355378 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 12490 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569042621758, - "stop_time_in_millis": 1569042634437, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 12678, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 124 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491935501, - "stop_time_in_millis": 1566491935665, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 164, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 121 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465167, - "stop_time_in_millis": 1566411465589, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 422, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 374 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 67 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781971, - "stop_time_in_millis": 1568304782394, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 422, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 317 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10 - }, - "index_name": "om-iu-agg-bro-sensor-eps", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928376, - "stop_time_in_millis": 1568306928698, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 322, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 168 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51156205203, - "reused_in_bytes": 0, - "total_in_bytes": 51156205203 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 364, - "total_time_in_millis": 1173159 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569885795775, - "stop_time_in_millis": 1569886969572, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1173796, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72572529, - "total_time_in_millis": 630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50179012430, - "reused_in_bytes": 0, - "total_in_bytes": 50179012430 - }, - "source_throttle_time_in_millis": 59788, - "target_throttle_time_in_millis": 81, - "total_time_in_millis": 1221205 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569936328573, - "stop_time_in_millis": 1569937550379, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1221806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72352182, - "total_time_in_millis": 591 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 255, - "reused": 0, - "total": 255 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52797482772, - "reused_in_bytes": 0, - "total_in_bytes": 52797482772 - }, - "source_throttle_time_in_millis": 66276, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2095175 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591277, - "stop_time_in_millis": 1569286688152, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2096874, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75206259, - "total_time_in_millis": 1690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51195948392, - "reused_in_bytes": 0, - "total_in_bytes": 51195948392 - }, - "source_throttle_time_in_millis": 961586, - "target_throttle_time_in_millis": 5954760, - "total_time_in_millis": 7006773 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819407779, - "stop_time_in_millis": 1569826416665, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7008885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72621379, - "total_time_in_millis": 1087 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4900 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569286709368, - "stop_time_in_millis": 1569286715129, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 5761, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 814 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 255, - "reused": 0, - "total": 255 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52797482772, - "reused_in_bytes": 0, - "total_in_bytes": 52797482772 - }, - "source_throttle_time_in_millis": 68648, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2095971 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591277, - "stop_time_in_millis": 1569286689537, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2098260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75206259, - "total_time_in_millis": 1767 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51265720178, - "reused_in_bytes": 0, - "total_in_bytes": 51265720178 - }, - "source_throttle_time_in_millis": 108198, - "target_throttle_time_in_millis": 37388, - "total_time_in_millis": 1531496 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688420, - "stop_time_in_millis": 1569758220552, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1532131, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72755612, - "total_time_in_millis": 621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50470664437, - "reused_in_bytes": 0, - "total_in_bytes": 50470664437 - }, - "source_throttle_time_in_millis": 822674, - "target_throttle_time_in_millis": 5433512, - "total_time_in_millis": 6545481 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829327589, - "stop_time_in_millis": 1569835873831, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6546241, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72685075, - "total_time_in_millis": 694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50479255385, - "reused_in_bytes": 0, - "total_in_bytes": 50479255385 - }, - "source_throttle_time_in_millis": 783788, - "target_throttle_time_in_millis": 3449419, - "total_time_in_millis": 4996958 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782059532, - "stop_time_in_millis": 1569787057463, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 4997930, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72701130, - "total_time_in_millis": 929 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53554333093, - "reused_in_bytes": 0, - "total_in_bytes": 53554333093 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 1536528 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569286820354, - "stop_time_in_millis": 1569288359364, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1539009, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75242347, - "total_time_in_millis": 2460 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53051126276, - "reused_in_bytes": 0, - "total_in_bytes": 53051126276 - }, - "source_throttle_time_in_millis": 64594, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 1993473 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591277, - "stop_time_in_millis": 1569286588002, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1996724, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75620654, - "total_time_in_millis": 2722 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53478062181, - "reused_in_bytes": 0, - "total_in_bytes": 53478062181 - }, - "source_throttle_time_in_millis": 67388, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2123391 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591277, - "stop_time_in_millis": 1569286717182, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2125905, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75166062, - "total_time_in_millis": 1996 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50660524034, - "reused_in_bytes": 0, - "total_in_bytes": 50660524034 - }, - "source_throttle_time_in_millis": 5130454, - "target_throttle_time_in_millis": 3633805, - "total_time_in_millis": 9131995 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603779, - "stop_time_in_millis": 1569833736586, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9132806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72828768, - "total_time_in_millis": 755 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51145043967, - "reused_in_bytes": 0, - "total_in_bytes": 51145043967 - }, - "source_throttle_time_in_millis": 276175, - "target_throttle_time_in_millis": 4672367, - "total_time_in_millis": 5385295 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792405537, - "stop_time_in_millis": 1569797791672, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 5386135, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72569100, - "total_time_in_millis": 825 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50340761670, - "reused_in_bytes": 0, - "total_in_bytes": 50340761670 - }, - "source_throttle_time_in_millis": 2385042, - "target_throttle_time_in_millis": 5643891, - "total_time_in_millis": 7497225 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706927, - "stop_time_in_millis": 1569846204779, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 7497851, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72898043, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51306090782, - "reused_in_bytes": 0, - "total_in_bytes": 51306090782 - }, - "source_throttle_time_in_millis": 207119, - "target_throttle_time_in_millis": 36579, - "total_time_in_millis": 1453905 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937030149, - "stop_time_in_millis": 1569938484689, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1454539, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72578586, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50470664437, - "reused_in_bytes": 0, - "total_in_bytes": 50470664437 - }, - "source_throttle_time_in_millis": 78373, - "target_throttle_time_in_millis": 6511459, - "total_time_in_millis": 6130314 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569760239531, - "stop_time_in_millis": 1569766370523, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6130991, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72685075, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52947747298, - "reused_in_bytes": 0, - "total_in_bytes": 52947747298 - }, - "source_throttle_time_in_millis": 61056, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2060562 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591277, - "stop_time_in_millis": 1569286654668, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2063391, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75562868, - "total_time_in_millis": 2815 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50277695559, - "reused_in_bytes": 0, - "total_in_bytes": 50277695559 - }, - "source_throttle_time_in_millis": 4591920, - "target_throttle_time_in_millis": 5107071, - "total_time_in_millis": 9510565 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824625432, - "stop_time_in_millis": 1569834136776, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 9511344, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72513662, - "total_time_in_millis": 766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52951890838, - "reused_in_bytes": 0, - "total_in_bytes": 52951890838 - }, - "source_throttle_time_in_millis": 62960, - "target_throttle_time_in_millis": 13, - "total_time_in_millis": 2069396 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591278, - "stop_time_in_millis": 1569286663818, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2072540, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75425985, - "total_time_in_millis": 2622 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50340761670, - "reused_in_bytes": 0, - "total_in_bytes": 50340761670 - }, - "source_throttle_time_in_millis": 3441145, - "target_throttle_time_in_millis": 1514279, - "total_time_in_millis": 6286030 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093293, - "stop_time_in_millis": 1569836380705, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 6287411, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72898043, - "total_time_in_millis": 1361 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53051126276, - "reused_in_bytes": 0, - "total_in_bytes": 53051126276 - }, - "source_throttle_time_in_millis": 62689, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 1993973 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591277, - "stop_time_in_millis": 1569286587891, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1996613, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75620654, - "total_time_in_millis": 2630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53434507335, - "reused_in_bytes": 0, - "total_in_bytes": 53434507335 - }, - "source_throttle_time_in_millis": 86954, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2303612 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591278, - "stop_time_in_millis": 1569286897473, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2306195, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75097535, - "total_time_in_millis": 2050 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52829538206, - "reused_in_bytes": 0, - "total_in_bytes": 52829538206 - }, - "source_throttle_time_in_millis": 72466, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2591278 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569284591286, - "stop_time_in_millis": 1569287185836, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2594549, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75330056, - "total_time_in_millis": 3247 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49852267135, - "reused_in_bytes": 0, - "total_in_bytes": 49852267135 - }, - "source_throttle_time_in_millis": 418243, - "target_throttle_time_in_millis": 6566463, - "total_time_in_millis": 6704092 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569789094744, - "stop_time_in_millis": 1569795800570, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6705825, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72170113, - "total_time_in_millis": 1712 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49916680229, - "reused_in_bytes": 0, - "total_in_bytes": 49916680229 - }, - "source_throttle_time_in_millis": 4886232, - "target_throttle_time_in_millis": 4233792, - "total_time_in_millis": 9132188 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807610916, - "stop_time_in_millis": 1569816744435, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 9133519, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72288872, - "total_time_in_millis": 812 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51306090782, - "reused_in_bytes": 0, - "total_in_bytes": 51306090782 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 48276, - "total_time_in_millis": 1232177 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569910102574, - "stop_time_in_millis": 1569911335387, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1232812, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72578586, - "total_time_in_millis": 617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4637 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569286654719, - "stop_time_in_millis": 1569286660197, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 5478, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51195948392, - "reused_in_bytes": 0, - "total_in_bytes": 51195948392 - }, - "source_throttle_time_in_millis": 44594, - "target_throttle_time_in_millis": 3004959, - "total_time_in_millis": 3929015 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732127, - "stop_time_in_millis": 1569839662419, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 3930291, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72621379, - "total_time_in_millis": 672 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50660524034, - "reused_in_bytes": 0, - "total_in_bytes": 50660524034 - }, - "source_throttle_time_in_millis": 26986, - "target_throttle_time_in_millis": 123497, - "total_time_in_millis": 1441757 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569921722861, - "stop_time_in_millis": 1569923165309, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1442447, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72828768, - "total_time_in_millis": 672 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50589732893, - "reused_in_bytes": 0, - "total_in_bytes": 50589732893 - }, - "source_throttle_time_in_millis": 51263, - "target_throttle_time_in_millis": 120174, - "total_time_in_millis": 1582319 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886556982, - "stop_time_in_millis": 1569888139900, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1582917, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72720031, - "total_time_in_millis": 589 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50179012430, - "reused_in_bytes": 0, - "total_in_bytes": 50179012430 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 27217, - "total_time_in_millis": 1420084 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892439828, - "stop_time_in_millis": 1569893860481, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1420652, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72352182, - "total_time_in_millis": 551 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51198374729, - "reused_in_bytes": 0, - "total_in_bytes": 51198374729 - }, - "source_throttle_time_in_millis": 5761591, - "target_throttle_time_in_millis": 1744835, - "total_time_in_millis": 8732061 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812040408, - "stop_time_in_millis": 1569820773206, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8732797, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72652005, - "total_time_in_millis": 727 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49852267135, - "reused_in_bytes": 0, - "total_in_bytes": 49852267135 - }, - "source_throttle_time_in_millis": 2508706, - "target_throttle_time_in_millis": 4427908, - "total_time_in_millis": 7691067 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772441412, - "stop_time_in_millis": 1569780133369, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 7691957, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72170113, - "total_time_in_millis": 867 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52424726308, - "reused_in_bytes": 0, - "total_in_bytes": 52424726308 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 3, - "total_time_in_millis": 1601273 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569288180567, - "stop_time_in_millis": 1569289784823, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1604256, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75105278, - "total_time_in_millis": 2969 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51265720178, - "reused_in_bytes": 0, - "total_in_bytes": 51265720178 - }, - "source_throttle_time_in_millis": 971538, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2220953 - }, - "index_name": "om-iu-bro-2019.09.21-000962", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569904371320, - "stop_time_in_millis": 1569906592859, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2221539, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72755612, - "total_time_in_millis": 576 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52864366823, - "reused_in_bytes": 0, - "total_in_bytes": 52864366823 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 200, - "total_time_in_millis": 1217966 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884145192, - "stop_time_in_millis": 1569885363756, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1218564, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73813527, - "total_time_in_millis": 591 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52790448356, - "reused_in_bytes": 0, - "total_in_bytes": 52790448356 - }, - "source_throttle_time_in_millis": 127277, - "target_throttle_time_in_millis": 267034, - "total_time_in_millis": 1541832 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963187215, - "stop_time_in_millis": 1569964729760, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1542544, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73428345, - "total_time_in_millis": 697 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 312, - "reused": 0, - "total": 312 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54722310847, - "reused_in_bytes": 0, - "total_in_bytes": 54722310847 - }, - "source_throttle_time_in_millis": 49586, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3868047 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101998, - "stop_time_in_millis": 1568946972939, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 3870941, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77086230, - "total_time_in_millis": 2327 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52899619079, - "reused_in_bytes": 0, - "total_in_bytes": 52899619079 - }, - "source_throttle_time_in_millis": 2868269, - "target_throttle_time_in_millis": 4895063, - "total_time_in_millis": 8061630 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772197378, - "stop_time_in_millis": 1569780261739, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 8064360, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73655068, - "total_time_in_millis": 2710 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55267273269, - "reused_in_bytes": 0, - "total_in_bytes": 55267273269 - }, - "source_throttle_time_in_millis": 98006, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2341028 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101998, - "stop_time_in_millis": 1568945445454, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2343455, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77288423, - "total_time_in_millis": 2409 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52328396087, - "reused_in_bytes": 0, - "total_in_bytes": 52328396087 - }, - "source_throttle_time_in_millis": 4946, - "target_throttle_time_in_millis": 37371, - "total_time_in_millis": 1209738 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906592918, - "stop_time_in_millis": 1569907803261, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1210343, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73885750, - "total_time_in_millis": 593 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49542957082, - "reused_in_bytes": 0, - "total_in_bytes": 49542957082 - }, - "source_throttle_time_in_millis": 5710447, - "target_throttle_time_in_millis": 3658672, - "total_time_in_millis": 9328271 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781835114, - "stop_time_in_millis": 1569791164140, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9329025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70228577, - "total_time_in_millis": 744 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56260529102, - "reused_in_bytes": 0, - "total_in_bytes": 56260529102 - }, - "source_throttle_time_in_millis": 81488, - "target_throttle_time_in_millis": 22966, - "total_time_in_millis": 2549384 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101999, - "stop_time_in_millis": 1568945653890, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2551891, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77511626, - "total_time_in_millis": 2478 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52899619079, - "reused_in_bytes": 0, - "total_in_bytes": 52899619079 - }, - "source_throttle_time_in_millis": 3333726, - "target_throttle_time_in_millis": 4188183, - "total_time_in_millis": 8151398 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797343353, - "stop_time_in_millis": 1569805495500, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 8152147, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73655068, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52288121717, - "reused_in_bytes": 0, - "total_in_bytes": 52288121717 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 11132, - "total_time_in_millis": 1476407 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569938844757, - "stop_time_in_millis": 1569940321831, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1477074, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73986529, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52878660545, - "reused_in_bytes": 0, - "total_in_bytes": 52878660545 - }, - "source_throttle_time_in_millis": 5202168, - "target_throttle_time_in_millis": 4793851, - "total_time_in_millis": 10400572 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772744662, - "stop_time_in_millis": 1569783146973, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 10402310, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73666702, - "total_time_in_millis": 699 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56241778210, - "reused_in_bytes": 0, - "total_in_bytes": 56241778210 - }, - "source_throttle_time_in_millis": 81377, - "target_throttle_time_in_millis": 67099, - "total_time_in_millis": 2432199 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943102003, - "stop_time_in_millis": 1568945537228, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2435225, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77465489, - "total_time_in_millis": 2507 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52150438315, - "reused_in_bytes": 0, - "total_in_bytes": 52150438315 - }, - "source_throttle_time_in_millis": 4341686, - "target_throttle_time_in_millis": 4913950, - "total_time_in_millis": 9027229 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575051, - "stop_time_in_millis": 1569836603008, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9027956, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73579506, - "total_time_in_millis": 717 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52277967751, - "reused_in_bytes": 0, - "total_in_bytes": 52277967751 - }, - "source_throttle_time_in_millis": 2052750, - "target_throttle_time_in_millis": 6706412, - "total_time_in_millis": 8303393 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330116, - "stop_time_in_millis": 1569829634915, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 8304799, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73924915, - "total_time_in_millis": 872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52864366823, - "reused_in_bytes": 0, - "total_in_bytes": 52864366823 - }, - "source_throttle_time_in_millis": 1663177, - "target_throttle_time_in_millis": 4182022, - "total_time_in_millis": 6112137 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792183471, - "stop_time_in_millis": 1569798296504, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6113032, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73813527, - "total_time_in_millis": 871 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55654296307, - "reused_in_bytes": 0, - "total_in_bytes": 55654296307 - }, - "source_throttle_time_in_millis": 72047, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2289600 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101998, - "stop_time_in_millis": 1568945394426, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2292427, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77760880, - "total_time_in_millis": 2818 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52150438315, - "reused_in_bytes": 0, - "total_in_bytes": 52150438315 - }, - "source_throttle_time_in_millis": 5855893, - "target_throttle_time_in_millis": 2270611, - "total_time_in_millis": 9093986 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772075391, - "stop_time_in_millis": 1569781170728, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 9095336, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73579506, - "total_time_in_millis": 835 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55425031874, - "reused_in_bytes": 0, - "total_in_bytes": 55425031874 - }, - "source_throttle_time_in_millis": 99597, - "target_throttle_time_in_millis": 58, - "total_time_in_millis": 2346599 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101998, - "stop_time_in_millis": 1568945451342, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2349344, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77605308, - "total_time_in_millis": 2224 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55643561385, - "reused_in_bytes": 0, - "total_in_bytes": 55643561385 - }, - "source_throttle_time_in_millis": 67136, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2286524 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101999, - "stop_time_in_millis": 1568945391387, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2289387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77778468, - "total_time_in_millis": 2334 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55328912390, - "reused_in_bytes": 0, - "total_in_bytes": 55328912390 - }, - "source_throttle_time_in_millis": 68085, - "target_throttle_time_in_millis": 63376, - "total_time_in_millis": 2247035 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943102000, - "stop_time_in_millis": 1568945352186, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2250186, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77742591, - "total_time_in_millis": 2614 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55654296307, - "reused_in_bytes": 0, - "total_in_bytes": 55654296307 - }, - "source_throttle_time_in_millis": 68928, - "target_throttle_time_in_millis": 3, - "total_time_in_millis": 2289093 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101999, - "stop_time_in_millis": 1568945394428, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2292429, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77760880, - "total_time_in_millis": 2819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52927668912, - "reused_in_bytes": 0, - "total_in_bytes": 52927668912 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1529096 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568991028964, - "stop_time_in_millis": 1568992558666, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1529702, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73732275, - "total_time_in_millis": 596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55543883261, - "reused_in_bytes": 0, - "total_in_bytes": 55543883261 - }, - "source_throttle_time_in_millis": 65339, - "target_throttle_time_in_millis": 47350, - "total_time_in_millis": 2278798 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101998, - "stop_time_in_millis": 1568945383953, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2281954, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77608783, - "total_time_in_millis": 2631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53079857980, - "reused_in_bytes": 0, - "total_in_bytes": 53079857980 - }, - "source_throttle_time_in_millis": 26831, - "target_throttle_time_in_millis": 157161, - "total_time_in_millis": 1678494 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948276839, - "stop_time_in_millis": 1569949956126, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1679286, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73910585, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53079857980, - "reused_in_bytes": 0, - "total_in_bytes": 53079857980 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 65535, - "total_time_in_millis": 1284984 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929473933, - "stop_time_in_millis": 1569930759530, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1285596, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73910585, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52790448356, - "reused_in_bytes": 0, - "total_in_bytes": 52790448356 - }, - "source_throttle_time_in_millis": 1307843, - "target_throttle_time_in_millis": 2250640, - "total_time_in_millis": 4427357 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569788522410, - "stop_time_in_millis": 1569792950570, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 4428159, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73428345, - "total_time_in_millis": 786 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51949214968, - "reused_in_bytes": 0, - "total_in_bytes": 51949214968 - }, - "source_throttle_time_in_millis": 724433, - "target_throttle_time_in_millis": 5266532, - "total_time_in_millis": 6105440 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830187028, - "stop_time_in_millis": 1569836293289, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 6106261, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73429203, - "total_time_in_millis": 797 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52020506474, - "reused_in_bytes": 0, - "total_in_bytes": 52020506474 - }, - "source_throttle_time_in_millis": 140836, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 1477785 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893932357, - "stop_time_in_millis": 1569895410765, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1478407, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73943516, - "total_time_in_millis": 613 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51633979262, - "reused_in_bytes": 0, - "total_in_bytes": 51633979262 - }, - "source_throttle_time_in_millis": 154153, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1487977 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569952330569, - "stop_time_in_millis": 1569953819132, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1488562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73538591, - "total_time_in_millis": 574 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52322220368, - "reused_in_bytes": 0, - "total_in_bytes": 52322220368 - }, - "source_throttle_time_in_millis": 1451041, - "target_throttle_time_in_millis": 5957962, - "total_time_in_millis": 7517297 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803528684, - "stop_time_in_millis": 1569811046797, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 7518113, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73980512, - "total_time_in_millis": 775 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55601158205, - "reused_in_bytes": 0, - "total_in_bytes": 55601158205 - }, - "source_throttle_time_in_millis": 41021, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2539960 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101999, - "stop_time_in_millis": 1568945645220, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2543221, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77653046, - "total_time_in_millis": 2649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52282242331, - "reused_in_bytes": 0, - "total_in_bytes": 52282242331 - }, - "source_throttle_time_in_millis": 4893106, - "target_throttle_time_in_millis": 48922, - "total_time_in_millis": 6382262 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867313, - "stop_time_in_millis": 1569842250150, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6382836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73977439, - "total_time_in_millis": 565 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52282242331, - "reused_in_bytes": 0, - "total_in_bytes": 52282242331 - }, - "source_throttle_time_in_millis": 4853838, - "target_throttle_time_in_millis": 6153686, - "total_time_in_millis": 10068778 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756749528, - "stop_time_in_millis": 1569766818993, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 10069464, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73977439, - "total_time_in_millis": 670 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54942052089, - "reused_in_bytes": 0, - "total_in_bytes": 54942052089 - }, - "source_throttle_time_in_millis": 77071, - "target_throttle_time_in_millis": 33518, - "total_time_in_millis": 2284300 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943101998, - "stop_time_in_millis": 1568945389137, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2287139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76809226, - "total_time_in_millis": 2319 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49542957082, - "reused_in_bytes": 0, - "total_in_bytes": 49542957082 - }, - "source_throttle_time_in_millis": 6312686, - "target_throttle_time_in_millis": 3101668, - "total_time_in_millis": 10165000 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783196244, - "stop_time_in_millis": 1569793362777, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 10166532, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70228577, - "total_time_in_millis": 985 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55543883261, - "reused_in_bytes": 0, - "total_in_bytes": 55543883261 - }, - "source_throttle_time_in_millis": 77200, - "target_throttle_time_in_millis": 28745, - "total_time_in_millis": 2278792 - }, - "index_name": "om-iu-bro-2019.09.17-000944", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568943102005, - "stop_time_in_millis": 1568945383819, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2281813, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77608783, - "total_time_in_millis": 2496 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 255, - "reused": 0, - "total": 255 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53433008722, - "reused_in_bytes": 0, - "total_in_bytes": 53433008722 - }, - "source_throttle_time_in_millis": 5281, - "target_throttle_time_in_millis": 881285, - "total_time_in_millis": 1996127 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569909153850, - "stop_time_in_millis": 1569911152055, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1998205, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75573715, - "total_time_in_millis": 2068 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53077633730, - "reused_in_bytes": 0, - "total_in_bytes": 53077633730 - }, - "source_throttle_time_in_millis": 49893, - "target_throttle_time_in_millis": 58175, - "total_time_in_millis": 4083184 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559767, - "stop_time_in_millis": 1568928646312, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 4086544, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75389869, - "total_time_in_millis": 2820 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53726227222, - "reused_in_bytes": 0, - "total_in_bytes": 53726227222 - }, - "source_throttle_time_in_millis": 64895, - "target_throttle_time_in_millis": 82230, - "total_time_in_millis": 2411267 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559790, - "stop_time_in_millis": 1568926973707, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2413916, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76060053, - "total_time_in_millis": 2010 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51661741925, - "reused_in_bytes": 0, - "total_in_bytes": 51661741925 - }, - "source_throttle_time_in_millis": 1888, - "target_throttle_time_in_millis": 4591084, - "total_time_in_millis": 4756329 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569574987985, - "stop_time_in_millis": 1569579745101, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 4757115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72754276, - "total_time_in_millis": 774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 297, - "reused": 0, - "total": 297 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54198500168, - "reused_in_bytes": 0, - "total_in_bytes": 54198500168 - }, - "source_throttle_time_in_millis": 24344, - "target_throttle_time_in_millis": 277921, - "total_time_in_millis": 2512647 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559767, - "stop_time_in_millis": 1568927078166, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2518398, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75683744, - "total_time_in_millis": 2240 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53788459690, - "reused_in_bytes": 0, - "total_in_bytes": 53788459690 - }, - "source_throttle_time_in_millis": 67951, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2295738 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559769, - "stop_time_in_millis": 1568926859088, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2299318, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75982220, - "total_time_in_millis": 2035 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50866714154, - "reused_in_bytes": 0, - "total_in_bytes": 50866714154 - }, - "source_throttle_time_in_millis": 192370, - "target_throttle_time_in_millis": 136903, - "total_time_in_millis": 1521548 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886589202, - "stop_time_in_millis": 1569888111415, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1522213, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72832100, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50885496851, - "reused_in_bytes": 0, - "total_in_bytes": 50885496851 - }, - "source_throttle_time_in_millis": 53059, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 4179106 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559768, - "stop_time_in_millis": 1568928741931, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 4182163, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72183698, - "total_time_in_millis": 2516 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50418201281, - "reused_in_bytes": 0, - "total_in_bytes": 50418201281 - }, - "source_throttle_time_in_millis": 180709, - "target_throttle_time_in_millis": 37, - "total_time_in_millis": 1349783 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569907803319, - "stop_time_in_millis": 1569909153777, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1350458, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72399860, - "total_time_in_millis": 665 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53461375716, - "reused_in_bytes": 0, - "total_in_bytes": 53461375716 - }, - "source_throttle_time_in_millis": 13133, - "target_throttle_time_in_millis": 73, - "total_time_in_millis": 1539101 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568927204820, - "stop_time_in_millis": 1568928746278, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1541458, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75666588, - "total_time_in_millis": 2346 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50266589938, - "reused_in_bytes": 0, - "total_in_bytes": 50266589938 - }, - "source_throttle_time_in_millis": 6252113, - "target_throttle_time_in_millis": 3478423, - "total_time_in_millis": 9969720 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337363, - "stop_time_in_millis": 1569808307968, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 9970604, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72297361, - "total_time_in_millis": 869 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52972472273, - "reused_in_bytes": 0, - "total_in_bytes": 52972472273 - }, - "source_throttle_time_in_millis": 221474, - "target_throttle_time_in_millis": 42981, - "total_time_in_millis": 2603647 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559768, - "stop_time_in_millis": 1568927166842, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2607074, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75361374, - "total_time_in_millis": 2903 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50885496851, - "reused_in_bytes": 0, - "total_in_bytes": 50885496851 - }, - "source_throttle_time_in_millis": 53216, - "target_throttle_time_in_millis": 13231, - "total_time_in_millis": 4084329 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559767, - "stop_time_in_millis": 1568928646444, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 4086676, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72183698, - "total_time_in_millis": 2331 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50934139415, - "reused_in_bytes": 0, - "total_in_bytes": 50934139415 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 34687, - "total_time_in_millis": 1233723 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568947580821, - "stop_time_in_millis": 1568948815163, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1234341, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72829873, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 330, - "reused": 0, - "total": 330 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54222104062, - "reused_in_bytes": 0, - "total_in_bytes": 54222104062 - }, - "source_throttle_time_in_millis": 24711, - "target_throttle_time_in_millis": 19929, - "total_time_in_millis": 2306250 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559769, - "stop_time_in_millis": 1568926868905, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2309135, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75471752, - "total_time_in_millis": 2354 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50224058424, - "reused_in_bytes": 0, - "total_in_bytes": 50224058424 - }, - "source_throttle_time_in_millis": 27387, - "target_throttle_time_in_millis": 68, - "total_time_in_millis": 1167631 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929831125, - "stop_time_in_millis": 1569930999417, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1168291, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72236584, - "total_time_in_millis": 652 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51079923973, - "reused_in_bytes": 0, - "total_in_bytes": 51079923973 - }, - "source_throttle_time_in_millis": 5492982, - "target_throttle_time_in_millis": 2181177, - "total_time_in_millis": 9026721 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772075410, - "stop_time_in_millis": 1569781102924, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 9027513, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72871104, - "total_time_in_millis": 782 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54249689512, - "reused_in_bytes": 0, - "total_in_bytes": 54249689512 - }, - "source_throttle_time_in_millis": 67349, - "target_throttle_time_in_millis": 97196, - "total_time_in_millis": 2419197 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559771, - "stop_time_in_millis": 1568926981129, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2421358, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75771043, - "total_time_in_millis": 2146 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 255, - "reused": 0, - "total": 255 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53433008722, - "reused_in_bytes": 0, - "total_in_bytes": 53433008722 - }, - "source_throttle_time_in_millis": 7255688, - "target_throttle_time_in_millis": 77562, - "total_time_in_millis": 8794512 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688421, - "stop_time_in_millis": 1569765485716, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 8797295, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75573715, - "total_time_in_millis": 2266 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 270, - "reused": 0, - "total": 270 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53629331373, - "reused_in_bytes": 0, - "total_in_bytes": 53629331373 - }, - "source_throttle_time_in_millis": 17841, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2185568 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559767, - "stop_time_in_millis": 1568926747890, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2188123, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75997859, - "total_time_in_millis": 2021 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 261, - "reused": 0, - "total": 261 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53303147490, - "reused_in_bytes": 0, - "total_in_bytes": 53303147490 - }, - "source_throttle_time_in_millis": 11569, - "target_throttle_time_in_millis": 43333, - "total_time_in_millis": 2299153 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559766, - "stop_time_in_millis": 1568926861414, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2301647, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75588306, - "total_time_in_millis": 1976 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51661741925, - "reused_in_bytes": 0, - "total_in_bytes": 51661741925 - }, - "source_throttle_time_in_millis": 3814052, - "target_throttle_time_in_millis": 25435, - "total_time_in_millis": 5242031 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568953475211, - "stop_time_in_millis": 1568958717820, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5242609, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72754276, - "total_time_in_millis": 567 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50920125930, - "reused_in_bytes": 0, - "total_in_bytes": 50920125930 - }, - "source_throttle_time_in_millis": 510703, - "target_throttle_time_in_millis": 71210, - "total_time_in_millis": 1905100 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569927925339, - "stop_time_in_millis": 1569929831058, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1905719, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72706184, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51163661986, - "reused_in_bytes": 0, - "total_in_bytes": 51163661986 - }, - "source_throttle_time_in_millis": 4273131, - "target_throttle_time_in_millis": 4709214, - "total_time_in_millis": 8963657 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569823421587, - "stop_time_in_millis": 1569832386050, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 8964463, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72943405, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53726227222, - "reused_in_bytes": 0, - "total_in_bytes": 53726227222 - }, - "source_throttle_time_in_millis": 79425, - "target_throttle_time_in_millis": 17315, - "total_time_in_millis": 2368842 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559776, - "stop_time_in_millis": 1568926931322, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2371546, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76060053, - "total_time_in_millis": 2056 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51528933809, - "reused_in_bytes": 0, - "total_in_bytes": 51528933809 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 412, - "total_time_in_millis": 1185677 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954420510, - "stop_time_in_millis": 1569955606824, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1186314, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72664039, - "total_time_in_millis": 628 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50224058424, - "reused_in_bytes": 0, - "total_in_bytes": 50224058424 - }, - "source_throttle_time_in_millis": 104959, - "target_throttle_time_in_millis": 10553, - "total_time_in_millis": 1305644 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881042902, - "stop_time_in_millis": 1569882349162, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1306260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72236584, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51456002231, - "reused_in_bytes": 0, - "total_in_bytes": 51456002231 - }, - "source_throttle_time_in_millis": 4782409, - "target_throttle_time_in_millis": 4097811, - "total_time_in_millis": 9097348 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772684119, - "stop_time_in_millis": 1569781782226, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9098107, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72426105, - "total_time_in_millis": 745 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54267645761, - "reused_in_bytes": 0, - "total_in_bytes": 54267645761 - }, - "source_throttle_time_in_millis": 98643, - "target_throttle_time_in_millis": 63, - "total_time_in_millis": 1444686 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569900145486, - "stop_time_in_millis": 1569901593449, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1447962, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75772946, - "total_time_in_millis": 1826 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51456002231, - "reused_in_bytes": 0, - "total_in_bytes": 51456002231 - }, - "source_throttle_time_in_millis": 3411060, - "target_throttle_time_in_millis": 5528950, - "total_time_in_millis": 8646749 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794649816, - "stop_time_in_millis": 1569803297504, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 8647687, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72426105, - "total_time_in_millis": 841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54275629284, - "reused_in_bytes": 0, - "total_in_bytes": 54275629284 - }, - "source_throttle_time_in_millis": 23475, - "target_throttle_time_in_millis": 28, - "total_time_in_millis": 2193967 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559767, - "stop_time_in_millis": 1568926755764, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2195996, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75781828, - "total_time_in_millis": 2017 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50866714154, - "reused_in_bytes": 0, - "total_in_bytes": 50866714154 - }, - "source_throttle_time_in_millis": 19282, - "target_throttle_time_in_millis": 12549, - "total_time_in_millis": 1206255 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568975464845, - "stop_time_in_millis": 1568976671651, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1206806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72832100, - "total_time_in_millis": 543 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51354123902, - "reused_in_bytes": 0, - "total_in_bytes": 51354123902 - }, - "source_throttle_time_in_millis": 1604660, - "target_throttle_time_in_millis": 58162, - "total_time_in_millis": 2866238 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435648, - "stop_time_in_millis": 1569846302495, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2866846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72214232, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51605897652, - "reused_in_bytes": 0, - "total_in_bytes": 51605897652 - }, - "source_throttle_time_in_millis": 863239, - "target_throttle_time_in_millis": 4468095, - "total_time_in_millis": 6001743 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805079777, - "stop_time_in_millis": 1569811082429, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 6002651, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72743712, - "total_time_in_millis": 900 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51010081146, - "reused_in_bytes": 0, - "total_in_bytes": 51010081146 - }, - "source_throttle_time_in_millis": 131978, - "target_throttle_time_in_millis": 4619672, - "total_time_in_millis": 5125979 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796287287, - "stop_time_in_millis": 1569801414298, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 5127011, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72925028, - "total_time_in_millis": 1004 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 288, - "reused": 0, - "total": 288 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53473957096, - "reused_in_bytes": 0, - "total_in_bytes": 53473957096 - }, - "source_throttle_time_in_millis": 23716, - "target_throttle_time_in_millis": 8382, - "total_time_in_millis": 2059987 - }, - "index_name": "om-iu-bro-2019.09.17-000943", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568924559767, - "stop_time_in_millis": 1568926621839, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2062071, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75664710, - "total_time_in_millis": 2065 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49061563088, - "reused_in_bytes": 0, - "total_in_bytes": 49061563088 - }, - "source_throttle_time_in_millis": 28609, - "target_throttle_time_in_millis": 240087, - "total_time_in_millis": 1370584 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929133548, - "stop_time_in_millis": 1569930504802, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1371254, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72248335, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52144939551, - "reused_in_bytes": 0, - "total_in_bytes": 52144939551 - }, - "source_throttle_time_in_millis": 81151, - "target_throttle_time_in_millis": 15676, - "total_time_in_millis": 2259205 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144774, - "stop_time_in_millis": 1568909406490, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2261716, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74337874, - "total_time_in_millis": 2499 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49826364601, - "reused_in_bytes": 0, - "total_in_bytes": 49826364601 - }, - "source_throttle_time_in_millis": 396411, - "target_throttle_time_in_millis": 10655, - "total_time_in_millis": 1716414 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569924638083, - "stop_time_in_millis": 1569926355089, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1717006, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72854586, - "total_time_in_millis": 583 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47619849955, - "reused_in_bytes": 0, - "total_in_bytes": 47619849955 - }, - "source_throttle_time_in_millis": 64660, - "target_throttle_time_in_millis": 106, - "total_time_in_millis": 1450453 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956347874, - "stop_time_in_millis": 1569957798973, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1451099, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69892804, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51569860499, - "reused_in_bytes": 0, - "total_in_bytes": 51569860499 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 76025, - "total_time_in_millis": 1267897 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568909296158, - "stop_time_in_millis": 1568910566587, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1270428, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74709907, - "total_time_in_millis": 2517 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49920506964, - "reused_in_bytes": 0, - "total_in_bytes": 49920506964 - }, - "source_throttle_time_in_millis": 115958, - "target_throttle_time_in_millis": 321423, - "total_time_in_millis": 1908621 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569921352563, - "stop_time_in_millis": 1569923261799, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1909236, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72975288, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50573565609, - "reused_in_bytes": 0, - "total_in_bytes": 50573565609 - }, - "source_throttle_time_in_millis": 2214611, - "target_throttle_time_in_millis": 2281419, - "total_time_in_millis": 5194192 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814385474, - "stop_time_in_millis": 1569819580404, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5194929, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72828901, - "total_time_in_millis": 710 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51381029324, - "reused_in_bytes": 0, - "total_in_bytes": 51381029324 - }, - "source_throttle_time_in_millis": 30715, - "target_throttle_time_in_millis": 816149, - "total_time_in_millis": 2461491 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144775, - "stop_time_in_millis": 1568909609514, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2464738, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74866478, - "total_time_in_millis": 2564 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51292519502, - "reused_in_bytes": 0, - "total_in_bytes": 51292519502 - }, - "source_throttle_time_in_millis": 4331552, - "target_throttle_time_in_millis": 5816292, - "total_time_in_millis": 9672510 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772197123, - "stop_time_in_millis": 1569781874969, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 9677846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74647666, - "total_time_in_millis": 4024 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51572641407, - "reused_in_bytes": 0, - "total_in_bytes": 51572641407 - }, - "source_throttle_time_in_millis": 30265, - "target_throttle_time_in_millis": 39701, - "total_time_in_millis": 2270929 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144774, - "stop_time_in_millis": 1568909418878, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2274103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74800610, - "total_time_in_millis": 2610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52085120500, - "reused_in_bytes": 0, - "total_in_bytes": 52085120500 - }, - "source_throttle_time_in_millis": 30630, - "target_throttle_time_in_millis": 56820, - "total_time_in_millis": 2084722 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144780, - "stop_time_in_millis": 1568909232605, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2087824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74478373, - "total_time_in_millis": 2583 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51369463428, - "reused_in_bytes": 0, - "total_in_bytes": 51369463428 - }, - "source_throttle_time_in_millis": 1967868, - "target_throttle_time_in_millis": 32277, - "total_time_in_millis": 3518738 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568921314882, - "stop_time_in_millis": 1568924836769, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 3521887, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74636578, - "total_time_in_millis": 3136 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51495877974, - "reused_in_bytes": 0, - "total_in_bytes": 51495877974 - }, - "source_throttle_time_in_millis": 29455, - "target_throttle_time_in_millis": 1743539, - "total_time_in_millis": 2486712 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568909306848, - "stop_time_in_millis": 1568911796689, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2489841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74762032, - "total_time_in_millis": 2508 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50493020984, - "reused_in_bytes": 0, - "total_in_bytes": 50493020984 - }, - "source_throttle_time_in_millis": 4837650, - "target_throttle_time_in_millis": 3821142, - "total_time_in_millis": 9129112 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782008503, - "stop_time_in_millis": 1569791138438, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 9129934, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72813128, - "total_time_in_millis": 802 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51487021166, - "reused_in_bytes": 0, - "total_in_bytes": 51487021166 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 174437, - "total_time_in_millis": 1383596 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569855085406, - "stop_time_in_millis": 1569856471422, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1386016, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74676198, - "total_time_in_millis": 2410 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49860485329, - "reused_in_bytes": 0, - "total_in_bytes": 49860485329 - }, - "source_throttle_time_in_millis": 5466453, - "target_throttle_time_in_millis": 4419989, - "total_time_in_millis": 9564062 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807235728, - "stop_time_in_millis": 1569816801946, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 9566218, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72962852, - "total_time_in_millis": 2107 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50030351692, - "reused_in_bytes": 0, - "total_in_bytes": 50030351692 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 53381, - "total_time_in_millis": 1620910 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568967617720, - "stop_time_in_millis": 1568969239403, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1621682, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73106868, - "total_time_in_millis": 761 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51292519505, - "reused_in_bytes": 0, - "total_in_bytes": 51292519505 - }, - "source_throttle_time_in_millis": 28177, - "target_throttle_time_in_millis": 551520, - "total_time_in_millis": 2841271 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144776, - "stop_time_in_millis": 1568909988542, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2843766, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74647666, - "total_time_in_millis": 2487 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52297963735, - "reused_in_bytes": 0, - "total_in_bytes": 52297963735 - }, - "source_throttle_time_in_millis": 4365369, - "target_throttle_time_in_millis": 4892294, - "total_time_in_millis": 8986772 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813693299, - "stop_time_in_millis": 1569822683405, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 8990105, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74714559, - "total_time_in_millis": 3316 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51468664986, - "reused_in_bytes": 0, - "total_in_bytes": 51468664986 - }, - "source_throttle_time_in_millis": 12667, - "target_throttle_time_in_millis": 19, - "total_time_in_millis": 1540028 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568922476359, - "stop_time_in_millis": 1568924018734, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1542374, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73058039, - "total_time_in_millis": 2338 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52163133211, - "reused_in_bytes": 0, - "total_in_bytes": 52163133211 - }, - "source_throttle_time_in_millis": 84077, - "target_throttle_time_in_millis": 32617, - "total_time_in_millis": 2234164 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144775, - "stop_time_in_millis": 1568909381328, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2236552, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74448257, - "total_time_in_millis": 2363 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50492868255, - "reused_in_bytes": 0, - "total_in_bytes": 50492868255 - }, - "source_throttle_time_in_millis": 127088, - "target_throttle_time_in_millis": 37388, - "total_time_in_millis": 1323732 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569961297465, - "stop_time_in_millis": 1569962621796, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1324330, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72635712, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49835749611, - "reused_in_bytes": 0, - "total_in_bytes": 49835749611 - }, - "source_throttle_time_in_millis": 5316170, - "target_throttle_time_in_millis": 2981563, - "total_time_in_millis": 8993486 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772319713, - "stop_time_in_millis": 1569781314522, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 8994809, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73058039, - "total_time_in_millis": 803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52297963735, - "reused_in_bytes": 0, - "total_in_bytes": 52297963735 - }, - "source_throttle_time_in_millis": 113234, - "target_throttle_time_in_millis": 104841, - "total_time_in_millis": 1697116 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886141993, - "stop_time_in_millis": 1569887842020, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1700026, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74714559, - "total_time_in_millis": 2893 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49826364601, - "reused_in_bytes": 0, - "total_in_bytes": 49826364601 - }, - "source_throttle_time_in_millis": 2982857, - "target_throttle_time_in_millis": 29368, - "total_time_in_millis": 4319348 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568955649914, - "stop_time_in_millis": 1568959969868, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 4319953, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72854586, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49920506964, - "reused_in_bytes": 0, - "total_in_bytes": 49920506964 - }, - "source_throttle_time_in_millis": 17718, - "target_throttle_time_in_millis": 15744, - "total_time_in_millis": 1532002 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956582344, - "stop_time_in_millis": 1569958114990, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1532645, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72975288, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50476899754, - "reused_in_bytes": 0, - "total_in_bytes": 50476899754 - }, - "source_throttle_time_in_millis": 2993266, - "target_throttle_time_in_millis": 3833997, - "total_time_in_millis": 7243512 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337314, - "stop_time_in_millis": 1569805582431, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 7245116, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72729981, - "total_time_in_millis": 1091 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49957228874, - "reused_in_bytes": 0, - "total_in_bytes": 49957228874 - }, - "source_throttle_time_in_millis": 3506693, - "target_throttle_time_in_millis": 4464186, - "total_time_in_millis": 7939631 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811115574, - "stop_time_in_millis": 1569819056894, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 7941320, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72929049, - "total_time_in_millis": 1130 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52119094989, - "reused_in_bytes": 0, - "total_in_bytes": 52119094989 - }, - "source_throttle_time_in_millis": 33907, - "target_throttle_time_in_millis": 4547960, - "total_time_in_millis": 5637400 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568907144781, - "stop_time_in_millis": 1568912786326, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 5641545, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74520222, - "total_time_in_millis": 3610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 277, - "reused": 0, - "total": 277 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51487021166, - "reused_in_bytes": 0, - "total_in_bytes": 51487021166 - }, - "source_throttle_time_in_millis": 1727321, - "target_throttle_time_in_millis": 5150342, - "total_time_in_millis": 6791912 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818212119, - "stop_time_in_millis": 1569825007292, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 6795173, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74676198, - "total_time_in_millis": 2939 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 47619849955, - "reused_in_bytes": 0, - "total_in_bytes": 47619849955 - }, - "source_throttle_time_in_millis": 236985, - "target_throttle_time_in_millis": 652295, - "total_time_in_millis": 2002995 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569018270740, - "stop_time_in_millis": 1569020274506, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2003765, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 69892804, - "total_time_in_millis": 748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50492178608, - "reused_in_bytes": 0, - "total_in_bytes": 50492178608 - }, - "source_throttle_time_in_millis": 35854, - "target_throttle_time_in_millis": 234, - "total_time_in_millis": 1373741 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568966623824, - "stop_time_in_millis": 1568967998172, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1374348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72561316, - "total_time_in_millis": 594 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50573565609, - "reused_in_bytes": 0, - "total_in_bytes": 50573565609 - }, - "source_throttle_time_in_millis": 1802555, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 3239182 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568964532037, - "stop_time_in_millis": 1568967771833, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 3239795, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72828901, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51369463428, - "reused_in_bytes": 0, - "total_in_bytes": 51369463428 - }, - "source_throttle_time_in_millis": 341926, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1604114 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569884189289, - "stop_time_in_millis": 1569885795714, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1606424, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74636578, - "total_time_in_millis": 2301 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49061563088, - "reused_in_bytes": 0, - "total_in_bytes": 49061563088 - }, - "source_throttle_time_in_millis": 130109, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1231814 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569917359537, - "stop_time_in_millis": 1569918591944, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1232407, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72248335, - "total_time_in_millis": 583 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51381029321, - "reused_in_bytes": 0, - "total_in_bytes": 51381029321 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 1235114 - }, - "index_name": "om-iu-bro-2019.09.17-000942", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945704393, - "stop_time_in_millis": 1569946942031, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1237638, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74866478, - "total_time_in_millis": 2513 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313902137, - "stop_time_in_millis": 1566313902345, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 208, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 149 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 42 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304639763, - "stop_time_in_millis": 1568304640126, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 362, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 153 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481080619, - "stop_time_in_millis": 1566481081128, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 509, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 349 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 9 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481085242, - "stop_time_in_millis": 1566481085704, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 461, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 394 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 36, - "reused": 0, - "total": 36 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 285745, - "reused_in_bytes": 0, - "total_in_bytes": 285745 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1095 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569246721426, - "stop_time_in_millis": 1569246722668, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 1241, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 109 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 17 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903110, - "stop_time_in_millis": 1566313903685, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 575, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 457 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491935509, - "stop_time_in_millis": 1566491935602, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 93, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 59 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465136, - "stop_time_in_millis": 1566411465683, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 546, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 359 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 73 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781951, - "stop_time_in_millis": 1568304782389, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 437, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 305 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10 - }, - "index_name": "om-iu-agg-bro-stream-epm", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928350, - "stop_time_in_millis": 1568306928523, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 173, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 100 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 262, - "reused": 0, - "total": 262 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54675402453, - "reused_in_bytes": 0, - "total_in_bytes": 54675402453 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 1629032, - "total_time_in_millis": 2682320 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569907934331, - "stop_time_in_millis": 1569910618879, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2684548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76846045, - "total_time_in_millis": 2219 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54329052713, - "reused_in_bytes": 0, - "total_in_bytes": 54329052713 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 2441, - "total_time_in_millis": 1354651 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569946919994, - "stop_time_in_millis": 1569948276775, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1356780, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77349167, - "total_time_in_millis": 2117 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54309067374, - "reused_in_bytes": 0, - "total_in_bytes": 54309067374 - }, - "source_throttle_time_in_millis": 27637, - "target_throttle_time_in_millis": 3766716, - "total_time_in_millis": 5955234 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568894038024, - "stop_time_in_millis": 1568899995939, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 5957915, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77326978, - "total_time_in_millis": 2644 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54329052716, - "reused_in_bytes": 0, - "total_in_bytes": 54329052716 - }, - "source_throttle_time_in_millis": 33795, - "target_throttle_time_in_millis": 5211078, - "total_time_in_millis": 6812949 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893846600, - "stop_time_in_millis": 1568900662759, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 6816158, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77349167, - "total_time_in_millis": 3188 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53336392814, - "reused_in_bytes": 0, - "total_in_bytes": 53336392814 - }, - "source_throttle_time_in_millis": 2884659, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4370903 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568956345095, - "stop_time_in_millis": 1568960718485, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 4373390, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76716578, - "total_time_in_millis": 1963 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 312, - "reused": 0, - "total": 312 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54214009622, - "reused_in_bytes": 0, - "total_in_bytes": 54214009622 - }, - "source_throttle_time_in_millis": 461216, - "target_throttle_time_in_millis": 4701814, - "total_time_in_millis": 5340790 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732200, - "stop_time_in_millis": 1569841075703, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 5343503, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77249921, - "total_time_in_millis": 2692 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55022570019, - "reused_in_bytes": 0, - "total_in_bytes": 55022570019 - }, - "source_throttle_time_in_millis": 301993, - "target_throttle_time_in_millis": 85594, - "total_time_in_millis": 1839613 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569870698560, - "stop_time_in_millis": 1569872540918, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1842357, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77310070, - "total_time_in_millis": 2735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 262, - "reused": 0, - "total": 262 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54675402453, - "reused_in_bytes": 0, - "total_in_bytes": 54675402453 - }, - "source_throttle_time_in_millis": 173503, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 1502731 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569901028645, - "stop_time_in_millis": 1569902533404, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1504758, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76846045, - "total_time_in_millis": 2018 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54938578317, - "reused_in_bytes": 0, - "total_in_bytes": 54938578317 - }, - "source_throttle_time_in_millis": 27190, - "target_throttle_time_in_millis": 396, - "total_time_in_millis": 1580161 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568919558760, - "stop_time_in_millis": 1568921144963, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1586203, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77304453, - "total_time_in_millis": 6026 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54447301227, - "reused_in_bytes": 0, - "total_in_bytes": 54447301227 - }, - "source_throttle_time_in_millis": 7084374, - "target_throttle_time_in_millis": 3397379, - "total_time_in_millis": 11045936 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337294, - "stop_time_in_millis": 1569809387501, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 11050207, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77555590, - "total_time_in_millis": 3226 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 279, - "reused": 0, - "total": 279 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53336392814, - "reused_in_bytes": 0, - "total_in_bytes": 53336392814 - }, - "source_throttle_time_in_millis": 3975881, - "target_throttle_time_in_millis": 696542, - "total_time_in_millis": 6211330 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568902892798, - "stop_time_in_millis": 1568909106272, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 6213473, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76716578, - "total_time_in_millis": 2132 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51546414046, - "reused_in_bytes": 0, - "total_in_bytes": 51546414046 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 64592, - "total_time_in_millis": 1310393 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569890336173, - "stop_time_in_millis": 1569891649036, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1312862, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728618, - "total_time_in_millis": 2461 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54954737288, - "reused_in_bytes": 0, - "total_in_bytes": 54954737288 - }, - "source_throttle_time_in_millis": 34524, - "target_throttle_time_in_millis": 5004344, - "total_time_in_millis": 6883975 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893976893, - "stop_time_in_millis": 1568900864476, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 6887583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77101859, - "total_time_in_millis": 3054 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54954737285, - "reused_in_bytes": 0, - "total_in_bytes": 54954737285 - }, - "source_throttle_time_in_millis": 5348616, - "target_throttle_time_in_millis": 5448082, - "total_time_in_millis": 10491286 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806194416, - "stop_time_in_millis": 1569816688778, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 10494362, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77101859, - "total_time_in_millis": 3065 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53943613165, - "reused_in_bytes": 0, - "total_in_bytes": 53943613165 - }, - "source_throttle_time_in_millis": 86281, - "target_throttle_time_in_millis": 39482, - "total_time_in_millis": 1729744 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941929298, - "stop_time_in_millis": 1569943661362, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1732064, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77028354, - "total_time_in_millis": 2310 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54376388623, - "reused_in_bytes": 0, - "total_in_bytes": 54376388623 - }, - "source_throttle_time_in_millis": 84457, - "target_throttle_time_in_millis": 160174, - "total_time_in_millis": 1577259 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920500162, - "stop_time_in_millis": 1569922079705, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1579542, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77403392, - "total_time_in_millis": 2272 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54938578317, - "reused_in_bytes": 0, - "total_in_bytes": 54938578317 - }, - "source_throttle_time_in_millis": 4, - "target_throttle_time_in_millis": 81, - "total_time_in_millis": 1389822 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569868977459, - "stop_time_in_millis": 1569870369477, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1392018, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77304453, - "total_time_in_millis": 2186 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54212324499, - "reused_in_bytes": 0, - "total_in_bytes": 54212324499 - }, - "source_throttle_time_in_millis": 16378, - "target_throttle_time_in_millis": 298870, - "total_time_in_millis": 1633335 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569011933634, - "stop_time_in_millis": 1569013569279, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1635644, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77624022, - "total_time_in_millis": 2299 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53943613165, - "reused_in_bytes": 0, - "total_in_bytes": 53943613165 - }, - "source_throttle_time_in_millis": 73927, - "target_throttle_time_in_millis": 32319, - "total_time_in_millis": 1582388 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569026754138, - "stop_time_in_millis": 1569028338707, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1584569, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77028354, - "total_time_in_millis": 2169 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51546414046, - "reused_in_bytes": 0, - "total_in_bytes": 51546414046 - }, - "source_throttle_time_in_millis": 2502951, - "target_throttle_time_in_millis": 2934396, - "total_time_in_millis": 6234805 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320000, - "stop_time_in_millis": 1569838557533, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 6237532, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728618, - "total_time_in_millis": 2711 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54041822058, - "reused_in_bytes": 0, - "total_in_bytes": 54041822058 - }, - "source_throttle_time_in_millis": 4425046, - "target_throttle_time_in_millis": 4300568, - "total_time_in_millis": 8984546 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772319714, - "stop_time_in_millis": 1569781306824, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 8987109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77124362, - "total_time_in_millis": 2547 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54376388623, - "reused_in_bytes": 0, - "total_in_bytes": 54376388623 - }, - "source_throttle_time_in_millis": 2080851, - "target_throttle_time_in_millis": 3191592, - "total_time_in_millis": 5882338 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467897, - "stop_time_in_millis": 1569828353318, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5885421, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77403392, - "total_time_in_millis": 2998 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55022570019, - "reused_in_bytes": 0, - "total_in_bytes": 55022570019 - }, - "source_throttle_time_in_millis": 64462, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 1719978 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569036664100, - "stop_time_in_millis": 1569038386306, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1722205, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77310070, - "total_time_in_millis": 2216 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54914929117, - "reused_in_bytes": 0, - "total_in_bytes": 54914929117 - }, - "source_throttle_time_in_millis": 31244, - "target_throttle_time_in_millis": 6740383, - "total_time_in_millis": 8551872 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893904138, - "stop_time_in_millis": 1568902459060, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 8554922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77060410, - "total_time_in_millis": 3013 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54309067371, - "reused_in_bytes": 0, - "total_in_bytes": 54309067371 - }, - "source_throttle_time_in_millis": 8189, - "target_throttle_time_in_millis": 145, - "total_time_in_millis": 1321067 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568982383322, - "stop_time_in_millis": 1568983706490, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1323167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77326978, - "total_time_in_millis": 2090 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54914929114, - "reused_in_bytes": 0, - "total_in_bytes": 54914929114 - }, - "source_throttle_time_in_millis": 126358, - "target_throttle_time_in_millis": 8615974, - "total_time_in_millis": 8358591 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688444, - "stop_time_in_millis": 1569765050033, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 8361589, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77060410, - "total_time_in_millis": 2984 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54212324499, - "reused_in_bytes": 0, - "total_in_bytes": 54212324499 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 13086, - "total_time_in_millis": 1517603 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568957500878, - "stop_time_in_millis": 1568959020824, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1519945, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77624022, - "total_time_in_millis": 2332 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54447301227, - "reused_in_bytes": 0, - "total_in_bytes": 54447301227 - }, - "source_throttle_time_in_millis": 5048235, - "target_throttle_time_in_millis": 4140062, - "total_time_in_millis": 9315389 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829789267, - "stop_time_in_millis": 1569839107816, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9318548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77555590, - "total_time_in_millis": 3141 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54372146352, - "reused_in_bytes": 0, - "total_in_bytes": 54372146352 - }, - "source_throttle_time_in_millis": 11495, - "target_throttle_time_in_millis": 31592, - "total_time_in_millis": 1453686 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568914330910, - "stop_time_in_millis": 1568915786829, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1455919, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77619090, - "total_time_in_millis": 2223 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 315, - "reused": 0, - "total": 315 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54117522113, - "reused_in_bytes": 0, - "total_in_bytes": 54117522113 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 96, - "total_time_in_millis": 1315768 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962468201, - "stop_time_in_millis": 1569963786636, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1318435, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77359502, - "total_time_in_millis": 2154 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 315, - "reused": 0, - "total": 315 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54117522113, - "reused_in_bytes": 0, - "total_in_bytes": 54117522113 - }, - "source_throttle_time_in_millis": 4127197, - "target_throttle_time_in_millis": 16478, - "total_time_in_millis": 5620183 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568952856380, - "stop_time_in_millis": 1568958478470, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 5622090, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77359502, - "total_time_in_millis": 1886 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55040296120, - "reused_in_bytes": 0, - "total_in_bytes": 55040296120 - }, - "source_throttle_time_in_millis": 3890085, - "target_throttle_time_in_millis": 3149430, - "total_time_in_millis": 8596509 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821330108, - "stop_time_in_millis": 1569829929838, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 8599729, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77320033, - "total_time_in_millis": 3187 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 312, - "reused": 0, - "total": 312 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54214009622, - "reused_in_bytes": 0, - "total_in_bytes": 54214009622 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 33526, - "total_time_in_millis": 1505017 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973286800, - "stop_time_in_millis": 1569974794357, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1507556, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77249921, - "total_time_in_millis": 2527 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 300, - "reused": 0, - "total": 300 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54041822061, - "reused_in_bytes": 0, - "total_in_bytes": 54041822061 - }, - "source_throttle_time_in_millis": 40777, - "target_throttle_time_in_millis": 4395418, - "total_time_in_millis": 5983104 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893998193, - "stop_time_in_millis": 1568899984266, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 5986072, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77124362, - "total_time_in_millis": 2937 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55040296120, - "reused_in_bytes": 0, - "total_in_bytes": 55040296120 - }, - "source_throttle_time_in_millis": 7795073, - "target_throttle_time_in_millis": 80855, - "total_time_in_millis": 9625437 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756263585, - "stop_time_in_millis": 1569765891919, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 9628333, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77320033, - "total_time_in_millis": 2358 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54372146352, - "reused_in_bytes": 0, - "total_in_bytes": 54372146352 - }, - "source_throttle_time_in_millis": 34911, - "target_throttle_time_in_millis": 29558, - "total_time_in_millis": 1425793 - }, - "index_name": "om-iu-bro-2019.09.17-000941", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568958717874, - "stop_time_in_millis": 1568960145818, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1427944, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77619090, - "total_time_in_millis": 2141 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": ".reporting-2019.05.26", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481067285, - "stop_time_in_millis": 1566481067705, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 419, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 352 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 4, - "reused": 0, - "total": 4 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 33579, - "reused_in_bytes": 0, - "total_in_bytes": 33579 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 436 - }, - "index_name": ".reporting-2019.05.26", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117096280, - "stop_time_in_millis": 1570117096935, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 654, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 171 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52806778690, - "reused_in_bytes": 0, - "total_in_bytes": 52806778690 - }, - "source_throttle_time_in_millis": 66866, - "target_throttle_time_in_millis": 18, - "total_time_in_millis": 2133078 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033579, - "stop_time_in_millis": 1569407169539, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2135959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77037723, - "total_time_in_millis": 2869 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53188381942, - "reused_in_bytes": 0, - "total_in_bytes": 53188381942 - }, - "source_throttle_time_in_millis": 34958, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2349903 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033578, - "stop_time_in_millis": 1569407387094, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2353515, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77483017, - "total_time_in_millis": 3046 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 267, - "reused": 0, - "total": 267 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53410050600, - "reused_in_bytes": 0, - "total_in_bytes": 53410050600 - }, - "source_throttle_time_in_millis": 67856, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2201691 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033576, - "stop_time_in_millis": 1569407237790, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2204214, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76797989, - "total_time_in_millis": 1838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49752680597, - "reused_in_bytes": 0, - "total_in_bytes": 49752680597 - }, - "source_throttle_time_in_millis": 88662, - "target_throttle_time_in_millis": 119454, - "total_time_in_millis": 1684432 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569898190711, - "stop_time_in_millis": 1569899878505, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1687794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73685111, - "total_time_in_millis": 3350 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49752680597, - "reused_in_bytes": 0, - "total_in_bytes": 49752680597 - }, - "source_throttle_time_in_millis": 30456, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 1169617 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962621842, - "stop_time_in_millis": 1569963792062, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1170219, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73685111, - "total_time_in_millis": 591 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51153684337, - "reused_in_bytes": 0, - "total_in_bytes": 51153684337 - }, - "source_throttle_time_in_millis": 47531, - "target_throttle_time_in_millis": 698104, - "total_time_in_millis": 1762130 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569877765871, - "stop_time_in_millis": 1569879528670, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1762799, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74207805, - "total_time_in_millis": 658 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50548905369, - "reused_in_bytes": 0, - "total_in_bytes": 50548905369 - }, - "source_throttle_time_in_millis": 112349, - "target_throttle_time_in_millis": 40204, - "total_time_in_millis": 1379771 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569960550924, - "stop_time_in_millis": 1569961931317, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1380393, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74464566, - "total_time_in_millis": 608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52806778690, - "reused_in_bytes": 0, - "total_in_bytes": 52806778690 - }, - "source_throttle_time_in_millis": 63774, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2133085 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033576, - "stop_time_in_millis": 1569407169588, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2136012, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77037723, - "total_time_in_millis": 2914 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50481260140, - "reused_in_bytes": 0, - "total_in_bytes": 50481260140 - }, - "source_throttle_time_in_millis": 412220, - "target_throttle_time_in_millis": 473224, - "total_time_in_millis": 2504372 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732135, - "stop_time_in_millis": 1569838237990, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2505854, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74584268, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50377988814, - "reused_in_bytes": 0, - "total_in_bytes": 50377988814 - }, - "source_throttle_time_in_millis": 23928, - "target_throttle_time_in_millis": 100, - "total_time_in_millis": 1477328 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569869414006, - "stop_time_in_millis": 1569870892126, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1478120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74626326, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51254591659, - "reused_in_bytes": 0, - "total_in_bytes": 51254591659 - }, - "source_throttle_time_in_millis": 2470549, - "target_throttle_time_in_millis": 5242502, - "total_time_in_millis": 7642692 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816234785, - "stop_time_in_millis": 1569823879874, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 7645089, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74328911, - "total_time_in_millis": 2378 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53394276123, - "reused_in_bytes": 0, - "total_in_bytes": 53394276123 - }, - "source_throttle_time_in_millis": 66129, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2184767 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033578, - "stop_time_in_millis": 1569407220866, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2187288, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76745471, - "total_time_in_millis": 1980 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49439205771, - "reused_in_bytes": 0, - "total_in_bytes": 49439205771 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 79105, - "total_time_in_millis": 1340040 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569920626421, - "stop_time_in_millis": 1569921967075, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1340653, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73383229, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50600108574, - "reused_in_bytes": 0, - "total_in_bytes": 50600108574 - }, - "source_throttle_time_in_millis": 2748972, - "target_throttle_time_in_millis": 3174842, - "total_time_in_millis": 6523213 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569779258705, - "stop_time_in_millis": 1569785782796, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 6524091, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74438324, - "total_time_in_millis": 862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50622735489, - "reused_in_bytes": 0, - "total_in_bytes": 50622735489 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 43225, - "total_time_in_millis": 1462336 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569975473134, - "stop_time_in_millis": 1569976936084, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1462950, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74408338, - "total_time_in_millis": 605 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51250963212, - "reused_in_bytes": 0, - "total_in_bytes": 51250963212 - }, - "source_throttle_time_in_millis": 3919943, - "target_throttle_time_in_millis": 2849822, - "total_time_in_millis": 7651596 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800689521, - "stop_time_in_millis": 1569808342033, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 7652512, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74430558, - "total_time_in_millis": 902 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52877506206, - "reused_in_bytes": 0, - "total_in_bytes": 52877506206 - }, - "source_throttle_time_in_millis": 79673, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2299203 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033576, - "stop_time_in_millis": 1569407336257, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2302680, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77270906, - "total_time_in_millis": 2954 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50377988814, - "reused_in_bytes": 0, - "total_in_bytes": 50377988814 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1286318 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974794405, - "stop_time_in_millis": 1569976081336, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1286931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74626326, - "total_time_in_millis": 604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52986983937, - "reused_in_bytes": 0, - "total_in_bytes": 52986983937 - }, - "source_throttle_time_in_millis": 90565, - "target_throttle_time_in_millis": 58, - "total_time_in_millis": 2234060 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033576, - "stop_time_in_millis": 1569407271037, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2237461, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77051584, - "total_time_in_millis": 2833 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53710413290, - "reused_in_bytes": 0, - "total_in_bytes": 53710413290 - }, - "source_throttle_time_in_millis": 80308, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2535727 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033577, - "stop_time_in_millis": 1569407571491, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2537913, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77237958, - "total_time_in_millis": 2051 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51262072683, - "reused_in_bytes": 0, - "total_in_bytes": 51262072683 - }, - "source_throttle_time_in_millis": 2643855, - "target_throttle_time_in_millis": 5007675, - "total_time_in_millis": 7864973 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569774158119, - "stop_time_in_millis": 1569782023868, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 7865749, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74301476, - "total_time_in_millis": 764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50578198416, - "reused_in_bytes": 0, - "total_in_bytes": 50578198416 - }, - "source_throttle_time_in_millis": 1382831, - "target_throttle_time_in_millis": 3334626, - "total_time_in_millis": 5257204 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792926638, - "stop_time_in_millis": 1569798184597, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 5257959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74560626, - "total_time_in_millis": 746 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51152269489, - "reused_in_bytes": 0, - "total_in_bytes": 51152269489 - }, - "source_throttle_time_in_millis": 5330, - "target_throttle_time_in_millis": 40586, - "total_time_in_millis": 1348467 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569893750701, - "stop_time_in_millis": 1569895099774, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1349073, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74288571, - "total_time_in_millis": 592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50529627536, - "reused_in_bytes": 0, - "total_in_bytes": 50529627536 - }, - "source_throttle_time_in_millis": 1571323, - "target_throttle_time_in_millis": 1784563, - "total_time_in_millis": 4675894 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320027, - "stop_time_in_millis": 1569836996700, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 4676672, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74460001, - "total_time_in_millis": 764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50613053290, - "reused_in_bytes": 0, - "total_in_bytes": 50613053290 - }, - "source_throttle_time_in_millis": 151181, - "target_throttle_time_in_millis": 57721, - "total_time_in_millis": 1508302 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973881167, - "stop_time_in_millis": 1569975390161, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1508994, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74522327, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51152269489, - "reused_in_bytes": 0, - "total_in_bytes": 51152269489 - }, - "source_throttle_time_in_millis": 298294, - "target_throttle_time_in_millis": 3397015, - "total_time_in_millis": 4772603 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792331501, - "stop_time_in_millis": 1569797104968, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 4773467, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74288571, - "total_time_in_millis": 853 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50613053290, - "reused_in_bytes": 0, - "total_in_bytes": 50613053290 - }, - "source_throttle_time_in_millis": 5083770, - "target_throttle_time_in_millis": 3774469, - "total_time_in_millis": 9135905 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808349174, - "stop_time_in_millis": 1569817485955, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 9136781, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74522327, - "total_time_in_millis": 862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50666201237, - "reused_in_bytes": 0, - "total_in_bytes": 50666201237 - }, - "source_throttle_time_in_millis": 2787863, - "target_throttle_time_in_millis": 4378933, - "total_time_in_millis": 7324864 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830281881, - "stop_time_in_millis": 1569837608141, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 7326260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74467902, - "total_time_in_millis": 1382 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49439205771, - "reused_in_bytes": 0, - "total_in_bytes": 49439205771 - }, - "source_throttle_time_in_millis": 5736962, - "target_throttle_time_in_millis": 4592418, - "total_time_in_millis": 10586621 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772290315, - "stop_time_in_millis": 1569782878274, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 10587959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73383229, - "total_time_in_millis": 812 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51262072683, - "reused_in_bytes": 0, - "total_in_bytes": 51262072683 - }, - "source_throttle_time_in_millis": 2629180, - "target_throttle_time_in_millis": 5114180, - "total_time_in_millis": 7532556 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816656509, - "stop_time_in_millis": 1569824189888, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 7533379, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74301476, - "total_time_in_millis": 811 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52973915044, - "reused_in_bytes": 0, - "total_in_bytes": 52973915044 - }, - "source_throttle_time_in_millis": 59918, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2153659 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033576, - "stop_time_in_millis": 1569407190494, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2156917, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77079306, - "total_time_in_millis": 2716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51134104576, - "reused_in_bytes": 0, - "total_in_bytes": 51134104576 - }, - "source_throttle_time_in_millis": 3935821, - "target_throttle_time_in_millis": 1931842, - "total_time_in_millis": 7378107 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772135593, - "stop_time_in_millis": 1569779514491, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 7378897, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74190844, - "total_time_in_millis": 770 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50666201237, - "reused_in_bytes": 0, - "total_in_bytes": 50666201237 - }, - "source_throttle_time_in_millis": 1781236, - "target_throttle_time_in_millis": 6039987, - "total_time_in_millis": 7951666 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821849606, - "stop_time_in_millis": 1569829802104, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 7952497, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74467902, - "total_time_in_millis": 817 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569407276454, - "stop_time_in_millis": 1569407277281, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 768 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52969969010, - "reused_in_bytes": 0, - "total_in_bytes": 52969969010 - }, - "source_throttle_time_in_millis": 91605, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2144124 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569405033576, - "stop_time_in_millis": 1569407180859, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2147282, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77167843, - "total_time_in_millis": 3142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50548905369, - "reused_in_bytes": 0, - "total_in_bytes": 50548905369 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 193985, - "total_time_in_millis": 1439218 - }, - "index_name": "om-iu-bro-2019.09.23-000969", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569869258588, - "stop_time_in_millis": 1569870698451, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1439863, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74464566, - "total_time_in_millis": 632 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51361525682, - "reused_in_bytes": 0, - "total_in_bytes": 51361525682 - }, - "source_throttle_time_in_millis": 85588, - "target_throttle_time_in_millis": 219564, - "total_time_in_millis": 1537478 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569951812694, - "stop_time_in_millis": 1569953350794, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1538100, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72178555, - "total_time_in_millis": 611 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 336, - "reused": 0, - "total": 336 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54751789659, - "reused_in_bytes": 0, - "total_in_bytes": 54751789659 - }, - "source_throttle_time_in_millis": 65753, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2326281 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693140, - "stop_time_in_millis": 1569390022165, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2329025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76235081, - "total_time_in_millis": 2729 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54394033232, - "reused_in_bytes": 0, - "total_in_bytes": 54394033232 - }, - "source_throttle_time_in_millis": 70557, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2325639 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569390020835, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2327695, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75597804, - "total_time_in_millis": 2042 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51403907975, - "reused_in_bytes": 0, - "total_in_bytes": 51403907975 - }, - "source_throttle_time_in_millis": 220125, - "target_throttle_time_in_millis": 2555221, - "total_time_in_millis": 3980568 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569791907340, - "stop_time_in_millis": 1569795889148, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 3981807, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72138587, - "total_time_in_millis": 719 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51526827273, - "reused_in_bytes": 0, - "total_in_bytes": 51526827273 - }, - "source_throttle_time_in_millis": 5331040, - "target_throttle_time_in_millis": 4705636, - "total_time_in_millis": 9987560 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569787207949, - "stop_time_in_millis": 1569797196287, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 9988337, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72519227, - "total_time_in_millis": 756 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53040534124, - "reused_in_bytes": 0, - "total_in_bytes": 53040534124 - }, - "source_throttle_time_in_millis": 51912, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 3948735 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693140, - "stop_time_in_millis": 1569391644607, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 3951467, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75208440, - "total_time_in_millis": 2716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51437244648, - "reused_in_bytes": 0, - "total_in_bytes": 51437244648 - }, - "source_throttle_time_in_millis": 432695, - "target_throttle_time_in_millis": 1599411, - "total_time_in_millis": 3084303 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732174, - "stop_time_in_millis": 1569838818536, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 3086361, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72407332, - "total_time_in_millis": 1022 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51526827273, - "reused_in_bytes": 0, - "total_in_bytes": 51526827273 - }, - "source_throttle_time_in_millis": 127584, - "target_throttle_time_in_millis": 94844, - "total_time_in_millis": 1536065 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569945546426, - "stop_time_in_millis": 1569947083152, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1536725, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72519227, - "total_time_in_millis": 649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4498 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569389894221, - "stop_time_in_millis": 1569389899619, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 5398, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 860 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50860250529, - "reused_in_bytes": 0, - "total_in_bytes": 50860250529 - }, - "source_throttle_time_in_millis": 67594, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1582133 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569879686593, - "stop_time_in_millis": 1569881269403, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1582810, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72508186, - "total_time_in_millis": 664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53919234009, - "reused_in_bytes": 0, - "total_in_bytes": 53919234009 - }, - "source_throttle_time_in_millis": 67760, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2240316 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389935641, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2242502, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76076205, - "total_time_in_millis": 2160 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53693811775, - "reused_in_bytes": 0, - "total_in_bytes": 53693811775 - }, - "source_throttle_time_in_millis": 68145, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2204877 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389900737, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2207598, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75861545, - "total_time_in_millis": 2178 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4758 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569391770752, - "stop_time_in_millis": 1569391776397, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 5645, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 847 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51599552510, - "reused_in_bytes": 0, - "total_in_bytes": 51599552510 - }, - "source_throttle_time_in_millis": 5142070, - "target_throttle_time_in_millis": 3537037, - "total_time_in_millis": 9316704 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780971495, - "stop_time_in_millis": 1569790289043, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 9317547, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72670755, - "total_time_in_millis": 794 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4974 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569389878195, - "stop_time_in_millis": 1569389884063, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 5867, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 849 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50839689684, - "reused_in_bytes": 0, - "total_in_bytes": 50839689684 - }, - "source_throttle_time_in_millis": 165581, - "target_throttle_time_in_millis": 122851, - "total_time_in_millis": 2288155 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569760839384, - "stop_time_in_millis": 1569763128317, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2288932, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72769654, - "total_time_in_millis": 767 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54623976519, - "reused_in_bytes": 0, - "total_in_bytes": 54623976519 - }, - "source_throttle_time_in_millis": 70553, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2273960 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693170, - "stop_time_in_millis": 1569389969586, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2276416, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75932227, - "total_time_in_millis": 2446 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50868779423, - "reused_in_bytes": 0, - "total_in_bytes": 50868779423 - }, - "source_throttle_time_in_millis": 433904, - "target_throttle_time_in_millis": 5769291, - "total_time_in_millis": 6105494 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810528787, - "stop_time_in_millis": 1569816635045, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 6106257, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72540734, - "total_time_in_millis": 741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51403907975, - "reused_in_bytes": 0, - "total_in_bytes": 51403907975 - }, - "source_throttle_time_in_millis": 2776602, - "target_throttle_time_in_millis": 5559697, - "total_time_in_millis": 7969817 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784373608, - "stop_time_in_millis": 1569792344364, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 7970755, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72138587, - "total_time_in_millis": 900 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51001630253, - "reused_in_bytes": 0, - "total_in_bytes": 51001630253 - }, - "source_throttle_time_in_millis": 1059179, - "target_throttle_time_in_millis": 3304907, - "total_time_in_millis": 5067872 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320021, - "stop_time_in_millis": 1569837388792, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5068770, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72792739, - "total_time_in_millis": 887 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52857214570, - "reused_in_bytes": 0, - "total_in_bytes": 52857214570 - }, - "source_throttle_time_in_millis": 50656, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4074170 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693140, - "stop_time_in_millis": 1569391770588, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 4077448, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74797705, - "total_time_in_millis": 2749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53483689852, - "reused_in_bytes": 0, - "total_in_bytes": 53483689852 - }, - "source_throttle_time_in_millis": 68277, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2125392 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389821093, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2127954, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75931805, - "total_time_in_millis": 2045 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4918 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569389904732, - "stop_time_in_millis": 1569389911747, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 7015, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2049 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 291, - "reused": 0, - "total": 291 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53814500807, - "reused_in_bytes": 0, - "total_in_bytes": 53814500807 - }, - "source_throttle_time_in_millis": 69725, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2508921 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693148, - "stop_time_in_millis": 1569390205138, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2511989, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76222626, - "total_time_in_millis": 2483 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 318, - "reused": 0, - "total": 318 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54623976519, - "reused_in_bytes": 0, - "total_in_bytes": 54623976519 - }, - "source_throttle_time_in_millis": 67039, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2273990 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389969589, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2276449, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75932227, - "total_time_in_millis": 2447 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 282, - "reused": 0, - "total": 282 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53514357984, - "reused_in_bytes": 0, - "total_in_bytes": 53514357984 - }, - "source_throttle_time_in_millis": 90646, - "target_throttle_time_in_millis": 37, - "total_time_in_millis": 2283550 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389978794, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2285655, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75501605, - "total_time_in_millis": 2083 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50774265778, - "reused_in_bytes": 0, - "total_in_bytes": 50774265778 - }, - "source_throttle_time_in_millis": 568912, - "target_throttle_time_in_millis": 4176524, - "total_time_in_millis": 5117599 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832295144, - "stop_time_in_millis": 1569837414170, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5119026, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72816822, - "total_time_in_millis": 1357 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53844655635, - "reused_in_bytes": 0, - "total_in_bytes": 53844655635 - }, - "source_throttle_time_in_millis": 70576, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2203036 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389903421, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2210281, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75963882, - "total_time_in_millis": 1989 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51005799177, - "reused_in_bytes": 0, - "total_in_bytes": 51005799177 - }, - "source_throttle_time_in_millis": 5744769, - "target_throttle_time_in_millis": 3690310, - "total_time_in_millis": 9638470 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569793383063, - "stop_time_in_millis": 1569803023008, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 9639944, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72762162, - "total_time_in_millis": 872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50912294018, - "reused_in_bytes": 0, - "total_in_bytes": 50912294018 - }, - "source_throttle_time_in_millis": 343943, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1542894 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569932313794, - "stop_time_in_millis": 1569933857503, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1543709, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72668935, - "total_time_in_millis": 807 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50893246408, - "reused_in_bytes": 0, - "total_in_bytes": 50893246408 - }, - "source_throttle_time_in_millis": 3942552, - "target_throttle_time_in_millis": 2774856, - "total_time_in_millis": 7587750 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827945019, - "stop_time_in_millis": 1569835534137, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 7589117, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72679870, - "total_time_in_millis": 838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51437244648, - "reused_in_bytes": 0, - "total_in_bytes": 51437244648 - }, - "source_throttle_time_in_millis": 110748, - "target_throttle_time_in_millis": 76, - "total_time_in_millis": 1330694 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569919952823, - "stop_time_in_millis": 1569921284062, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1331239, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72407332, - "total_time_in_millis": 534 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50085968689, - "reused_in_bytes": 0, - "total_in_bytes": 50085968689 - }, - "source_throttle_time_in_millis": 51133, - "target_throttle_time_in_millis": 52258, - "total_time_in_millis": 1381152 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569924900828, - "stop_time_in_millis": 1569926282760, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1381931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 71918976, - "total_time_in_millis": 771 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50912294018, - "reused_in_bytes": 0, - "total_in_bytes": 50912294018 - }, - "source_throttle_time_in_millis": 61892, - "target_throttle_time_in_millis": 51349, - "total_time_in_millis": 1370048 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569975978732, - "stop_time_in_millis": 1569977349389, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1370656, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72668935, - "total_time_in_millis": 598 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50868779423, - "reused_in_bytes": 0, - "total_in_bytes": 50868779423 - }, - "source_throttle_time_in_millis": 137486, - "target_throttle_time_in_millis": 15486, - "total_time_in_millis": 1507808 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899405419, - "stop_time_in_millis": 1569900913872, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 1508452, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72540734, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 276, - "reused": 0, - "total": 276 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53693811775, - "reused_in_bytes": 0, - "total_in_bytes": 53693811775 - }, - "source_throttle_time_in_millis": 67145, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2204858 - }, - "index_name": "om-iu-bro-2019.09.23-000968", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569387693139, - "stop_time_in_millis": 1569389900796, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2207657, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75861545, - "total_time_in_millis": 2223 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313902149, - "stop_time_in_millis": 1566313902300, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 151, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 44, - "reused": 0, - "total": 44 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 158009, - "reused_in_bytes": 0, - "total_in_bytes": 158009 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 648 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568377293095, - "stop_time_in_millis": 1568377293942, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 138 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481087763, - "stop_time_in_millis": 1566481087881, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 117, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 73 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 29, - "reused": 0, - "total": 29 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 144962, - "reused_in_bytes": 0, - "total_in_bytes": 144962 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 220 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567299602933, - "stop_time_in_millis": 1567299603278, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 345, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 67 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995886883, - "stop_time_in_millis": 1568995887506, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 623, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 339 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 26, - "reused": 0, - "total": 26 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 138365, - "reused_in_bytes": 0, - "total_in_bytes": 138365 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7447 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569043850285, - "stop_time_in_millis": 1569043858241, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 7955, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 468 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 19 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313903115, - "stop_time_in_millis": 1566313903684, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 569, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 447 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 17 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491918917, - "stop_time_in_millis": 1566491919368, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 450, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 237 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 61 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304781961, - "stop_time_in_millis": 1568304782304, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 343, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 228 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 33, - "reused": 0, - "total": 33 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 156739, - "reused_in_bytes": 0, - "total_in_bytes": 156739 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 298 - }, - "index_name": "alertmon-iu-suricata-new-sids", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569246720758, - "stop_time_in_millis": 1569246721338, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 579, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 210 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 89, - "reused": 0, - "total": 89 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 1131871078, - "reused_in_bytes": 0, - "total_in_bytes": 1131871078 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 1572, - "total_time_in_millis": 92894 - }, - "index_name": ".ml-state", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567941732057, - "stop_time_in_millis": 1567941825396, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 93339, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 292 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 80, - "reused": 0, - "total": 80 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 1054903900, - "reused_in_bytes": 0, - "total_in_bytes": 1054903900 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 575, - "total_time_in_millis": 56370 - }, - "index_name": ".ml-state", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567200899430, - "stop_time_in_millis": 1567200956299, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 56869, - "translog": { - "percent": "100.0%", - "recovered": 1, - "total": 1, - "total_on_start": 1, - "total_time_in_millis": 377 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 16 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568304639757, - "stop_time_in_millis": 1568304640229, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 207 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 11 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313901969, - "stop_time_in_millis": 1566313902620, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 651, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 541 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 8 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481083532, - "stop_time_in_millis": 1566481083972, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 440, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 379 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 22 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322781835, - "stop_time_in_millis": 1566322782220, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 385, - "translog": { - "percent": "100.0%", - "recovered": 1, - "total": 1, - "total_on_start": -1, - "total_time_in_millis": 277 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 71, - "reused": 0, - "total": 71 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 1312968723, - "reused_in_bytes": 0, - "total_in_bytes": 1312968723 - }, - "source_throttle_time_in_millis": 1747, - "target_throttle_time_in_millis": 3940, - "total_time_in_millis": 197783 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569043665953, - "stop_time_in_millis": 1569043864891, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 198937, - "translog": { - "percent": "100.0%", - "recovered": 3, - "total": 3, - "total_on_start": 3, - "total_time_in_millis": 1118 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566491935513, - "stop_time_in_millis": 1566491935732, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 218, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 173 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 10 - }, - "index_name": ".ml-state", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465092, - "stop_time_in_millis": 1566411465622, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 530, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 427 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 71, - "reused": 0, - "total": 71 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 1411392199, - "reused_in_bytes": 0, - "total_in_bytes": 1411392199 - }, - "source_throttle_time_in_millis": 2684, - "target_throttle_time_in_millis": 4578, - "total_time_in_millis": 110309 - }, - "index_name": ".ml-state", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569421303532, - "stop_time_in_millis": 1569421420374, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 116842, - "translog": { - "percent": "100.0%", - "recovered": 5, - "total": 5, - "total_on_start": 5, - "total_time_in_millis": 6113 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55103069551, - "reused_in_bytes": 0, - "total_in_bytes": 55103069551 - }, - "source_throttle_time_in_millis": 69579, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2240772 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875146335, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2243629, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77528774, - "total_time_in_millis": 2334 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52494629469, - "reused_in_bytes": 0, - "total_in_bytes": 52494629469 - }, - "source_throttle_time_in_millis": 4614342, - "target_throttle_time_in_millis": 4670926, - "total_time_in_millis": 8995676 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811793097, - "stop_time_in_millis": 1569820790944, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 8997847, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73519170, - "total_time_in_millis": 2140 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55848037883, - "reused_in_bytes": 0, - "total_in_bytes": 55848037883 - }, - "source_throttle_time_in_millis": 69700, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2351671 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875257274, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2354567, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77225832, - "total_time_in_millis": 2362 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51842139555, - "reused_in_bytes": 0, - "total_in_bytes": 51842139555 - }, - "source_throttle_time_in_millis": 67405, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1558519 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569960908989, - "stop_time_in_millis": 1569962468159, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1559169, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73559303, - "total_time_in_millis": 640 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51687536579, - "reused_in_bytes": 0, - "total_in_bytes": 51687536579 - }, - "source_throttle_time_in_millis": 515764, - "target_throttle_time_in_millis": 6404674, - "total_time_in_millis": 6525004 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831848429, - "stop_time_in_millis": 1569838374139, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 6525710, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73256465, - "total_time_in_millis": 696 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52517632034, - "reused_in_bytes": 0, - "total_in_bytes": 52517632034 - }, - "source_throttle_time_in_millis": 4991350, - "target_throttle_time_in_millis": 4378973, - "total_time_in_millis": 9497497 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781655959, - "stop_time_in_millis": 1569791154320, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 9498360, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73607337, - "total_time_in_millis": 829 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51777940402, - "reused_in_bytes": 0, - "total_in_bytes": 51777940402 - }, - "source_throttle_time_in_millis": 242096, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 1545768 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947101195, - "stop_time_in_millis": 1569948647611, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1546416, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73565039, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52660213505, - "reused_in_bytes": 0, - "total_in_bytes": 52660213505 - }, - "source_throttle_time_in_millis": 140658, - "target_throttle_time_in_millis": 144336, - "total_time_in_millis": 1494251 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957683154, - "stop_time_in_millis": 1569959178554, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1495400, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73751817, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52444713006, - "reused_in_bytes": 0, - "total_in_bytes": 52444713006 - }, - "source_throttle_time_in_millis": 47743, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4168440 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902708, - "stop_time_in_millis": 1568877074647, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 4171938, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73956853, - "total_time_in_millis": 2957 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55197871149, - "reused_in_bytes": 0, - "total_in_bytes": 55197871149 - }, - "source_throttle_time_in_millis": 70679, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2738204 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902715, - "stop_time_in_millis": 1568875646115, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2743399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77455002, - "total_time_in_millis": 2620 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51774916071, - "reused_in_bytes": 0, - "total_in_bytes": 51774916071 - }, - "source_throttle_time_in_millis": 6799484, - "target_throttle_time_in_millis": 3785526, - "total_time_in_millis": 10893137 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337313, - "stop_time_in_millis": 1569809232323, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 10895009, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73838078, - "total_time_in_millis": 836 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52558552217, - "reused_in_bytes": 0, - "total_in_bytes": 52558552217 - }, - "source_throttle_time_in_millis": 5170476, - "target_throttle_time_in_millis": 5184563, - "total_time_in_millis": 10107556 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814126774, - "stop_time_in_millis": 1569824236072, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 10109298, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73462941, - "total_time_in_millis": 770 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52714780349, - "reused_in_bytes": 0, - "total_in_bytes": 52714780349 - }, - "source_throttle_time_in_millis": 812700, - "target_throttle_time_in_millis": 2215908, - "total_time_in_millis": 3978095 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706975, - "stop_time_in_millis": 1569842685801, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 3978826, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73668720, - "total_time_in_millis": 721 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51944706506, - "reused_in_bytes": 0, - "total_in_bytes": 51944706506 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 30902, - "total_time_in_millis": 1281401 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569868243213, - "stop_time_in_millis": 1569869525236, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1282023, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73729757, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51774916071, - "reused_in_bytes": 0, - "total_in_bytes": 51774916071 - }, - "source_throttle_time_in_millis": 1520464, - "target_throttle_time_in_millis": 903470, - "total_time_in_millis": 4000716 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830770151, - "stop_time_in_millis": 1569834771646, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 4001494, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73838078, - "total_time_in_millis": 765 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55197871149, - "reused_in_bytes": 0, - "total_in_bytes": 55197871149 - }, - "source_throttle_time_in_millis": 95393, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2330350 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875235315, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2332608, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77455002, - "total_time_in_millis": 2245 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55465215402, - "reused_in_bytes": 0, - "total_in_bytes": 55465215402 - }, - "source_throttle_time_in_millis": 69019, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2291378 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902705, - "stop_time_in_millis": 1568875197520, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2294814, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77818800, - "total_time_in_millis": 2364 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51899592740, - "reused_in_bytes": 0, - "total_in_bytes": 51899592740 - }, - "source_throttle_time_in_millis": 30860, - "target_throttle_time_in_millis": 199913, - "total_time_in_millis": 1437717 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569879693314, - "stop_time_in_millis": 1569881131648, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1438334, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728596, - "total_time_in_millis": 607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 327, - "reused": 0, - "total": 327 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54002861849, - "reused_in_bytes": 0, - "total_in_bytes": 54002861849 - }, - "source_throttle_time_in_millis": 50642, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3963570 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568876869033, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 3966326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76330585, - "total_time_in_millis": 2228 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 342, - "reused": 0, - "total": 342 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54959745115, - "reused_in_bytes": 0, - "total_in_bytes": 54959745115 - }, - "source_throttle_time_in_millis": 71076, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2327432 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875232974, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2330268, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77165340, - "total_time_in_millis": 2314 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54875051559, - "reused_in_bytes": 0, - "total_in_bytes": 54875051559 - }, - "source_throttle_time_in_millis": 80507, - "target_throttle_time_in_millis": 20, - "total_time_in_millis": 2669163 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902707, - "stop_time_in_millis": 1568875574766, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2672058, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77140280, - "total_time_in_millis": 2359 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51057949133, - "reused_in_bytes": 0, - "total_in_bytes": 51057949133 - }, - "source_throttle_time_in_millis": 2964359, - "target_throttle_time_in_millis": 3339227, - "total_time_in_millis": 6729546 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775505527, - "stop_time_in_millis": 1569782235903, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 6730375, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72882892, - "total_time_in_millis": 813 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52660213505, - "reused_in_bytes": 0, - "total_in_bytes": 52660213505 - }, - "source_throttle_time_in_millis": 48122, - "target_throttle_time_in_millis": 297, - "total_time_in_millis": 1268252 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569904824341, - "stop_time_in_millis": 1569906093694, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1269352, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73751817, - "total_time_in_millis": 586 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51928468620, - "reused_in_bytes": 0, - "total_in_bytes": 51928468620 - }, - "source_throttle_time_in_millis": 4027914, - "target_throttle_time_in_millis": 1599464, - "total_time_in_millis": 7071833 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320020, - "stop_time_in_millis": 1569839393073, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 7073053, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73857941, - "total_time_in_millis": 702 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51687536579, - "reused_in_bytes": 0, - "total_in_bytes": 51687536579 - }, - "source_throttle_time_in_millis": 26592, - "target_throttle_time_in_millis": 9091, - "total_time_in_millis": 1295216 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941813519, - "stop_time_in_millis": 1569943109351, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1295831, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73256465, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52714780349, - "reused_in_bytes": 0, - "total_in_bytes": 52714780349 - }, - "source_throttle_time_in_millis": 3053294, - "target_throttle_time_in_millis": 3570412, - "total_time_in_millis": 7021701 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828680390, - "stop_time_in_millis": 1569835702918, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 7022528, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73668720, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52617308175, - "reused_in_bytes": 0, - "total_in_bytes": 52617308175 - }, - "source_throttle_time_in_millis": 457635, - "target_throttle_time_in_millis": 105607, - "total_time_in_millis": 2038353 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569927982918, - "stop_time_in_millis": 1569930021991, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2039073, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73627374, - "total_time_in_millis": 709 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49591803644, - "reused_in_bytes": 0, - "total_in_bytes": 49591803644 - }, - "source_throttle_time_in_millis": 5514575, - "target_throttle_time_in_millis": 3672109, - "total_time_in_millis": 9960580 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772319720, - "stop_time_in_millis": 1569782281085, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9961364, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 70647274, - "total_time_in_millis": 746 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55899755221, - "reused_in_bytes": 0, - "total_in_bytes": 55899755221 - }, - "source_throttle_time_in_millis": 71492, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2341669 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875249728, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2347021, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77449712, - "total_time_in_millis": 2810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52494629469, - "reused_in_bytes": 0, - "total_in_bytes": 52494629469 - }, - "source_throttle_time_in_millis": 34083, - "target_throttle_time_in_millis": 355187, - "total_time_in_millis": 1963493 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756688425, - "stop_time_in_millis": 1569758652520, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1964095, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73519170, - "total_time_in_millis": 588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54907470051, - "reused_in_bytes": 0, - "total_in_bytes": 54907470051 - }, - "source_throttle_time_in_millis": 70634, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2249445 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875154426, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2251719, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77124630, - "total_time_in_millis": 2256 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 238, - "reused": 0, - "total": 238 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55012220671, - "reused_in_bytes": 0, - "total_in_bytes": 55012220671 - }, - "source_throttle_time_in_millis": 66489, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2305460 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568872902706, - "stop_time_in_millis": 1568875210153, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2307446, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77271742, - "total_time_in_millis": 1976 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52617308175, - "reused_in_bytes": 0, - "total_in_bytes": 52617308175 - }, - "source_throttle_time_in_millis": 36264, - "target_throttle_time_in_millis": 380931, - "total_time_in_millis": 1529556 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569931015046, - "stop_time_in_millis": 1569932546889, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1531842, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73627374, - "total_time_in_millis": 2276 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52111055270, - "reused_in_bytes": 0, - "total_in_bytes": 52111055270 - }, - "source_throttle_time_in_millis": 25518, - "target_throttle_time_in_millis": 337, - "total_time_in_millis": 1299791 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569951657798, - "stop_time_in_millis": 1569952958272, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1300473, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73893849, - "total_time_in_millis": 673 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51831465011, - "reused_in_bytes": 0, - "total_in_bytes": 51831465011 - }, - "source_throttle_time_in_millis": 3515254, - "target_throttle_time_in_millis": 5219534, - "total_time_in_millis": 8396919 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803249150, - "stop_time_in_millis": 1569811647700, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 8398550, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73511659, - "total_time_in_millis": 1581 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51899592740, - "reused_in_bytes": 0, - "total_in_bytes": 51899592740 - }, - "source_throttle_time_in_millis": 151283, - "target_throttle_time_in_millis": 80161, - "total_time_in_millis": 1497126 - }, - "index_name": "om-iu-bro-2019.09.17-000940", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569858692061, - "stop_time_in_millis": 1569860189927, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1497866, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73728596, - "total_time_in_millis": 730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52627184465, - "reused_in_bytes": 0, - "total_in_bytes": 52627184465 - }, - "source_throttle_time_in_millis": 65485, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2085611 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494558, - "stop_time_in_millis": 1569589582772, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2088214, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76118854, - "total_time_in_millis": 2592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52627184465, - "reused_in_bytes": 0, - "total_in_bytes": 52627184465 - }, - "source_throttle_time_in_millis": 66581, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2085611 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494558, - "stop_time_in_millis": 1569589582699, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2088140, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76118854, - "total_time_in_millis": 2519 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50302793471, - "reused_in_bytes": 0, - "total_in_bytes": 50302793471 - }, - "source_throttle_time_in_millis": 6017315, - "target_throttle_time_in_millis": 2641460, - "total_time_in_millis": 9279851 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805387772, - "stop_time_in_millis": 1569814668397, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 9280625, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73195774, - "total_time_in_millis": 763 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50850043070, - "reused_in_bytes": 0, - "total_in_bytes": 50850043070 - }, - "source_throttle_time_in_millis": 1307826, - "target_throttle_time_in_millis": 3884509, - "total_time_in_millis": 5785203 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569780430184, - "stop_time_in_millis": 1569786216260, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 5786076, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73132352, - "total_time_in_millis": 713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 255, - "reused": 0, - "total": 255 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53215481757, - "reused_in_bytes": 0, - "total_in_bytes": 53215481757 - }, - "source_throttle_time_in_millis": 64602, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2144017 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494559, - "stop_time_in_millis": 1569589641484, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2146925, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75772064, - "total_time_in_millis": 1780 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52881174204, - "reused_in_bytes": 0, - "total_in_bytes": 52881174204 - }, - "source_throttle_time_in_millis": 68191, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 2210633 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494558, - "stop_time_in_millis": 1569589708364, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2213805, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76114942, - "total_time_in_millis": 2634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50172153816, - "reused_in_bytes": 0, - "total_in_bytes": 50172153816 - }, - "source_throttle_time_in_millis": 3973436, - "target_throttle_time_in_millis": 5629692, - "total_time_in_millis": 9172530 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772135658, - "stop_time_in_millis": 1569781308977, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9173319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73151181, - "total_time_in_millis": 781 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52706634123, - "reused_in_bytes": 0, - "total_in_bytes": 52706634123 - }, - "source_throttle_time_in_millis": 64507, - "target_throttle_time_in_millis": 90, - "total_time_in_millis": 2130881 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494558, - "stop_time_in_millis": 1569589629713, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2135154, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76200114, - "total_time_in_millis": 2741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49644796227, - "reused_in_bytes": 0, - "total_in_bytes": 49644796227 - }, - "source_throttle_time_in_millis": 435980, - "target_throttle_time_in_millis": 38857, - "total_time_in_millis": 1709254 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569964286811, - "stop_time_in_millis": 1569965996730, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1709918, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72913662, - "total_time_in_millis": 654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52735960860, - "reused_in_bytes": 0, - "total_in_bytes": 52735960860 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 89, - "total_time_in_millis": 1524178 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569589634266, - "stop_time_in_millis": 1569591161433, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1527166, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76067258, - "total_time_in_millis": 2970 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49460980176, - "reused_in_bytes": 0, - "total_in_bytes": 49460980176 - }, - "source_throttle_time_in_millis": 795922, - "target_throttle_time_in_millis": 5842062, - "total_time_in_millis": 6629161 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820697954, - "stop_time_in_millis": 1569827328435, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 6630481, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72478453, - "total_time_in_millis": 774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50097721453, - "reused_in_bytes": 0, - "total_in_bytes": 50097721453 - }, - "source_throttle_time_in_millis": 5324421, - "target_throttle_time_in_millis": 1835505, - "total_time_in_millis": 8346115 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575046, - "stop_time_in_millis": 1569835921930, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 8346884, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73232993, - "total_time_in_millis": 752 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50905119717, - "reused_in_bytes": 0, - "total_in_bytes": 50905119717 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 169754, - "total_time_in_millis": 1347849 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569857939875, - "stop_time_in_millis": 1569859288429, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1348553, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73109514, - "total_time_in_millis": 695 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50099695797, - "reused_in_bytes": 0, - "total_in_bytes": 50099695797 - }, - "source_throttle_time_in_millis": 101745, - "target_throttle_time_in_millis": 4503868, - "total_time_in_millis": 5203730 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790671948, - "stop_time_in_millis": 1569795876533, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 5204584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73138976, - "total_time_in_millis": 841 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49644796227, - "reused_in_bytes": 0, - "total_in_bytes": 49644796227 - }, - "source_throttle_time_in_millis": 18036, - "target_throttle_time_in_millis": 611, - "total_time_in_millis": 1274903 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569950382204, - "stop_time_in_millis": 1569951657752, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1275548, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72913662, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5681 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569589713759, - "stop_time_in_millis": 1569589720306, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6547, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 802 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50850043070, - "reused_in_bytes": 0, - "total_in_bytes": 50850043070 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 47328, - "total_time_in_millis": 1401254 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977500868, - "stop_time_in_millis": 1569978902742, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1401873, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73132352, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52881174204, - "reused_in_bytes": 0, - "total_in_bytes": 52881174204 - }, - "source_throttle_time_in_millis": 66512, - "target_throttle_time_in_millis": 73, - "total_time_in_millis": 2203681 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494558, - "stop_time_in_millis": 1569589701500, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2206941, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76114942, - "total_time_in_millis": 2722 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50302793471, - "reused_in_bytes": 0, - "total_in_bytes": 50302793471 - }, - "source_throttle_time_in_millis": 783965, - "target_throttle_time_in_millis": 1588027, - "total_time_in_millis": 3166287 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867353, - "stop_time_in_millis": 1569839034290, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 3166936, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73195774, - "total_time_in_millis": 642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49460980176, - "reused_in_bytes": 0, - "total_in_bytes": 49460980176 - }, - "source_throttle_time_in_millis": 18199, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 1188503 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569942297803, - "stop_time_in_millis": 1569943486912, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1189108, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72478453, - "total_time_in_millis": 598 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50905119717, - "reused_in_bytes": 0, - "total_in_bytes": 50905119717 - }, - "source_throttle_time_in_millis": 3756316, - "target_throttle_time_in_millis": 535671, - "total_time_in_millis": 5999022 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790114459, - "stop_time_in_millis": 1569796114286, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 5999827, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73109514, - "total_time_in_millis": 779 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50909026574, - "reused_in_bytes": 0, - "total_in_bytes": 50909026574 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 194851, - "total_time_in_millis": 1374349 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569900913935, - "stop_time_in_millis": 1569902288864, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1374928, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73065204, - "total_time_in_millis": 570 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49982926307, - "reused_in_bytes": 0, - "total_in_bytes": 49982926307 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 953, - "total_time_in_millis": 1158627 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569936232820, - "stop_time_in_millis": 1569937392057, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1159237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73249016, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50922345438, - "reused_in_bytes": 0, - "total_in_bytes": 50922345438 - }, - "source_throttle_time_in_millis": 6221658, - "target_throttle_time_in_millis": 2310944, - "total_time_in_millis": 9684249 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810174504, - "stop_time_in_millis": 1569819859566, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 9685061, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73099938, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50921216251, - "reused_in_bytes": 0, - "total_in_bytes": 50921216251 - }, - "source_throttle_time_in_millis": 211236, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 1546571 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970197004, - "stop_time_in_millis": 1569971744202, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1547198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73004600, - "total_time_in_millis": 617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50281140594, - "reused_in_bytes": 0, - "total_in_bytes": 50281140594 - }, - "source_throttle_time_in_millis": 151022, - "target_throttle_time_in_millis": 102, - "total_time_in_millis": 1314350 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569910705975, - "stop_time_in_millis": 1569912020939, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1314964, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73249323, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6724 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569589581780, - "stop_time_in_millis": 1569589589478, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 7697, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 920 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50191833931, - "reused_in_bytes": 0, - "total_in_bytes": 50191833931 - }, - "source_throttle_time_in_millis": 5821369, - "target_throttle_time_in_millis": 2766288, - "total_time_in_millis": 9031646 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820697955, - "stop_time_in_millis": 1569829730381, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9032425, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73248017, - "total_time_in_millis": 764 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50172153816, - "reused_in_bytes": 0, - "total_in_bytes": 50172153816 - }, - "source_throttle_time_in_millis": 15273, - "target_throttle_time_in_millis": 103, - "total_time_in_millis": 1355366 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947183521, - "stop_time_in_millis": 1569948539568, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1356046, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73151181, - "total_time_in_millis": 672 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50140784276, - "reused_in_bytes": 0, - "total_in_bytes": 50140784276 - }, - "source_throttle_time_in_millis": 3986233, - "target_throttle_time_in_millis": 5048032, - "total_time_in_millis": 8570532 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811861761, - "stop_time_in_millis": 1569820433354, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 8571593, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73097338, - "total_time_in_millis": 961 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50140784276, - "reused_in_bytes": 0, - "total_in_bytes": 50140784276 - }, - "source_throttle_time_in_millis": 29893, - "target_throttle_time_in_millis": 108637, - "total_time_in_millis": 1314354 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956563855, - "stop_time_in_millis": 1569957878834, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1314979, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73097338, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52564629473, - "reused_in_bytes": 0, - "total_in_bytes": 52564629473 - }, - "source_throttle_time_in_millis": 62844, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2164797 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569587494558, - "stop_time_in_millis": 1569589661938, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2167380, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75966794, - "total_time_in_millis": 2571 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50922345438, - "reused_in_bytes": 0, - "total_in_bytes": 50922345438 - }, - "source_throttle_time_in_millis": 212563, - "target_throttle_time_in_millis": 118972, - "total_time_in_millis": 1693329 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569861064992, - "stop_time_in_millis": 1569862758982, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1693989, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73099938, - "total_time_in_millis": 653 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50191833931, - "reused_in_bytes": 0, - "total_in_bytes": 50191833931 - }, - "source_throttle_time_in_millis": 72384, - "target_throttle_time_in_millis": 48362, - "total_time_in_millis": 1350862 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569975802481, - "stop_time_in_millis": 1569977154022, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1351540, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73248017, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50958867064, - "reused_in_bytes": 0, - "total_in_bytes": 50958867064 - }, - "source_throttle_time_in_millis": 268736, - "target_throttle_time_in_millis": 4876101, - "total_time_in_millis": 5460944 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796287265, - "stop_time_in_millis": 1569801749302, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 5462036, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72980705, - "total_time_in_millis": 1083 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50958867064, - "reused_in_bytes": 0, - "total_in_bytes": 50958867064 - }, - "source_throttle_time_in_millis": 67450, - "target_throttle_time_in_millis": 69695, - "total_time_in_millis": 1382712 - }, - "index_name": "om-iu-bro-2019.09.25-000979", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977333376, - "stop_time_in_millis": 1569978716686, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1383310, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72980705, - "total_time_in_millis": 587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 576460436, - "reused_in_bytes": 0, - "total_in_bytes": 576460436 - }, - "source_throttle_time_in_millis": 3041, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 18330 - }, - "index_name": "om-iu-suricata-2019.09.17-000106", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978327509, - "stop_time_in_millis": 1569978345880, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 18371, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 150154, - "total_time_in_millis": 32 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 578343860, - "reused_in_bytes": 0, - "total_in_bytes": 578343860 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 14058 - }, - "index_name": "om-iu-suricata-2019.09.17-000106", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976641344, - "stop_time_in_millis": 1569976655438, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 14093, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 150139, - "total_time_in_millis": 26 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 578343860, - "reused_in_bytes": 0, - "total_in_bytes": 578343860 - }, - "source_throttle_time_in_millis": 27213, - "target_throttle_time_in_millis": 61218, - "total_time_in_millis": 100857 - }, - "index_name": "om-iu-suricata-2019.09.17-000106", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772744645, - "stop_time_in_millis": 1569772846673, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 102027, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 150139, - "total_time_in_millis": 128 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 576460436, - "reused_in_bytes": 0, - "total_in_bytes": 576460436 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 3117, - "total_time_in_millis": 18464 - }, - "index_name": "om-iu-suricata-2019.09.17-000106", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978022088, - "stop_time_in_millis": 1569978040596, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 18507, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 150154, - "total_time_in_millis": 32 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 750200705, - "reused_in_bytes": 0, - "total_in_bytes": 750200705 - }, - "source_throttle_time_in_millis": 27311, - "target_throttle_time_in_millis": 107168, - "total_time_in_millis": 125522 - }, - "index_name": "om-iu-suricata-2019.09.12-000101", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829873656, - "stop_time_in_millis": 1569829999274, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 125618, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 189687, - "total_time_in_millis": 67 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 751615777, - "reused_in_bytes": 0, - "total_in_bytes": 751615777 - }, - "source_throttle_time_in_millis": 72310, - "target_throttle_time_in_millis": 97438, - "total_time_in_millis": 151044 - }, - "index_name": "om-iu-suricata-2019.09.12-000101", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569784373625, - "stop_time_in_millis": 1569784524763, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 151138, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 189535, - "total_time_in_millis": 84 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 111, - "reused": 0, - "total": 111 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 761923399, - "reused_in_bytes": 0, - "total_in_bytes": 761923399 - }, - "source_throttle_time_in_millis": 1283, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 30370 - }, - "index_name": "om-iu-suricata-2019.09.12-000101", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568550743576, - "stop_time_in_millis": 1568550774632, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 31055, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 189535, - "total_time_in_millis": 93 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 750200705, - "reused_in_bytes": 0, - "total_in_bytes": 750200705 - }, - "source_throttle_time_in_millis": 46942, - "target_throttle_time_in_millis": 88626, - "total_time_in_millis": 138713 - }, - "index_name": "om-iu-suricata-2019.09.12-000101", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772928816, - "stop_time_in_millis": 1569773067675, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 138858, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 189687, - "total_time_in_millis": 128 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 576488381, - "reused_in_bytes": 0, - "total_in_bytes": 576488381 - }, - "source_throttle_time_in_millis": 2599, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 18794 - }, - "index_name": "om-iu-suricata-2019.09.13-000102", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978716724, - "stop_time_in_millis": 1569978735553, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 18828, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 142430, - "total_time_in_millis": 25 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 578221656, - "reused_in_bytes": 0, - "total_in_bytes": 578221656 - }, - "source_throttle_time_in_millis": 63721, - "target_throttle_time_in_millis": 15344, - "total_time_in_millis": 94628 - }, - "index_name": "om-iu-suricata-2019.09.13-000102", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801816167, - "stop_time_in_millis": 1569801910845, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 94678, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 143394, - "total_time_in_millis": 34 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 124, - "reused": 0, - "total": 124 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 582677014, - "reused_in_bytes": 0, - "total_in_bytes": 582677014 - }, - "source_throttle_time_in_millis": 882, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 28755 - }, - "index_name": "om-iu-suricata-2019.09.13-000102", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568638294723, - "stop_time_in_millis": 1568638325521, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 30797, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 143394, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 576488381, - "reused_in_bytes": 0, - "total_in_bytes": 576488381 - }, - "source_throttle_time_in_millis": 5461, - "target_throttle_time_in_millis": 46358, - "total_time_in_millis": 62897 - }, - "index_name": "om-iu-suricata-2019.09.13-000102", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467917, - "stop_time_in_millis": 1569822530892, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 62974, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 142430, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51754713128, - "reused_in_bytes": 0, - "total_in_bytes": 51754713128 - }, - "source_throttle_time_in_millis": 49955, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4007553 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570009706852, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 4010383, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76268175, - "total_time_in_millis": 2295 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6020 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570007910585, - "stop_time_in_millis": 1570007919250, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 8665, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2604 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52255685240, - "reused_in_bytes": 0, - "total_in_bytes": 52255685240 - }, - "source_throttle_time_in_millis": 65951, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2119377 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007819199, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2122731, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76779012, - "total_time_in_millis": 2803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52789481447, - "reused_in_bytes": 0, - "total_in_bytes": 52789481447 - }, - "source_throttle_time_in_millis": 65309, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2554091 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696476, - "stop_time_in_millis": 1570008254038, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2557562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76522007, - "total_time_in_millis": 2941 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52161440014, - "reused_in_bytes": 0, - "total_in_bytes": 52161440014 - }, - "source_throttle_time_in_millis": 64270, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2091086 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696467, - "stop_time_in_millis": 1570007790065, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2093597, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76738192, - "total_time_in_millis": 2491 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52128374048, - "reused_in_bytes": 0, - "total_in_bytes": 52128374048 - }, - "source_throttle_time_in_millis": 64459, - "target_throttle_time_in_millis": 90, - "total_time_in_millis": 2149569 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696460, - "stop_time_in_millis": 1570007848907, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2152446, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76605226, - "total_time_in_millis": 2359 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52974666325, - "reused_in_bytes": 0, - "total_in_bytes": 52974666325 - }, - "source_throttle_time_in_millis": 71693, - "target_throttle_time_in_millis": 86, - "total_time_in_millis": 2176329 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696461, - "stop_time_in_millis": 1570007875993, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2179532, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76668908, - "total_time_in_millis": 2674 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52789481447, - "reused_in_bytes": 0, - "total_in_bytes": 52789481447 - }, - "source_throttle_time_in_millis": 92272, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2208782 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696460, - "stop_time_in_millis": 1570007908190, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2211729, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76522007, - "total_time_in_millis": 2421 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4099 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570007922404, - "stop_time_in_millis": 1570007927291, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 4886, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 750 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51754713125, - "reused_in_bytes": 0, - "total_in_bytes": 51754713125 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 1480784 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009711867, - "stop_time_in_millis": 1570011195405, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1483537, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76268175, - "total_time_in_millis": 2727 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52270641151, - "reused_in_bytes": 0, - "total_in_bytes": 52270641151 - }, - "source_throttle_time_in_millis": 67784, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2208973 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696467, - "stop_time_in_millis": 1570007908650, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2212183, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76627143, - "total_time_in_millis": 2690 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53000432179, - "reused_in_bytes": 0, - "total_in_bytes": 53000432179 - }, - "source_throttle_time_in_millis": 68625, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2192511 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696461, - "stop_time_in_millis": 1570007892340, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2195878, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76607052, - "total_time_in_millis": 2846 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52226845316, - "reused_in_bytes": 0, - "total_in_bytes": 52226845316 - }, - "source_throttle_time_in_millis": 63123, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2145766 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696461, - "stop_time_in_millis": 1570007845406, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2148945, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76660928, - "total_time_in_millis": 2653 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52362921918, - "reused_in_bytes": 0, - "total_in_bytes": 52362921918 - }, - "source_throttle_time_in_millis": 66094, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2157593 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696460, - "stop_time_in_millis": 1570007857401, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2160940, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76648435, - "total_time_in_millis": 2734 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52944485748, - "reused_in_bytes": 0, - "total_in_bytes": 52944485748 - }, - "source_throttle_time_in_millis": 65359, - "target_throttle_time_in_millis": 192, - "total_time_in_millis": 2200008 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696461, - "stop_time_in_millis": 1570007899707, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2203246, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76685027, - "total_time_in_millis": 2707 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52372554907, - "reused_in_bytes": 0, - "total_in_bytes": 52372554907 - }, - "source_throttle_time_in_millis": 67451, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2155455 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007855166, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2158697, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76752603, - "total_time_in_millis": 2723 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52944485748, - "reused_in_bytes": 0, - "total_in_bytes": 52944485748 - }, - "source_throttle_time_in_millis": 67459, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2199996 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007899736, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2203268, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76685027, - "total_time_in_millis": 2739 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51876307184, - "reused_in_bytes": 0, - "total_in_bytes": 51876307184 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 245, - "total_time_in_millis": 1230984 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570007768197, - "stop_time_in_millis": 1570009001518, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1233320, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76506199, - "total_time_in_millis": 2327 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52166276187, - "reused_in_bytes": 0, - "total_in_bytes": 52166276187 - }, - "source_throttle_time_in_millis": 64245, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2098576 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696461, - "stop_time_in_millis": 1570007798181, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2101719, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76642213, - "total_time_in_millis": 2621 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5116 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570009599972, - "stop_time_in_millis": 1570009605886, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5913, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 752 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51876307187, - "reused_in_bytes": 0, - "total_in_bytes": 51876307187 - }, - "source_throttle_time_in_millis": 68493, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2063640 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696460, - "stop_time_in_millis": 1570007763089, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2066629, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76506199, - "total_time_in_millis": 2447 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570007892370, - "stop_time_in_millis": 1570007893206, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 759 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 252, - "reused": 0, - "total": 252 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52793862137, - "reused_in_bytes": 0, - "total_in_bytes": 52793862137 - }, - "source_throttle_time_in_millis": 66125, - "target_throttle_time_in_millis": 72, - "total_time_in_millis": 2218602 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696460, - "stop_time_in_millis": 1570007916984, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2220523, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76510253, - "total_time_in_millis": 1877 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52951095245, - "reused_in_bytes": 0, - "total_in_bytes": 52951095245 - }, - "source_throttle_time_in_millis": 69220, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2613957 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696471, - "stop_time_in_millis": 1570008313765, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2617294, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76687639, - "total_time_in_millis": 3310 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5514 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570007876070, - "stop_time_in_millis": 1570007882488, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6417, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 852 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52951095245, - "reused_in_bytes": 0, - "total_in_bytes": 52951095245 - }, - "source_throttle_time_in_millis": 96188, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2323471 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696467, - "stop_time_in_millis": 1570008022718, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2326251, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76687639, - "total_time_in_millis": 2766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52128374048, - "reused_in_bytes": 0, - "total_in_bytes": 52128374048 - }, - "source_throttle_time_in_millis": 65998, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 2127317 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007826160, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2129692, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76605226, - "total_time_in_millis": 2363 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52226845316, - "reused_in_bytes": 0, - "total_in_bytes": 52226845316 - }, - "source_throttle_time_in_millis": 66694, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2145765 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696460, - "stop_time_in_millis": 1570007845360, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2148899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76660928, - "total_time_in_millis": 2611 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52161440014, - "reused_in_bytes": 0, - "total_in_bytes": 52161440014 - }, - "source_throttle_time_in_millis": 61662, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2090577 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007790429, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2093961, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76738192, - "total_time_in_millis": 2856 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52166276187, - "reused_in_bytes": 0, - "total_in_bytes": 52166276187 - }, - "source_throttle_time_in_millis": 66269, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2099083 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007798101, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2101633, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76642213, - "total_time_in_millis": 2541 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 252, - "reused": 0, - "total": 252 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52793862137, - "reused_in_bytes": 0, - "total_in_bytes": 52793862137 - }, - "source_throttle_time_in_millis": 63506, - "target_throttle_time_in_millis": 13, - "total_time_in_millis": 2218622 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007916996, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2220528, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76510253, - "total_time_in_millis": 1882 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52362921918, - "reused_in_bytes": 0, - "total_in_bytes": 52362921918 - }, - "source_throttle_time_in_millis": 66462, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2157607 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696467, - "stop_time_in_millis": 1570007857460, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2160993, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76648435, - "total_time_in_millis": 2789 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52242962277, - "reused_in_bytes": 0, - "total_in_bytes": 52242962277 - }, - "source_throttle_time_in_millis": 66285, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2219885 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696461, - "stop_time_in_millis": 1570007919381, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2222920, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76655756, - "total_time_in_millis": 2514 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51781345342, - "reused_in_bytes": 0, - "total_in_bytes": 51781345342 - }, - "source_throttle_time_in_millis": 48627, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 3900445 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696467, - "stop_time_in_millis": 1570009599925, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 3903457, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76452520, - "total_time_in_millis": 2496 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52255685240, - "reused_in_bytes": 0, - "total_in_bytes": 52255685240 - }, - "source_throttle_time_in_millis": 67570, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2119347 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696471, - "stop_time_in_millis": 1570007819598, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2123127, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76779012, - "total_time_in_millis": 3201 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52372554907, - "reused_in_bytes": 0, - "total_in_bytes": 52372554907 - }, - "source_throttle_time_in_millis": 64514, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2155441 - }, - "index_name": "om-iu-bro-2019.09.30-001000", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570005696468, - "stop_time_in_millis": 1570007855229, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2158760, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76752603, - "total_time_in_millis": 2782 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52551810794, - "reused_in_bytes": 0, - "total_in_bytes": 52551810794 - }, - "source_throttle_time_in_millis": 5358690, - "target_throttle_time_in_millis": 2170887, - "total_time_in_millis": 8676314 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812487649, - "stop_time_in_millis": 1569821166941, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 8679292, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73740537, - "total_time_in_millis": 2959 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53403151688, - "reused_in_bytes": 0, - "total_in_bytes": 53403151688 - }, - "source_throttle_time_in_millis": 4177730, - "target_throttle_time_in_millis": 3548122, - "total_time_in_millis": 8021361 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569805387780, - "stop_time_in_millis": 1569813410377, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 8022597, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73765765, - "total_time_in_millis": 718 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55628643297, - "reused_in_bytes": 0, - "total_in_bytes": 55628643297 - }, - "source_throttle_time_in_millis": 71606, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2254730 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894672, - "stop_time_in_millis": 1569478152357, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2257685, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76131618, - "total_time_in_millis": 2429 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52778926557, - "reused_in_bytes": 0, - "total_in_bytes": 52778926557 - }, - "source_throttle_time_in_millis": 25129, - "target_throttle_time_in_millis": 83820, - "total_time_in_millis": 1637946 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899094781, - "stop_time_in_millis": 1569900733743, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1638961, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73756259, - "total_time_in_millis": 635 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52765137873, - "reused_in_bytes": 0, - "total_in_bytes": 52765137873 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 79454, - "total_time_in_millis": 1808837 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948539644, - "stop_time_in_millis": 1569950349221, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 1809576, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73759008, - "total_time_in_millis": 669 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52760100432, - "reused_in_bytes": 0, - "total_in_bytes": 52760100432 - }, - "source_throttle_time_in_millis": 200530, - "target_throttle_time_in_millis": 45643, - "total_time_in_millis": 1522891 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978080022, - "stop_time_in_millis": 1569979603498, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1523475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73760442, - "total_time_in_millis": 575 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55695131599, - "reused_in_bytes": 0, - "total_in_bytes": 55695131599 - }, - "source_throttle_time_in_millis": 71354, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 2382556 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894677, - "stop_time_in_millis": 1569478279473, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2384795, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76159251, - "total_time_in_millis": 2219 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53544581215, - "reused_in_bytes": 0, - "total_in_bytes": 53544581215 - }, - "source_throttle_time_in_millis": 290270, - "target_throttle_time_in_millis": 31284, - "total_time_in_millis": 1564183 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937550437, - "stop_time_in_millis": 1569939115229, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1564791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73752625, - "total_time_in_millis": 598 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53544581215, - "reused_in_bytes": 0, - "total_in_bytes": 53544581215 - }, - "source_throttle_time_in_millis": 4204549, - "target_throttle_time_in_millis": 5263802, - "total_time_in_millis": 9216735 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792365823, - "stop_time_in_millis": 1569801583489, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 9217666, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73752625, - "total_time_in_millis": 919 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55579707355, - "reused_in_bytes": 0, - "total_in_bytes": 55579707355 - }, - "source_throttle_time_in_millis": 71390, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2718718 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894681, - "stop_time_in_millis": 1569478616476, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2721794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76119979, - "total_time_in_millis": 2489 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53473107080, - "reused_in_bytes": 0, - "total_in_bytes": 53473107080 - }, - "source_throttle_time_in_millis": 6384018, - "target_throttle_time_in_millis": 1839500, - "total_time_in_millis": 9533200 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677474, - "stop_time_in_millis": 1569836211993, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 9534519, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73744263, - "total_time_in_millis": 798 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52865699951, - "reused_in_bytes": 0, - "total_in_bytes": 52865699951 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 111, - "total_time_in_millis": 1294777 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569926629857, - "stop_time_in_millis": 1569927925289, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1295432, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73749693, - "total_time_in_millis": 643 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54573218708, - "reused_in_bytes": 0, - "total_in_bytes": 54573218708 - }, - "source_throttle_time_in_millis": 70500, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2207968 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894672, - "stop_time_in_millis": 1569478104944, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2210272, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76023975, - "total_time_in_millis": 2289 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52765137873, - "reused_in_bytes": 0, - "total_in_bytes": 52765137873 - }, - "source_throttle_time_in_millis": 215062, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1454064 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968548885, - "stop_time_in_millis": 1569970003571, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1454686, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73759008, - "total_time_in_millis": 612 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52555817974, - "reused_in_bytes": 0, - "total_in_bytes": 52555817974 - }, - "source_throttle_time_in_millis": 5081716, - "target_throttle_time_in_millis": 2716950, - "total_time_in_millis": 8347803 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820027696, - "stop_time_in_millis": 1569828376273, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 8348576, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73753861, - "total_time_in_millis": 749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52679814509, - "reused_in_bytes": 0, - "total_in_bytes": 52679814509 - }, - "source_throttle_time_in_millis": 2480449, - "target_throttle_time_in_millis": 4476831, - "total_time_in_millis": 6939306 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569808349155, - "stop_time_in_millis": 1569815289271, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6940115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73753246, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54928639716, - "reused_in_bytes": 0, - "total_in_bytes": 54928639716 - }, - "source_throttle_time_in_millis": 68210, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2264073 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894672, - "stop_time_in_millis": 1569478161553, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2266880, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76139504, - "total_time_in_millis": 2277 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54709183044, - "reused_in_bytes": 0, - "total_in_bytes": 54709183044 - }, - "source_throttle_time_in_millis": 51148, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 4059303 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894674, - "stop_time_in_millis": 1569479956911, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 4062237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76240014, - "total_time_in_millis": 2387 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53458012861, - "reused_in_bytes": 0, - "total_in_bytes": 53458012861 - }, - "source_throttle_time_in_millis": 188353, - "target_throttle_time_in_millis": 121, - "total_time_in_millis": 1524580 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569947094164, - "stop_time_in_millis": 1569948619418, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1525254, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73749148, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52816809430, - "reused_in_bytes": 0, - "total_in_bytes": 52816809430 - }, - "source_throttle_time_in_millis": 1905808, - "target_throttle_time_in_millis": 3175858, - "total_time_in_millis": 5795962 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320007, - "stop_time_in_millis": 1569838117207, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5797200, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73756617, - "total_time_in_millis": 716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52760100432, - "reused_in_bytes": 0, - "total_in_bytes": 52760100432 - }, - "source_throttle_time_in_millis": 7450064, - "target_throttle_time_in_millis": 640269, - "total_time_in_millis": 9852345 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782633573, - "stop_time_in_millis": 1569792486712, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 9853139, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73760442, - "total_time_in_millis": 778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52798696472, - "reused_in_bytes": 0, - "total_in_bytes": 52798696472 - }, - "source_throttle_time_in_millis": 105260, - "target_throttle_time_in_millis": 135917, - "total_time_in_millis": 1605722 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569973866727, - "stop_time_in_millis": 1569975473095, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1606367, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73745520, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54688584683, - "reused_in_bytes": 0, - "total_in_bytes": 54688584683 - }, - "source_throttle_time_in_millis": 81172, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2440383 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894674, - "stop_time_in_millis": 1569478337253, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2442579, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76030523, - "total_time_in_millis": 2179 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52817847382, - "reused_in_bytes": 0, - "total_in_bytes": 52817847382 - }, - "source_throttle_time_in_millis": 131770, - "target_throttle_time_in_millis": 13767, - "total_time_in_millis": 1752925 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963993402, - "stop_time_in_millis": 1569965747077, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1753674, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73757754, - "total_time_in_millis": 737 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54618082783, - "reused_in_bytes": 0, - "total_in_bytes": 54618082783 - }, - "source_throttle_time_in_millis": 54794, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 4202876 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894673, - "stop_time_in_millis": 1569480099881, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 4205207, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76090941, - "total_time_in_millis": 2314 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52817847382, - "reused_in_bytes": 0, - "total_in_bytes": 52817847382 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 86, - "total_time_in_millis": 1581910 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569971744240, - "stop_time_in_millis": 1569973326827, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1582586, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73757754, - "total_time_in_millis": 665 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52778926557, - "reused_in_bytes": 0, - "total_in_bytes": 52778926557 - }, - "source_throttle_time_in_millis": 51418, - "target_throttle_time_in_millis": 401, - "total_time_in_millis": 1322407 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906094208, - "stop_time_in_millis": 1569907417271, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1323063, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73756259, - "total_time_in_millis": 647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52865699951, - "reused_in_bytes": 0, - "total_in_bytes": 52865699951 - }, - "source_throttle_time_in_millis": 4419057, - "target_throttle_time_in_millis": 2032995, - "total_time_in_millis": 7370222 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835867317, - "stop_time_in_millis": 1569843239722, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 7372404, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73749693, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52693404210, - "reused_in_bytes": 0, - "total_in_bytes": 52693404210 - }, - "source_throttle_time_in_millis": 5915701, - "target_throttle_time_in_millis": 4348943, - "total_time_in_millis": 10306719 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569799862694, - "stop_time_in_millis": 1569810170167, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 10307473, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73755252, - "total_time_in_millis": 742 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53503186427, - "reused_in_bytes": 0, - "total_in_bytes": 53503186427 - }, - "source_throttle_time_in_millis": 5354229, - "target_throttle_time_in_millis": 5265019, - "total_time_in_millis": 9993574 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814596721, - "stop_time_in_millis": 1569824591162, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 9994441, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73757393, - "total_time_in_millis": 848 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54838608616, - "reused_in_bytes": 0, - "total_in_bytes": 54838608616 - }, - "source_throttle_time_in_millis": 66293, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2250858 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894672, - "stop_time_in_millis": 1569478147696, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2253024, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76205756, - "total_time_in_millis": 2154 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52562533257, - "reused_in_bytes": 0, - "total_in_bytes": 52562533257 - }, - "source_throttle_time_in_millis": 2178990, - "target_throttle_time_in_millis": 1686502, - "total_time_in_millis": 5997099 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772258635, - "stop_time_in_millis": 1569778256632, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 5997997, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73753733, - "total_time_in_millis": 769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52816809430, - "reused_in_bytes": 0, - "total_in_bytes": 52816809430 - }, - "source_throttle_time_in_millis": 6151, - "target_throttle_time_in_millis": 174610, - "total_time_in_millis": 1440489 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435642, - "stop_time_in_millis": 1569844876744, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1441101, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73756617, - "total_time_in_millis": 603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55681916551, - "reused_in_bytes": 0, - "total_in_bytes": 55681916551 - }, - "source_throttle_time_in_millis": 66347, - "target_throttle_time_in_millis": 127, - "total_time_in_millis": 2324086 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894672, - "stop_time_in_millis": 1569478221970, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2327298, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76297523, - "total_time_in_millis": 2665 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5535 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569478279710, - "stop_time_in_millis": 1569478286055, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6344, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 767 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55717726862, - "reused_in_bytes": 0, - "total_in_bytes": 55717726862 - }, - "source_throttle_time_in_millis": 65620, - "target_throttle_time_in_millis": 13, - "total_time_in_millis": 2303614 - }, - "index_name": "om-iu-bro-2019.09.24-000973", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569475894673, - "stop_time_in_millis": 1569478201464, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2306790, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76261803, - "total_time_in_millis": 2543 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51571213257, - "reused_in_bytes": 0, - "total_in_bytes": 51571213257 - }, - "source_throttle_time_in_millis": 48550, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3785686 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570028683765, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 3788080, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75632545, - "total_time_in_millis": 2382 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52120699299, - "reused_in_bytes": 0, - "total_in_bytes": 52120699299 - }, - "source_throttle_time_in_millis": 65384, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2128128 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895685, - "stop_time_in_millis": 1570027026884, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2131198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75736068, - "total_time_in_millis": 2467 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51812006473, - "reused_in_bytes": 0, - "total_in_bytes": 51812006473 - }, - "source_throttle_time_in_millis": 61193, - "target_throttle_time_in_millis": 19, - "total_time_in_millis": 2086392 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895685, - "stop_time_in_millis": 1570026985012, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2089327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75677401, - "total_time_in_millis": 2409 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52596472588, - "reused_in_bytes": 0, - "total_in_bytes": 52596472588 - }, - "source_throttle_time_in_millis": 50381, - "target_throttle_time_in_millis": 99, - "total_time_in_millis": 1600703 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027167948, - "stop_time_in_millis": 1570028771696, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1603748, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75584137, - "total_time_in_millis": 3033 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52587338638, - "reused_in_bytes": 0, - "total_in_bytes": 52587338638 - }, - "source_throttle_time_in_millis": 63613, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2203758 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027102402, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2206717, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75564607, - "total_time_in_millis": 2945 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51780139759, - "reused_in_bytes": 0, - "total_in_bytes": 51780139759 - }, - "source_throttle_time_in_millis": 90080, - "target_throttle_time_in_millis": 47, - "total_time_in_millis": 2055494 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570026953730, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2058046, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75779237, - "total_time_in_millis": 2540 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5099 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026985049, - "stop_time_in_millis": 1570026991011, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 5961, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 792 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52596472591, - "reused_in_bytes": 0, - "total_in_bytes": 52596472591 - }, - "source_throttle_time_in_millis": 66132, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2186393 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027085184, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2189499, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75584137, - "total_time_in_millis": 2585 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51849838492, - "reused_in_bytes": 0, - "total_in_bytes": 51849838492 - }, - "source_throttle_time_in_millis": 66227, - "target_throttle_time_in_millis": 85, - "total_time_in_millis": 2108166 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027006525, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2110840, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75723972, - "total_time_in_millis": 2657 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52049261051, - "reused_in_bytes": 0, - "total_in_bytes": 52049261051 - }, - "source_throttle_time_in_millis": 66151, - "target_throttle_time_in_millis": 499, - "total_time_in_millis": 2525949 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895688, - "stop_time_in_millis": 1570027425691, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2530002, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75843281, - "total_time_in_millis": 3508 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5510 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027136419, - "stop_time_in_millis": 1570027142800, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 6380, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 824 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51981382608, - "reused_in_bytes": 0, - "total_in_bytes": 51981382608 - }, - "source_throttle_time_in_millis": 64580, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2140528 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027039338, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2143654, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75664020, - "total_time_in_millis": 2600 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52609978450, - "reused_in_bytes": 0, - "total_in_bytes": 52609978450 - }, - "source_throttle_time_in_millis": 63555, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2167515 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895685, - "stop_time_in_millis": 1570027066295, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2170609, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75587135, - "total_time_in_millis": 2566 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52609978450, - "reused_in_bytes": 0, - "total_in_bytes": 52609978450 - }, - "source_throttle_time_in_millis": 62752, - "target_throttle_time_in_millis": 101, - "total_time_in_millis": 2167999 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895714, - "stop_time_in_millis": 1570027066245, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2170531, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75587135, - "total_time_in_millis": 2507 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52049261051, - "reused_in_bytes": 0, - "total_in_bytes": 52049261051 - }, - "source_throttle_time_in_millis": 92848, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2190114 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895683, - "stop_time_in_millis": 1570027089022, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2193339, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75843281, - "total_time_in_millis": 2708 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51975196166, - "reused_in_bytes": 0, - "total_in_bytes": 51975196166 - }, - "source_throttle_time_in_millis": 68442, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2117655 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027015944, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2120259, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75629860, - "total_time_in_millis": 2587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52120699299, - "reused_in_bytes": 0, - "total_in_bytes": 52120699299 - }, - "source_throttle_time_in_millis": 64117, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2130772 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895683, - "stop_time_in_millis": 1570027029675, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2133991, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75736068, - "total_time_in_millis": 2618 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51850685389, - "reused_in_bytes": 0, - "total_in_bytes": 51850685389 - }, - "source_throttle_time_in_millis": 64269, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2113997 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895683, - "stop_time_in_millis": 1570027012359, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2116675, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75517841, - "total_time_in_millis": 2654 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52765507256, - "reused_in_bytes": 0, - "total_in_bytes": 52765507256 - }, - "source_throttle_time_in_millis": 67050, - "target_throttle_time_in_millis": 161, - "total_time_in_millis": 2259935 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895686, - "stop_time_in_millis": 1570027158924, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2263237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75623503, - "total_time_in_millis": 2687 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52731670934, - "reused_in_bytes": 0, - "total_in_bytes": 52731670934 - }, - "source_throttle_time_in_millis": 94106, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2264010 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895685, - "stop_time_in_millis": 1570027162469, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2266783, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75650532, - "total_time_in_millis": 2753 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51989855839, - "reused_in_bytes": 0, - "total_in_bytes": 51989855839 - }, - "source_throttle_time_in_millis": 63179, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2139427 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895686, - "stop_time_in_millis": 1570027038197, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2142511, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75802131, - "total_time_in_millis": 2560 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52076303926, - "reused_in_bytes": 0, - "total_in_bytes": 52076303926 - }, - "source_throttle_time_in_millis": 67721, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2068612 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570026968581, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2072897, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75727731, - "total_time_in_millis": 2747 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51975196166, - "reused_in_bytes": 0, - "total_in_bytes": 51975196166 - }, - "source_throttle_time_in_millis": 60371, - "target_throttle_time_in_millis": 42, - "total_time_in_millis": 2117656 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027015952, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2120267, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75629860, - "total_time_in_millis": 2590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52731670931, - "reused_in_bytes": 0, - "total_in_bytes": 52731670931 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 117, - "total_time_in_millis": 1508483 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027167861, - "stop_time_in_millis": 1570028679451, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1511590, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75650532, - "total_time_in_millis": 3088 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51981382608, - "reused_in_bytes": 0, - "total_in_bytes": 51981382608 - }, - "source_throttle_time_in_millis": 65042, - "target_throttle_time_in_millis": 23, - "total_time_in_millis": 2140522 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895683, - "stop_time_in_millis": 1570027039264, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2143580, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75664020, - "total_time_in_millis": 2535 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5360 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027158958, - "stop_time_in_millis": 1570027165145, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 6187, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4955 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027038291, - "stop_time_in_millis": 1570027044086, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 5795, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 789 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51780139756, - "reused_in_bytes": 0, - "total_in_bytes": 51780139756 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 74926, - "total_time_in_millis": 1335782 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570026958860, - "stop_time_in_millis": 1570028297191, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1338331, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75779237, - "total_time_in_millis": 2539 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52076303926, - "reused_in_bytes": 0, - "total_in_bytes": 52076303926 - }, - "source_throttle_time_in_millis": 65055, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2068608 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570026968877, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2073193, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75727731, - "total_time_in_millis": 3037 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51571213257, - "reused_in_bytes": 0, - "total_in_bytes": 51571213257 - }, - "source_throttle_time_in_millis": 49806, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 3786803 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895682, - "stop_time_in_millis": 1570028685524, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 3789841, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75632545, - "total_time_in_millis": 2514 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52797326145, - "reused_in_bytes": 0, - "total_in_bytes": 52797326145 - }, - "source_throttle_time_in_millis": 66866, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2237340 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027136388, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2240703, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75611924, - "total_time_in_millis": 2692 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51849838492, - "reused_in_bytes": 0, - "total_in_bytes": 51849838492 - }, - "source_throttle_time_in_millis": 65581, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2108167 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570027006187, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2110502, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75723972, - "total_time_in_millis": 2325 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5337 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570027012492, - "stop_time_in_millis": 1570027018692, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 6200, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 823 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51615510759, - "reused_in_bytes": 0, - "total_in_bytes": 51615510759 - }, - "source_throttle_time_in_millis": 50180, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 3862080 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570028760366, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 3864681, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75480182, - "total_time_in_millis": 2588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51615510759, - "reused_in_bytes": 0, - "total_in_bytes": 51615510759 - }, - "source_throttle_time_in_millis": 46678, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 3992359 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895684, - "stop_time_in_millis": 1570028890628, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 3994944, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75480182, - "total_time_in_millis": 2563 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52587338638, - "reused_in_bytes": 0, - "total_in_bytes": 52587338638 - }, - "source_throttle_time_in_millis": 65400, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2203758 - }, - "index_name": "om-iu-bro-2019.09.30-001001", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570024895683, - "stop_time_in_millis": 1570027102394, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2206711, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75564607, - "total_time_in_millis": 2940 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56316467200, - "reused_in_bytes": 0, - "total_in_bytes": 56316467200 - }, - "source_throttle_time_in_millis": 67378, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2076608 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570044979559, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2079543, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78391568, - "total_time_in_millis": 2409 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56638432989, - "reused_in_bytes": 0, - "total_in_bytes": 56638432989 - }, - "source_throttle_time_in_millis": 71646, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2140244 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900016, - "stop_time_in_millis": 1570045043765, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2143748, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78619250, - "total_time_in_millis": 2479 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045033379, - "stop_time_in_millis": 1570045034253, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 873, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 807 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56492592394, - "reused_in_bytes": 0, - "total_in_bytes": 56492592394 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2097565 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045025746, - "stop_time_in_millis": 1570047126505, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2100759, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78858626, - "total_time_in_millis": 3172 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57280558317, - "reused_in_bytes": 0, - "total_in_bytes": 57280558317 - }, - "source_throttle_time_in_millis": 70943, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2314055 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045217475, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2317460, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78318356, - "total_time_in_millis": 2838 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56415047465, - "reused_in_bytes": 0, - "total_in_bytes": 56415047465 - }, - "source_throttle_time_in_millis": 71562, - "target_throttle_time_in_millis": 138, - "total_time_in_millis": 2099869 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045003123, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2103107, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78532457, - "total_time_in_millis": 2716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56705951336, - "reused_in_bytes": 0, - "total_in_bytes": 56705951336 - }, - "source_throttle_time_in_millis": 69537, - "target_throttle_time_in_millis": 66, - "total_time_in_millis": 2142680 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900019, - "stop_time_in_millis": 1570045046083, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2146064, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78821892, - "total_time_in_millis": 2862 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56699602533, - "reused_in_bytes": 0, - "total_in_bytes": 56699602533 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 540, - "total_time_in_millis": 1360282 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570044978193, - "stop_time_in_millis": 1570046341121, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1362927, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78790101, - "total_time_in_millis": 2632 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6045 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045046892, - "stop_time_in_millis": 1570045053955, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 7063, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 965 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57064321082, - "reused_in_bytes": 0, - "total_in_bytes": 57064321082 - }, - "source_throttle_time_in_millis": 77263, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2843201 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900027, - "stop_time_in_millis": 1570045746244, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2846216, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78170472, - "total_time_in_millis": 2983 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57141302738, - "reused_in_bytes": 0, - "total_in_bytes": 57141302738 - }, - "source_throttle_time_in_millis": 102935, - "target_throttle_time_in_millis": 21, - "total_time_in_millis": 2331442 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045234620, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2334605, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78466244, - "total_time_in_millis": 2560 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56656393303, - "reused_in_bytes": 0, - "total_in_bytes": 56656393303 - }, - "source_throttle_time_in_millis": 67811, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2107901 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900016, - "stop_time_in_millis": 1570045011100, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 2111083, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78689690, - "total_time_in_millis": 2603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55502281054, - "reused_in_bytes": 0, - "total_in_bytes": 55502281054 - }, - "source_throttle_time_in_millis": 5, - "target_throttle_time_in_millis": 175, - "total_time_in_millis": 1292949 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570047436444, - "stop_time_in_millis": 1570048731720, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1295275, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77621515, - "total_time_in_millis": 2311 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56514294289, - "reused_in_bytes": 0, - "total_in_bytes": 56514294289 - }, - "source_throttle_time_in_millis": 68096, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2102525 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045004990, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2104975, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78770782, - "total_time_in_millis": 2438 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 283, - "reused": 0, - "total": 283 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56699602536, - "reused_in_bytes": 0, - "total_in_bytes": 56699602536 - }, - "source_throttle_time_in_millis": 70259, - "target_throttle_time_in_millis": 84, - "total_time_in_millis": 2069623 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570044972900, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2072885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78790101, - "total_time_in_millis": 2662 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57280558317, - "reused_in_bytes": 0, - "total_in_bytes": 57280558317 - }, - "source_throttle_time_in_millis": 75065, - "target_throttle_time_in_millis": 18, - "total_time_in_millis": 2314055 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900019, - "stop_time_in_millis": 1570045217550, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2317531, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78318356, - "total_time_in_millis": 2906 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56653927321, - "reused_in_bytes": 0, - "total_in_bytes": 56653927321 - }, - "source_throttle_time_in_millis": 70540, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2129966 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900019, - "stop_time_in_millis": 1570045033338, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2133319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78561571, - "total_time_in_millis": 2819 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56415047465, - "reused_in_bytes": 0, - "total_in_bytes": 56415047465 - }, - "source_throttle_time_in_millis": 70599, - "target_throttle_time_in_millis": 44, - "total_time_in_millis": 2100378 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045003119, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2103103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78532457, - "total_time_in_millis": 2716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5971 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045043925, - "stop_time_in_millis": 1570045050818, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 6892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 855 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57064321082, - "reused_in_bytes": 0, - "total_in_bytes": 57064321082 - }, - "source_throttle_time_in_millis": 98621, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2385343 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900014, - "stop_time_in_millis": 1570045288143, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2388128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78170472, - "total_time_in_millis": 2772 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 352, - "reused": 0, - "total": 352 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57352031629, - "reused_in_bytes": 0, - "total_in_bytes": 57352031629 - }, - "source_throttle_time_in_millis": 75423, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2258918 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045161798, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2261782, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78726365, - "total_time_in_millis": 2845 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57313219068, - "reused_in_bytes": 0, - "total_in_bytes": 57313219068 - }, - "source_throttle_time_in_millis": 68460, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2268760 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045171797, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2271782, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78576497, - "total_time_in_millis": 2769 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55502281057, - "reused_in_bytes": 0, - "total_in_bytes": 55502281057 - }, - "source_throttle_time_in_millis": 62142, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 4526912 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900016, - "stop_time_in_millis": 1570047431316, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 4531300, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77621515, - "total_time_in_millis": 2339 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56556101371, - "reused_in_bytes": 0, - "total_in_bytes": 56556101371 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 113, - "total_time_in_millis": 1583496 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045239721, - "stop_time_in_millis": 1570046826094, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1586373, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78688102, - "total_time_in_millis": 2865 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 352, - "reused": 0, - "total": 352 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57352031629, - "reused_in_bytes": 0, - "total_in_bytes": 57352031629 - }, - "source_throttle_time_in_millis": 76616, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2258412 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900014, - "stop_time_in_millis": 1570045161901, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2261886, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78726365, - "total_time_in_millis": 2958 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56556101374, - "reused_in_bytes": 0, - "total_in_bytes": 56556101374 - }, - "source_throttle_time_in_millis": 67518, - "target_throttle_time_in_millis": 87, - "total_time_in_millis": 2067701 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570044970301, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2070286, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78688102, - "total_time_in_millis": 2570 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 259, - "reused": 0, - "total": 259 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57313889305, - "reused_in_bytes": 0, - "total_in_bytes": 57313889305 - }, - "source_throttle_time_in_millis": 71488, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2265235 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045168340, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2268325, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78585102, - "total_time_in_millis": 2567 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56492592397, - "reused_in_bytes": 0, - "total_in_bytes": 56492592397 - }, - "source_throttle_time_in_millis": 97040, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2117088 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900017, - "stop_time_in_millis": 1570045020355, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2120338, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78858626, - "total_time_in_millis": 2725 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4976 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045171959, - "stop_time_in_millis": 1570045177763, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 5803, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 782 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57141302735, - "reused_in_bytes": 0, - "total_in_bytes": 57141302735 - }, - "source_throttle_time_in_millis": 3, - "target_throttle_time_in_millis": 154, - "total_time_in_millis": 1326274 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045239721, - "stop_time_in_millis": 1570046568549, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1328827, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78466244, - "total_time_in_millis": 2545 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56052770199, - "reused_in_bytes": 0, - "total_in_bytes": 56052770199 - }, - "source_throttle_time_in_millis": 52694, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3734911 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900016, - "stop_time_in_millis": 1570046638280, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 3738264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78374184, - "total_time_in_millis": 2824 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56316467200, - "reused_in_bytes": 0, - "total_in_bytes": 56316467200 - }, - "source_throttle_time_in_millis": 64651, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 2076621 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570044979584, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2079569, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78391568, - "total_time_in_millis": 2432 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56656393303, - "reused_in_bytes": 0, - "total_in_bytes": 56656393303 - }, - "source_throttle_time_in_millis": 67858, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2107884 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900015, - "stop_time_in_millis": 1570045010965, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2110949, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78689690, - "total_time_in_millis": 2486 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56514294289, - "reused_in_bytes": 0, - "total_in_bytes": 56514294289 - }, - "source_throttle_time_in_millis": 69362, - "target_throttle_time_in_millis": 67, - "total_time_in_millis": 2102520 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570042900017, - "stop_time_in_millis": 1570045005049, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2105031, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78770782, - "total_time_in_millis": 2487 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5803 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570046638608, - "stop_time_in_millis": 1570046645361, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6753, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 895 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5056 - }, - "index_name": "om-iu-bro-2019.09.30-001002", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570045169591, - "stop_time_in_millis": 1570045175514, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 5922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 826 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52246191152, - "reused_in_bytes": 0, - "total_in_bytes": 52246191152 - }, - "source_throttle_time_in_millis": 67912, - "target_throttle_time_in_millis": 43, - "total_time_in_millis": 2171513 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096933, - "stop_time_in_millis": 1569500272498, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2175565, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76731619, - "total_time_in_millis": 3532 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51470163557, - "reused_in_bytes": 0, - "total_in_bytes": 51470163557 - }, - "source_throttle_time_in_millis": 92430, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2113876 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096933, - "stop_time_in_millis": 1569500213224, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2116291, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76660486, - "total_time_in_millis": 2399 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50254731704, - "reused_in_bytes": 0, - "total_in_bytes": 50254731704 - }, - "source_throttle_time_in_millis": 170803, - "target_throttle_time_in_millis": 49460, - "total_time_in_millis": 1465651 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569952966094, - "stop_time_in_millis": 1569954432387, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1466293, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74415740, - "total_time_in_millis": 633 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49572735839, - "reused_in_bytes": 0, - "total_in_bytes": 49572735839 - }, - "source_throttle_time_in_millis": 6302, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1556622 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569909972347, - "stop_time_in_millis": 1569911529679, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1557332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74404395, - "total_time_in_millis": 695 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50254731704, - "reused_in_bytes": 0, - "total_in_bytes": 50254731704 - }, - "source_throttle_time_in_millis": 4921346, - "target_throttle_time_in_millis": 1873501, - "total_time_in_millis": 7767074 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569793935327, - "stop_time_in_millis": 1569801703403, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 7768076, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74415740, - "total_time_in_millis": 895 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51528598359, - "reused_in_bytes": 0, - "total_in_bytes": 51528598359 - }, - "source_throttle_time_in_millis": 60613, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2127059 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096935, - "stop_time_in_millis": 1569500227032, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2130096, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76673915, - "total_time_in_millis": 2515 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51350713409, - "reused_in_bytes": 0, - "total_in_bytes": 51350713409 - }, - "source_throttle_time_in_millis": 47277, - "target_throttle_time_in_millis": 145, - "total_time_in_millis": 4043640 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096933, - "stop_time_in_millis": 1569502143039, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 4046105, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76700461, - "total_time_in_millis": 2449 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50199187308, - "reused_in_bytes": 0, - "total_in_bytes": 50199187308 - }, - "source_throttle_time_in_millis": 1111358, - "target_throttle_time_in_millis": 4191279, - "total_time_in_millis": 5910961 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806070986, - "stop_time_in_millis": 1569811983263, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 5912276, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74429567, - "total_time_in_millis": 772 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49572735839, - "reused_in_bytes": 0, - "total_in_bytes": 49572735839 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1216142 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569875454087, - "stop_time_in_millis": 1569876670870, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1216782, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74404395, - "total_time_in_millis": 632 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50164466745, - "reused_in_bytes": 0, - "total_in_bytes": 50164466745 - }, - "source_throttle_time_in_millis": 96586, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 1524140 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918975181, - "stop_time_in_millis": 1569920500022, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1524840, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74420348, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 286, - "reused": 0, - "total": 286 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51422991083, - "reused_in_bytes": 0, - "total_in_bytes": 51422991083 - }, - "source_throttle_time_in_millis": 66133, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2023134 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096936, - "stop_time_in_millis": 1569500122922, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2025986, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76746228, - "total_time_in_millis": 2333 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569500230910, - "stop_time_in_millis": 1569500231701, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 791, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52375409517, - "reused_in_bytes": 0, - "total_in_bytes": 52375409517 - }, - "source_throttle_time_in_millis": 73705, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2248306 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096934, - "stop_time_in_millis": 1569500347949, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2251014, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76876996, - "total_time_in_millis": 2693 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50164466745, - "reused_in_bytes": 0, - "total_in_bytes": 50164466745 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 36779, - "total_time_in_millis": 1439093 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569927047154, - "stop_time_in_millis": 1569928486947, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1439793, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74420348, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49423976267, - "reused_in_bytes": 0, - "total_in_bytes": 49423976267 - }, - "source_throttle_time_in_millis": 4342006, - "target_throttle_time_in_millis": 4266815, - "total_time_in_millis": 8486163 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796114367, - "stop_time_in_millis": 1569804601348, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 8486980, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74361932, - "total_time_in_millis": 787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50273594103, - "reused_in_bytes": 0, - "total_in_bytes": 50273594103 - }, - "source_throttle_time_in_millis": 5300467, - "target_throttle_time_in_millis": 2627790, - "total_time_in_millis": 8485064 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093268, - "stop_time_in_millis": 1569838579061, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 8485793, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74425832, - "total_time_in_millis": 716 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49624856498, - "reused_in_bytes": 0, - "total_in_bytes": 49624856498 - }, - "source_throttle_time_in_millis": 16479, - "target_throttle_time_in_millis": 107, - "total_time_in_millis": 1165035 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962606786, - "stop_time_in_millis": 1569963772440, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1165653, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74414835, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51350713406, - "reused_in_bytes": 0, - "total_in_bytes": 51350713406 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 110, - "total_time_in_millis": 1278771 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569502144938, - "stop_time_in_millis": 1569503426204, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1281265, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76700461, - "total_time_in_millis": 2476 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49693016031, - "reused_in_bytes": 0, - "total_in_bytes": 49693016031 - }, - "source_throttle_time_in_millis": 5331519, - "target_throttle_time_in_millis": 4290809, - "total_time_in_millis": 9566804 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813693274, - "stop_time_in_millis": 1569823261418, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 9568144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74430911, - "total_time_in_millis": 822 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4606 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569500344964, - "stop_time_in_millis": 1569500350421, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5456, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 803 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51676313280, - "reused_in_bytes": 0, - "total_in_bytes": 51676313280 - }, - "source_throttle_time_in_millis": 64239, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2170841 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096935, - "stop_time_in_millis": 1569500270835, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2173900, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76817070, - "total_time_in_millis": 2543 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49411734473, - "reused_in_bytes": 0, - "total_in_bytes": 49411734473 - }, - "source_throttle_time_in_millis": 31856, - "target_throttle_time_in_millis": 93, - "total_time_in_millis": 1227568 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569879861890, - "stop_time_in_millis": 1569881090099, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1228209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74405195, - "total_time_in_millis": 634 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51807557726, - "reused_in_bytes": 0, - "total_in_bytes": 51807557726 - }, - "source_throttle_time_in_millis": 93426, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2247423 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096933, - "stop_time_in_millis": 1569500347468, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2250534, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76829368, - "total_time_in_millis": 2592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51513682085, - "reused_in_bytes": 0, - "total_in_bytes": 51513682085 - }, - "source_throttle_time_in_millis": 49166, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4394766 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096940, - "stop_time_in_millis": 1569502495157, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 4398216, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76772118, - "total_time_in_millis": 2894 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50246012008, - "reused_in_bytes": 0, - "total_in_bytes": 50246012008 - }, - "source_throttle_time_in_millis": 1285571, - "target_throttle_time_in_millis": 5028489, - "total_time_in_millis": 6168256 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569804710388, - "stop_time_in_millis": 1569810879844, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 6169455, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74425065, - "total_time_in_millis": 1164 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50195002268, - "reused_in_bytes": 0, - "total_in_bytes": 50195002268 - }, - "source_throttle_time_in_millis": 400486, - "target_throttle_time_in_millis": 2857000, - "total_time_in_millis": 4112863 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828432767, - "stop_time_in_millis": 1569832546519, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 4113752, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74409211, - "total_time_in_millis": 868 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51725393011, - "reused_in_bytes": 0, - "total_in_bytes": 51725393011 - }, - "source_throttle_time_in_millis": 65784, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2155515 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096934, - "stop_time_in_millis": 1569500254881, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2157947, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76822877, - "total_time_in_millis": 2420 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49610008120, - "reused_in_bytes": 0, - "total_in_bytes": 49610008120 - }, - "source_throttle_time_in_millis": 2299837, - "target_throttle_time_in_millis": 1222494, - "total_time_in_millis": 4548415 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835900517, - "stop_time_in_millis": 1569840449844, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 4549327, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74417961, - "total_time_in_millis": 666 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49624856498, - "reused_in_bytes": 0, - "total_in_bytes": 49624856498 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 394, - "total_time_in_millis": 1204269 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569869798117, - "stop_time_in_millis": 1569871003048, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1204930, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74414835, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51688866133, - "reused_in_bytes": 0, - "total_in_bytes": 51688866133 - }, - "source_throttle_time_in_millis": 67648, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2098830 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096934, - "stop_time_in_millis": 1569500198897, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2101963, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76798904, - "total_time_in_millis": 2608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49620000230, - "reused_in_bytes": 0, - "total_in_bytes": 49620000230 - }, - "source_throttle_time_in_millis": 5706819, - "target_throttle_time_in_millis": 3559464, - "total_time_in_millis": 9418955 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603807, - "stop_time_in_millis": 1569834023538, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9419731, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74399585, - "total_time_in_millis": 760 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49526326894, - "reused_in_bytes": 0, - "total_in_bytes": 49526326894 - }, - "source_throttle_time_in_millis": 4650186, - "target_throttle_time_in_millis": 2476109, - "total_time_in_millis": 8403068 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820545353, - "stop_time_in_millis": 1569828949917, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 8404563, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74424958, - "total_time_in_millis": 1482 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50246012008, - "reused_in_bytes": 0, - "total_in_bytes": 50246012008 - }, - "source_throttle_time_in_millis": 4847579, - "target_throttle_time_in_millis": 6111593, - "total_time_in_millis": 9956127 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756749452, - "stop_time_in_millis": 1569766706321, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 9956869, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74425065, - "total_time_in_millis": 682 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51767005962, - "reused_in_bytes": 0, - "total_in_bytes": 51767005962 - }, - "source_throttle_time_in_millis": 65019, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2163928 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096934, - "stop_time_in_millis": 1569500264115, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2167180, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76759193, - "total_time_in_millis": 2730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51676313280, - "reused_in_bytes": 0, - "total_in_bytes": 51676313280 - }, - "source_throttle_time_in_millis": 66083, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2170844 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569498096934, - "stop_time_in_millis": 1569500272150, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2175216, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76817070, - "total_time_in_millis": 3721 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 49704447318, - "reused_in_bytes": 0, - "total_in_bytes": 49704447318 - }, - "source_throttle_time_in_millis": 58223, - "target_throttle_time_in_millis": 1617007, - "total_time_in_millis": 3084429 - }, - "index_name": "om-iu-bro-2019.09.24-000974", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706902, - "stop_time_in_millis": 1569841792403, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 3085500, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74425529, - "total_time_in_millis": 748 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50536730133, - "reused_in_bytes": 0, - "total_in_bytes": 50536730133 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 239, - "total_time_in_millis": 1140723 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569959051861, - "stop_time_in_millis": 1569960193219, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1141357, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73497835, - "total_time_in_millis": 625 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51296110181, - "reused_in_bytes": 0, - "total_in_bytes": 51296110181 - }, - "source_throttle_time_in_millis": 557142, - "target_throttle_time_in_millis": 59639, - "total_time_in_millis": 1841040 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569932176431, - "stop_time_in_millis": 1569934018109, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 1841677, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73180799, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51902649307, - "reused_in_bytes": 0, - "total_in_bytes": 51902649307 - }, - "source_throttle_time_in_millis": 67563, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 2282118 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892424, - "stop_time_in_millis": 1569517178218, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2285793, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74638605, - "total_time_in_millis": 3000 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51375472283, - "reused_in_bytes": 0, - "total_in_bytes": 51375472283 - }, - "source_throttle_time_in_millis": 82564, - "target_throttle_time_in_millis": 118665, - "total_time_in_millis": 1795068 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569885820444, - "stop_time_in_millis": 1569887616253, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1795808, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73414456, - "total_time_in_millis": 728 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51296110181, - "reused_in_bytes": 0, - "total_in_bytes": 51296110181 - }, - "source_throttle_time_in_millis": 3143873, - "target_throttle_time_in_millis": 1691676, - "total_time_in_millis": 5737128 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792630385, - "stop_time_in_millis": 1569798369115, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 5738730, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73180799, - "total_time_in_millis": 854 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50717679904, - "reused_in_bytes": 0, - "total_in_bytes": 50717679904 - }, - "source_throttle_time_in_millis": 130097, - "target_throttle_time_in_millis": 273, - "total_time_in_millis": 1399694 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974604047, - "stop_time_in_millis": 1569976004427, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1400380, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73465663, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51861608870, - "reused_in_bytes": 0, - "total_in_bytes": 51861608870 - }, - "source_throttle_time_in_millis": 64105, - "target_throttle_time_in_millis": 53, - "total_time_in_millis": 2316802 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892416, - "stop_time_in_millis": 1569517212451, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2320035, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74573231, - "total_time_in_millis": 2596 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51238959499, - "reused_in_bytes": 0, - "total_in_bytes": 51238959499 - }, - "source_throttle_time_in_millis": 5259196, - "target_throttle_time_in_millis": 4620429, - "total_time_in_millis": 10227219 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818871833, - "stop_time_in_millis": 1569829099879, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 10228045, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73207792, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51238959499, - "reused_in_bytes": 0, - "total_in_bytes": 51238959499 - }, - "source_throttle_time_in_millis": 51814, - "target_throttle_time_in_millis": 17358, - "total_time_in_millis": 1325278 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569933923285, - "stop_time_in_millis": 1569935249222, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1325936, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73207792, - "total_time_in_millis": 649 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51802763187, - "reused_in_bytes": 0, - "total_in_bytes": 51802763187 - }, - "source_throttle_time_in_millis": 61682, - "target_throttle_time_in_millis": 80, - "total_time_in_millis": 2633119 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892399, - "stop_time_in_millis": 1569517528284, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2635885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74681633, - "total_time_in_millis": 2711 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52425649607, - "reused_in_bytes": 0, - "total_in_bytes": 52425649607 - }, - "source_throttle_time_in_millis": 70352, - "target_throttle_time_in_millis": 63, - "total_time_in_millis": 2424260 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892405, - "stop_time_in_millis": 1569517320653, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2428248, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74445273, - "total_time_in_millis": 2608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50763119826, - "reused_in_bytes": 0, - "total_in_bytes": 50763119826 - }, - "source_throttle_time_in_millis": 1455542, - "target_throttle_time_in_millis": 4248182, - "total_time_in_millis": 6154390 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778882402, - "stop_time_in_millis": 1569785037614, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6155211, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73425237, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52566916483, - "reused_in_bytes": 0, - "total_in_bytes": 52566916483 - }, - "source_throttle_time_in_millis": 66937, - "target_throttle_time_in_millis": 83, - "total_time_in_millis": 2500306 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892409, - "stop_time_in_millis": 1569517395890, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2503480, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74348273, - "total_time_in_millis": 2607 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50210305612, - "reused_in_bytes": 0, - "total_in_bytes": 50210305612 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 264613, - "total_time_in_millis": 1430110 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569957957744, - "stop_time_in_millis": 1569959388528, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1430784, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73162425, - "total_time_in_millis": 663 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50726417970, - "reused_in_bytes": 0, - "total_in_bytes": 50726417970 - }, - "source_throttle_time_in_millis": 5862575, - "target_throttle_time_in_millis": 3579067, - "total_time_in_millis": 9859072 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569816569551, - "stop_time_in_millis": 1569826429456, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 9859905, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73380672, - "total_time_in_millis": 799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51811543524, - "reused_in_bytes": 0, - "total_in_bytes": 51811543524 - }, - "source_throttle_time_in_millis": 60825, - "target_throttle_time_in_millis": 48, - "total_time_in_millis": 2278320 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892465, - "stop_time_in_millis": 1569517174036, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2281570, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74637627, - "total_time_in_millis": 2573 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51375472283, - "reused_in_bytes": 0, - "total_in_bytes": 51375472283 - }, - "source_throttle_time_in_millis": 45172, - "target_throttle_time_in_millis": 180288, - "total_time_in_millis": 1604582 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940208231, - "stop_time_in_millis": 1569941813461, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1605230, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73414456, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51811543524, - "reused_in_bytes": 0, - "total_in_bytes": 51811543524 - }, - "source_throttle_time_in_millis": 62629, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2278893 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892426, - "stop_time_in_millis": 1569517173978, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2281552, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74637627, - "total_time_in_millis": 2524 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51780569482, - "reused_in_bytes": 0, - "total_in_bytes": 51780569482 - }, - "source_throttle_time_in_millis": 89476, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2539884 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892415, - "stop_time_in_millis": 1569517434936, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2542521, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74527516, - "total_time_in_millis": 2528 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50831279513, - "reused_in_bytes": 0, - "total_in_bytes": 50831279513 - }, - "source_throttle_time_in_millis": 1972858, - "target_throttle_time_in_millis": 2830131, - "total_time_in_millis": 5733202 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832295359, - "stop_time_in_millis": 1569838029396, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 5734036, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73403841, - "total_time_in_millis": 821 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50083921603, - "reused_in_bytes": 0, - "total_in_bytes": 50083921603 - }, - "source_throttle_time_in_millis": 1027043, - "target_throttle_time_in_millis": 1881453, - "total_time_in_millis": 3958500 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093251, - "stop_time_in_millis": 1569834052565, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 3959313, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72874086, - "total_time_in_millis": 804 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50717679904, - "reused_in_bytes": 0, - "total_in_bytes": 50717679904 - }, - "source_throttle_time_in_millis": 118387, - "target_throttle_time_in_millis": 71, - "total_time_in_millis": 1373561 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948619480, - "stop_time_in_millis": 1569949993672, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1374191, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73465663, - "total_time_in_millis": 619 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4814 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569517395956, - "stop_time_in_millis": 1569517401663, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 5707, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 847 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50660656264, - "reused_in_bytes": 0, - "total_in_bytes": 50660656264 - }, - "source_throttle_time_in_millis": 2924852, - "target_throttle_time_in_millis": 2489778, - "total_time_in_millis": 7026263 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820027489, - "stop_time_in_millis": 1569827054691, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 7027202, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73394764, - "total_time_in_millis": 929 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50669018412, - "reused_in_bytes": 0, - "total_in_bytes": 50669018412 - }, - "source_throttle_time_in_millis": 36642, - "target_throttle_time_in_millis": 5084530, - "total_time_in_millis": 5213507 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435675, - "stop_time_in_millis": 1569848649888, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5214212, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73512868, - "total_time_in_millis": 695 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51994012945, - "reused_in_bytes": 0, - "total_in_bytes": 51994012945 - }, - "source_throttle_time_in_millis": 62196, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2436287 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892420, - "stop_time_in_millis": 1569517331448, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2439028, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74616770, - "total_time_in_millis": 2603 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50742283125, - "reused_in_bytes": 0, - "total_in_bytes": 50742283125 - }, - "source_throttle_time_in_millis": 5245041, - "target_throttle_time_in_millis": 4023213, - "total_time_in_millis": 9094469 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818139960, - "stop_time_in_millis": 1569827235339, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 9095379, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73488032, - "total_time_in_millis": 892 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50726417970, - "reused_in_bytes": 0, - "total_in_bytes": 50726417970 - }, - "source_throttle_time_in_millis": 164275, - "target_throttle_time_in_millis": 34772, - "total_time_in_millis": 1366707 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569882761313, - "stop_time_in_millis": 1569884128668, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1367355, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73380672, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51283962076, - "reused_in_bytes": 0, - "total_in_bytes": 51283962076 - }, - "source_throttle_time_in_millis": 50900, - "target_throttle_time_in_millis": 112, - "total_time_in_millis": 3976499 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892413, - "stop_time_in_millis": 1569518871806, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 3979392, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74265446, - "total_time_in_millis": 2784 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51887830071, - "reused_in_bytes": 0, - "total_in_bytes": 51887830071 - }, - "source_throttle_time_in_millis": 2, - "target_throttle_time_in_millis": 76, - "total_time_in_millis": 1210806 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569517194119, - "stop_time_in_millis": 1569518407462, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1213342, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74575226, - "total_time_in_millis": 2521 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52599855744, - "reused_in_bytes": 0, - "total_in_bytes": 52599855744 - }, - "source_throttle_time_in_millis": 65061, - "target_throttle_time_in_millis": 20, - "total_time_in_millis": 2394234 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569514892413, - "stop_time_in_millis": 1569517289502, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2397088, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74483760, - "total_time_in_millis": 2782 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51423696221, - "reused_in_bytes": 0, - "total_in_bytes": 51423696221 - }, - "source_throttle_time_in_millis": 315941, - "target_throttle_time_in_millis": 28070, - "total_time_in_millis": 1622811 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569969998380, - "stop_time_in_millis": 1569971621766, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1623385, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73345804, - "total_time_in_millis": 564 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50083921603, - "reused_in_bytes": 0, - "total_in_bytes": 50083921603 - }, - "source_throttle_time_in_millis": 4668048, - "target_throttle_time_in_millis": 3328092, - "total_time_in_millis": 8331666 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732120, - "stop_time_in_millis": 1569844065016, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8332896, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72874086, - "total_time_in_millis": 711 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50712827014, - "reused_in_bytes": 0, - "total_in_bytes": 50712827014 - }, - "source_throttle_time_in_millis": 4760338, - "target_throttle_time_in_millis": 3626574, - "total_time_in_millis": 8629401 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824604652, - "stop_time_in_millis": 1569833234853, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 8630201, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73425573, - "total_time_in_millis": 790 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4184 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569517142572, - "stop_time_in_millis": 1569517147683, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 5111, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 869 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51274723967, - "reused_in_bytes": 0, - "total_in_bytes": 51274723967 - }, - "source_throttle_time_in_millis": 111945, - "target_throttle_time_in_millis": 21676, - "total_time_in_millis": 1548276 - }, - "index_name": "om-iu-bro-2019.09.24-000975", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569970760321, - "stop_time_in_millis": 1569972309283, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1548962, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73306415, - "total_time_in_millis": 668 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55307629991, - "reused_in_bytes": 0, - "total_in_bytes": 55307629991 - }, - "source_throttle_time_in_millis": 51518, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 4088143 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570064389591, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 4090578, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77212801, - "total_time_in_millis": 2418 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55958166568, - "reused_in_bytes": 0, - "total_in_bytes": 55958166568 - }, - "source_throttle_time_in_millis": 97657, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2298735 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062600834, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2301821, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77507020, - "total_time_in_millis": 2562 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 262, - "reused": 0, - "total": 262 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55846137978, - "reused_in_bytes": 0, - "total_in_bytes": 55846137978 - }, - "source_throttle_time_in_millis": 66957, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2203122 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062504866, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 2205852, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77558790, - "total_time_in_millis": 2170 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56720705869, - "reused_in_bytes": 0, - "total_in_bytes": 56720705869 - }, - "source_throttle_time_in_millis": 77010, - "target_throttle_time_in_millis": 40, - "total_time_in_millis": 2915268 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299021, - "stop_time_in_millis": 1570063217394, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2918373, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77436600, - "total_time_in_millis": 3088 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5746 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062652721, - "stop_time_in_millis": 1570062659412, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 6691, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 892 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4952 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062508075, - "stop_time_in_millis": 1570062515750, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 7674, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2676 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55830117457, - "reused_in_bytes": 0, - "total_in_bytes": 55830117457 - }, - "source_throttle_time_in_millis": 71051, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2297789 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062599187, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2300173, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77548406, - "total_time_in_millis": 2375 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56698115915, - "reused_in_bytes": 0, - "total_in_bytes": 56698115915 - }, - "source_throttle_time_in_millis": 69878, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2381587 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299014, - "stop_time_in_millis": 1570062683722, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2384708, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77356671, - "total_time_in_millis": 2588 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55966269439, - "reused_in_bytes": 0, - "total_in_bytes": 55966269439 - }, - "source_throttle_time_in_millis": 89313, - "target_throttle_time_in_millis": 161, - "total_time_in_millis": 2482187 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299018, - "stop_time_in_millis": 1570062784205, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2485187, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77456881, - "total_time_in_millis": 2458 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55958166565, - "reused_in_bytes": 0, - "total_in_bytes": 55958166565 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 61, - "total_time_in_millis": 1606079 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062608304, - "stop_time_in_millis": 1570064217375, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1609071, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77507020, - "total_time_in_millis": 2975 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56774433899, - "reused_in_bytes": 0, - "total_in_bytes": 56774433899 - }, - "source_throttle_time_in_millis": 72604, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2365313 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062667485, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2368472, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77642170, - "total_time_in_millis": 2630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5573 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062629296, - "stop_time_in_millis": 1570062635869, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 6572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 949 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6111 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062667538, - "stop_time_in_millis": 1570062674660, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 7121, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 937 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56554518172, - "reused_in_bytes": 0, - "total_in_bytes": 56554518172 - }, - "source_throttle_time_in_millis": 74030, - "target_throttle_time_in_millis": 112, - "total_time_in_millis": 2387892 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299012, - "stop_time_in_millis": 1570062690143, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 2391130, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77293180, - "total_time_in_millis": 2697 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56680585092, - "reused_in_bytes": 0, - "total_in_bytes": 56680585092 - }, - "source_throttle_time_in_millis": 72168, - "target_throttle_time_in_millis": 61, - "total_time_in_millis": 2350414 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062652688, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2353674, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77554142, - "total_time_in_millis": 2740 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5238 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062504904, - "stop_time_in_millis": 1570062510988, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 6083, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5179 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570064632276, - "stop_time_in_millis": 1570064638360, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 6084, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 834 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5658 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062611128, - "stop_time_in_millis": 1570062617652, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 6523, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 821 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5699 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062625727, - "stop_time_in_millis": 1570062632343, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 6615, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 866 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56733432959, - "reused_in_bytes": 0, - "total_in_bytes": 56733432959 - }, - "source_throttle_time_in_millis": 101959, - "target_throttle_time_in_millis": 31, - "total_time_in_millis": 2479398 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299014, - "stop_time_in_millis": 1570062781440, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2482425, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77547179, - "total_time_in_millis": 2508 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55750099283, - "reused_in_bytes": 0, - "total_in_bytes": 55750099283 - }, - "source_throttle_time_in_millis": 69062, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2270157 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062571469, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2272455, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77435125, - "total_time_in_millis": 2287 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56720705869, - "reused_in_bytes": 0, - "total_in_bytes": 56720705869 - }, - "source_throttle_time_in_millis": 98040, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2502399 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299017, - "stop_time_in_millis": 1570062803928, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2504911, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77436600, - "total_time_in_millis": 2496 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55307629991, - "reused_in_bytes": 0, - "total_in_bytes": 55307629991 - }, - "source_throttle_time_in_millis": 49993, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 4304819 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570064606755, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 4307741, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77212801, - "total_time_in_millis": 2399 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56733432959, - "reused_in_bytes": 0, - "total_in_bytes": 56733432959 - }, - "source_throttle_time_in_millis": 68131, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2792230 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299024, - "stop_time_in_millis": 1570063094185, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2795160, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77547179, - "total_time_in_millis": 2906 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56225125623, - "reused_in_bytes": 0, - "total_in_bytes": 56225125623 - }, - "source_throttle_time_in_millis": 68863, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2323676 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299012, - "stop_time_in_millis": 1570062625962, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2326949, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77674801, - "total_time_in_millis": 2753 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55785406364, - "reused_in_bytes": 0, - "total_in_bytes": 55785406364 - }, - "source_throttle_time_in_millis": 67189, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2204154 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062506369, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2207356, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77719590, - "total_time_in_millis": 2683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55856171557, - "reused_in_bytes": 0, - "total_in_bytes": 55856171557 - }, - "source_throttle_time_in_millis": 79730, - "target_throttle_time_in_millis": 174, - "total_time_in_millis": 2437259 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062739155, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2440141, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77412490, - "total_time_in_millis": 2340 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55856171557, - "reused_in_bytes": 0, - "total_in_bytes": 55856171557 - }, - "source_throttle_time_in_millis": 91330, - "target_throttle_time_in_millis": 37, - "total_time_in_millis": 2437267 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299012, - "stop_time_in_millis": 1570062739269, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2440256, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77412490, - "total_time_in_millis": 2459 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55237262296, - "reused_in_bytes": 0, - "total_in_bytes": 55237262296 - }, - "source_throttle_time_in_millis": 55887, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 4329882 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299015, - "stop_time_in_millis": 1570064632165, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 4333150, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76827364, - "total_time_in_millis": 2713 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55750099283, - "reused_in_bytes": 0, - "total_in_bytes": 55750099283 - }, - "source_throttle_time_in_millis": 71135, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2269648 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062571504, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2272490, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77435125, - "total_time_in_millis": 2324 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55858586061, - "reused_in_bytes": 0, - "total_in_bytes": 55858586061 - }, - "source_throttle_time_in_millis": 69824, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2308240 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299012, - "stop_time_in_millis": 1570062609533, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2310520, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77334458, - "total_time_in_millis": 2269 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 325, - "reused": 0, - "total": 325 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55910401242, - "reused_in_bytes": 0, - "total_in_bytes": 55910401242 - }, - "source_throttle_time_in_millis": 70133, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2323688 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299012, - "stop_time_in_millis": 1570062625696, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2326683, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77532949, - "total_time_in_millis": 2431 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4446 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062784664, - "stop_time_in_millis": 1570062789951, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 5287, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 795 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56554518172, - "reused_in_bytes": 0, - "total_in_bytes": 56554518172 - }, - "source_throttle_time_in_millis": 72645, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2388408 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299013, - "stop_time_in_millis": 1570062689981, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2390968, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77293180, - "total_time_in_millis": 2546 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55830117457, - "reused_in_bytes": 0, - "total_in_bytes": 55830117457 - }, - "source_throttle_time_in_millis": 70309, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2297785 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060299014, - "stop_time_in_millis": 1570062599441, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2300426, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77548406, - "total_time_in_millis": 2629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5470 - }, - "index_name": "om-iu-bro-2019.09.30-001003", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570062685894, - "stop_time_in_millis": 1570062692219, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 6325, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 807 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 106, - "reused": 0, - "total": 106 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 951434946, - "reused_in_bytes": 0, - "total_in_bytes": 951434946 - }, - "source_throttle_time_in_millis": 2338, - "target_throttle_time_in_millis": 110977, - "total_time_in_millis": 144540 - }, - "index_name": "om-iu-suricata-2019.09.16-000105", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568898725080, - "stop_time_in_millis": 1568898874090, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 149009, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 267860, - "total_time_in_millis": 2106 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 953196903, - "reused_in_bytes": 0, - "total_in_bytes": 953196903 - }, - "source_throttle_time_in_millis": 8904, - "target_throttle_time_in_millis": 101404, - "total_time_in_millis": 116668 - }, - "index_name": "om-iu-suricata-2019.09.16-000105", - "primary": true, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677524, - "stop_time_in_millis": 1569826794249, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 116725, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 269732, - "total_time_in_millis": 45 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 945711431, - "reused_in_bytes": 0, - "total_in_bytes": 945711431 - }, - "source_throttle_time_in_millis": 39859, - "target_throttle_time_in_millis": 78633, - "total_time_in_millis": 124799 - }, - "index_name": "om-iu-suricata-2019.09.16-000105", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569785787526, - "stop_time_in_millis": 1569785912374, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 124847, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 267860, - "total_time_in_millis": 39 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 953196903, - "reused_in_bytes": 0, - "total_in_bytes": 953196903 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 27000 - }, - "index_name": "om-iu-suricata-2019.09.16-000105", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978746067, - "stop_time_in_millis": 1569978773109, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 27042, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 269732, - "total_time_in_millis": 33 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".reporting-2019.04.28", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481077777, - "stop_time_in_millis": 1566481078069, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 291, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 210 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": ".reporting-2019.04.28", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568306928344, - "stop_time_in_millis": 1568306928445, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 101, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 69 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52917594219, - "reused_in_bytes": 0, - "total_in_bytes": 52917594219 - }, - "source_throttle_time_in_millis": 2505050, - "target_throttle_time_in_millis": 4631174, - "total_time_in_millis": 7303001 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320064, - "stop_time_in_millis": 1569839623869, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 7303805, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74812759, - "total_time_in_millis": 783 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5421 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569536343619, - "stop_time_in_millis": 1569536349948, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 6329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 866 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52449367015, - "reused_in_bytes": 0, - "total_in_bytes": 52449367015 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 425, - "total_time_in_millis": 1239588 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978345916, - "stop_time_in_millis": 1569979586210, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1240293, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74902414, - "total_time_in_millis": 697 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52312952828, - "reused_in_bytes": 0, - "total_in_bytes": 52312952828 - }, - "source_throttle_time_in_millis": 52424, - "target_throttle_time_in_millis": 24191, - "total_time_in_millis": 1654107 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896811452, - "stop_time_in_millis": 1569898466327, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1654874, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74927031, - "total_time_in_millis": 755 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 256, - "reused": 0, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53804671833, - "reused_in_bytes": 0, - "total_in_bytes": 53804671833 - }, - "source_throttle_time_in_millis": 66131, - "target_throttle_time_in_millis": 60, - "total_time_in_millis": 2193093 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107371, - "stop_time_in_millis": 1569536303128, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2195757, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76712375, - "total_time_in_millis": 2135 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52975980020, - "reused_in_bytes": 0, - "total_in_bytes": 52975980020 - }, - "source_throttle_time_in_millis": 3640335, - "target_throttle_time_in_millis": 4108361, - "total_time_in_millis": 7883460 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781406242, - "stop_time_in_millis": 1569789290793, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 7884551, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74888796, - "total_time_in_millis": 1071 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 45414595641, - "reused_in_bytes": 0, - "total_in_bytes": 45414595641 - }, - "source_throttle_time_in_millis": 5613504, - "target_throttle_time_in_millis": 3350901, - "total_time_in_millis": 9230722 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781406243, - "stop_time_in_millis": 1569790637734, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9231491, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 65374530, - "total_time_in_millis": 749 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54034320866, - "reused_in_bytes": 0, - "total_in_bytes": 54034320866 - }, - "source_throttle_time_in_millis": 67805, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2160938 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107369, - "stop_time_in_millis": 1569536271009, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2163639, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77139399, - "total_time_in_millis": 2166 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52917594219, - "reused_in_bytes": 0, - "total_in_bytes": 52917594219 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 739, - "total_time_in_millis": 1269860 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569928005927, - "stop_time_in_millis": 1569929276469, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 1270542, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74812759, - "total_time_in_millis": 672 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 337, - "reused": 0, - "total": 337 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54953377255, - "reused_in_bytes": 0, - "total_in_bytes": 54953377255 - }, - "source_throttle_time_in_millis": 67690, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2813096 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107380, - "stop_time_in_millis": 1569536924265, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 2816884, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76996618, - "total_time_in_millis": 2740 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52927163797, - "reused_in_bytes": 0, - "total_in_bytes": 52927163797 - }, - "source_throttle_time_in_millis": 7760949, - "target_throttle_time_in_millis": 35302, - "total_time_in_millis": 9262575 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756263581, - "stop_time_in_millis": 1569765526852, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 9263270, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74686521, - "total_time_in_millis": 681 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 256, - "reused": 0, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53392839961, - "reused_in_bytes": 0, - "total_in_bytes": 53392839961 - }, - "source_throttle_time_in_millis": 50842, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4027612 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107369, - "stop_time_in_millis": 1569538137300, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 4029931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76373696, - "total_time_in_millis": 1796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52239373267, - "reused_in_bytes": 0, - "total_in_bytes": 52239373267 - }, - "source_throttle_time_in_millis": 3816397, - "target_throttle_time_in_millis": 4711297, - "total_time_in_millis": 8369429 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810992001, - "stop_time_in_millis": 1569819362492, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 8370490, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74919142, - "total_time_in_millis": 870 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52868759581, - "reused_in_bytes": 0, - "total_in_bytes": 52868759581 - }, - "source_throttle_time_in_millis": 4987510, - "target_throttle_time_in_millis": 6337657, - "total_time_in_millis": 10261266 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569809572886, - "stop_time_in_millis": 1569819834995, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 10262109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74816008, - "total_time_in_millis": 818 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 45414595641, - "reused_in_bytes": 0, - "total_in_bytes": 45414595641 - }, - "source_throttle_time_in_millis": 3909336, - "target_throttle_time_in_millis": 5007905, - "total_time_in_millis": 8765727 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772441730, - "stop_time_in_millis": 1569781208376, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 8766646, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 65374530, - "total_time_in_millis": 877 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54116326449, - "reused_in_bytes": 0, - "total_in_bytes": 54116326449 - }, - "source_throttle_time_in_millis": 67682, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2225763 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107370, - "stop_time_in_millis": 1569536335759, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2228389, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76897535, - "total_time_in_millis": 2079 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52856825579, - "reused_in_bytes": 0, - "total_in_bytes": 52856825579 - }, - "source_throttle_time_in_millis": 26055, - "target_throttle_time_in_millis": 185049, - "total_time_in_millis": 1572422 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569972293568, - "stop_time_in_millis": 1569973866687, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 1573119, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74822792, - "total_time_in_millis": 675 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54169651422, - "reused_in_bytes": 0, - "total_in_bytes": 54169651422 - }, - "source_throttle_time_in_millis": 65304, - "target_throttle_time_in_millis": 81, - "total_time_in_millis": 2233442 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107368, - "stop_time_in_millis": 1569536343581, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2236212, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77085261, - "total_time_in_millis": 2254 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4477 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569536459245, - "stop_time_in_millis": 1569536464555, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 5309, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 754 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 256, - "reused": 0, - "total": 256 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53392839961, - "reused_in_bytes": 0, - "total_in_bytes": 53392839961 - }, - "source_throttle_time_in_millis": 51201, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4028106 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107370, - "stop_time_in_millis": 1569538137286, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 4029916, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76373696, - "total_time_in_millis": 1725 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54714197752, - "reused_in_bytes": 0, - "total_in_bytes": 54714197752 - }, - "source_throttle_time_in_millis": 67939, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2273881 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107370, - "stop_time_in_millis": 1569536383383, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2276013, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76906338, - "total_time_in_millis": 2115 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52083154814, - "reused_in_bytes": 0, - "total_in_bytes": 52083154814 - }, - "source_throttle_time_in_millis": 24474, - "target_throttle_time_in_millis": 206124, - "total_time_in_millis": 1472029 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569923165372, - "stop_time_in_millis": 1569924638031, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1472659, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74906376, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54098762990, - "reused_in_bytes": 0, - "total_in_bytes": 54098762990 - }, - "source_throttle_time_in_millis": 92234, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2335627 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107370, - "stop_time_in_millis": 1569536445915, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2338544, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76909340, - "total_time_in_millis": 2386 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52273573475, - "reused_in_bytes": 0, - "total_in_bytes": 52273573475 - }, - "source_throttle_time_in_millis": 492005, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2208008 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569918624650, - "stop_time_in_millis": 1569920833324, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2208673, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74795256, - "total_time_in_millis": 655 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51728606652, - "reused_in_bytes": 0, - "total_in_bytes": 51728606652 - }, - "source_throttle_time_in_millis": 52395, - "target_throttle_time_in_millis": 334172, - "total_time_in_millis": 1766830 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569924150710, - "stop_time_in_millis": 1569925918264, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1767553, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74770179, - "total_time_in_millis": 714 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52312952828, - "reused_in_bytes": 0, - "total_in_bytes": 52312952828 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 1332728 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569962789897, - "stop_time_in_millis": 1569964123330, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1333433, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74927031, - "total_time_in_millis": 694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 271, - "reused": 0, - "total": 271 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54201000638, - "reused_in_bytes": 0, - "total_in_bytes": 54201000638 - }, - "source_throttle_time_in_millis": 18836, - "target_throttle_time_in_millis": 166, - "total_time_in_millis": 2314888 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107370, - "stop_time_in_millis": 1569536424610, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2317239, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77001190, - "total_time_in_millis": 2334 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54827266281, - "reused_in_bytes": 0, - "total_in_bytes": 54827266281 - }, - "source_throttle_time_in_millis": 70322, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2309173 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107369, - "stop_time_in_millis": 1569536419500, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2312130, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77018346, - "total_time_in_millis": 2433 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54466226936, - "reused_in_bytes": 0, - "total_in_bytes": 54466226936 - }, - "source_throttle_time_in_millis": 65193, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2295977 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107369, - "stop_time_in_millis": 1569536406534, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2299165, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77163679, - "total_time_in_millis": 2655 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51728606652, - "reused_in_bytes": 0, - "total_in_bytes": 51728606652 - }, - "source_throttle_time_in_millis": 11194, - "target_throttle_time_in_millis": 263709, - "total_time_in_millis": 1399102 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940529500, - "stop_time_in_millis": 1569941929239, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1399739, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74770179, - "total_time_in_millis": 629 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52211309122, - "reused_in_bytes": 0, - "total_in_bytes": 52211309122 - }, - "source_throttle_time_in_millis": 5204310, - "target_throttle_time_in_millis": 3686311, - "total_time_in_millis": 9333518 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824932537, - "stop_time_in_millis": 1569834266909, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 9334371, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74821257, - "total_time_in_millis": 822 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52239373267, - "reused_in_bytes": 0, - "total_in_bytes": 52239373267 - }, - "source_throttle_time_in_millis": 4957845, - "target_throttle_time_in_millis": 2796737, - "total_time_in_millis": 8848876 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819362542, - "stop_time_in_millis": 1569828212732, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 8850190, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74919142, - "total_time_in_millis": 760 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52358995637, - "reused_in_bytes": 0, - "total_in_bytes": 52358995637 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 1163949 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569968840967, - "stop_time_in_millis": 1569970005529, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1164561, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74915895, - "total_time_in_millis": 602 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54978287038, - "reused_in_bytes": 0, - "total_in_bytes": 54978287038 - }, - "source_throttle_time_in_millis": 67801, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2363212 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569534107372, - "stop_time_in_millis": 1569536473328, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2365956, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77157084, - "total_time_in_millis": 2730 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52998845792, - "reused_in_bytes": 0, - "total_in_bytes": 52998845792 - }, - "source_throttle_time_in_millis": 6203759, - "target_throttle_time_in_millis": 2666639, - "total_time_in_millis": 9826090 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826677471, - "stop_time_in_millis": 1569836505117, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 9827646, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74812724, - "total_time_in_millis": 1019 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52235333520, - "reused_in_bytes": 0, - "total_in_bytes": 52235333520 - }, - "source_throttle_time_in_millis": 1113573, - "target_throttle_time_in_millis": 1530030, - "total_time_in_millis": 4066196 - }, - "index_name": "om-iu-bro-2019.09.24-000976", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838707236, - "stop_time_in_millis": 1569842774259, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 4067023, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74906454, - "total_time_in_millis": 820 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56446484192, - "reused_in_bytes": 0, - "total_in_bytes": 56446484192 - }, - "source_throttle_time_in_millis": 55360, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 4130800 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915674, - "stop_time_in_millis": 1570083049774, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 4134099, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77780902, - "total_time_in_millis": 2731 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58033803472, - "reused_in_bytes": 0, - "total_in_bytes": 58033803472 - }, - "source_throttle_time_in_millis": 69572, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2361165 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081280245, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2364570, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78405220, - "total_time_in_millis": 2883 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5713 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081313157, - "stop_time_in_millis": 1570081319792, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 6634, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56908131669, - "reused_in_bytes": 0, - "total_in_bytes": 56908131669 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 147, - "total_time_in_millis": 1598640 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081272773, - "stop_time_in_millis": 1570082874210, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1601436, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78071921, - "total_time_in_millis": 2778 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56021745839, - "reused_in_bytes": 0, - "total_in_bytes": 56021745839 - }, - "source_throttle_time_in_millis": 54052, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4059296 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570082977580, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 4061904, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77045340, - "total_time_in_millis": 2595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56949275162, - "reused_in_bytes": 0, - "total_in_bytes": 56949275162 - }, - "source_throttle_time_in_millis": 69639, - "target_throttle_time_in_millis": 93, - "total_time_in_millis": 2201052 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915708, - "stop_time_in_millis": 1570081119872, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2204164, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78238830, - "total_time_in_millis": 2595 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5347 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081119916, - "stop_time_in_millis": 1570081126189, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 6272, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 881 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57164279516, - "reused_in_bytes": 0, - "total_in_bytes": 57164279516 - }, - "source_throttle_time_in_millis": 75571, - "target_throttle_time_in_millis": 66, - "total_time_in_millis": 2393118 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081313053, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 2397377, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77997269, - "total_time_in_millis": 2667 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 349, - "reused": 0, - "total": 349 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57892032891, - "reused_in_bytes": 0, - "total_in_bytes": 57892032891 - }, - "source_throttle_time_in_millis": 102054, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2425922 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081345021, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2429346, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78155146, - "total_time_in_millis": 2896 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 349, - "reused": 0, - "total": 349 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57892032888, - "reused_in_bytes": 0, - "total_in_bytes": 57892032888 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 148, - "total_time_in_millis": 1631271 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081350606, - "stop_time_in_millis": 1570082984826, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1634219, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78155146, - "total_time_in_millis": 2921 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56967224834, - "reused_in_bytes": 0, - "total_in_bytes": 56967224834 - }, - "source_throttle_time_in_millis": 70413, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2240812 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915676, - "stop_time_in_millis": 1570081159659, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2243983, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78065894, - "total_time_in_millis": 2647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081554955, - "stop_time_in_millis": 1570081555877, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 921, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5128 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081257280, - "stop_time_in_millis": 1570081263456, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 6175, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 998 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5198 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081195637, - "stop_time_in_millis": 1570081201757, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 6120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 874 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5596 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081440083, - "stop_time_in_millis": 1570081446581, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6497, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 858 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 298, - "reused": 0, - "total": 298 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56908131672, - "reused_in_bytes": 0, - "total_in_bytes": 56908131672 - }, - "source_throttle_time_in_millis": 97500, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2348467 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081267213, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2351537, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78071921, - "total_time_in_millis": 2543 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57063391777, - "reused_in_bytes": 0, - "total_in_bytes": 57063391777 - }, - "source_throttle_time_in_millis": 73470, - "target_throttle_time_in_millis": 41, - "total_time_in_millis": 2431178 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081349557, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2433882, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78109570, - "total_time_in_millis": 2694 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57874282141, - "reused_in_bytes": 0, - "total_in_bytes": 57874282141 - }, - "source_throttle_time_in_millis": 97000, - "target_throttle_time_in_millis": 55, - "total_time_in_millis": 2635836 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081554923, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2639248, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78001650, - "total_time_in_millis": 2866 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 268, - "reused": 0, - "total": 268 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57149436915, - "reused_in_bytes": 0, - "total_in_bytes": 57149436915 - }, - "source_throttle_time_in_millis": 85604, - "target_throttle_time_in_millis": 66, - "total_time_in_millis": 2521309 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081440004, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2524329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78184158, - "total_time_in_millis": 2496 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56446484192, - "reused_in_bytes": 0, - "total_in_bytes": 56446484192 - }, - "source_throttle_time_in_millis": 55573, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4131331 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915677, - "stop_time_in_millis": 1570083049562, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 4133885, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77780902, - "total_time_in_millis": 2541 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57948166337, - "reused_in_bytes": 0, - "total_in_bytes": 57948166337 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 65, - "total_time_in_millis": 1346615 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081392455, - "stop_time_in_millis": 1570082741612, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1349157, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78133178, - "total_time_in_millis": 2533 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58131045013, - "reused_in_bytes": 0, - "total_in_bytes": 58131045013 - }, - "source_throttle_time_in_millis": 105295, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2458074 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915677, - "stop_time_in_millis": 1570081376530, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2460852, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78392928, - "total_time_in_millis": 2766 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57135613230, - "reused_in_bytes": 0, - "total_in_bytes": 57135613230 - }, - "source_throttle_time_in_millis": 71328, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2348288 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915674, - "stop_time_in_millis": 1570081267250, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 2351575, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78114013, - "total_time_in_millis": 2563 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58131045013, - "reused_in_bytes": 0, - "total_in_bytes": 58131045013 - }, - "source_throttle_time_in_millis": 70637, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2798503 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915683, - "stop_time_in_millis": 1570081717344, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2801661, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78392928, - "total_time_in_millis": 3143 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57948166340, - "reused_in_bytes": 0, - "total_in_bytes": 57948166340 - }, - "source_throttle_time_in_millis": 78773, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2465041 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915674, - "stop_time_in_millis": 1570081384262, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2468587, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78133178, - "total_time_in_millis": 2990 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56021745839, - "reused_in_bytes": 0, - "total_in_bytes": 56021745839 - }, - "source_throttle_time_in_millis": 53140, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 4485898 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570083404803, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 4489127, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77045340, - "total_time_in_millis": 2708 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57320547250, - "reused_in_bytes": 0, - "total_in_bytes": 57320547250 - }, - "source_throttle_time_in_millis": 73162, - "target_throttle_time_in_millis": 84, - "total_time_in_millis": 2338277 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081257247, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2341572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78395717, - "total_time_in_millis": 2765 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58285428222, - "reused_in_bytes": 0, - "total_in_bytes": 58285428222 - }, - "source_throttle_time_in_millis": 76524, - "target_throttle_time_in_millis": 44, - "total_time_in_millis": 2449898 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915674, - "stop_time_in_millis": 1570081369047, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2453373, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78393611, - "total_time_in_millis": 2793 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5820 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570081267623, - "stop_time_in_millis": 1570081274369, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 6745, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 884 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57063391777, - "reused_in_bytes": 0, - "total_in_bytes": 57063391777 - }, - "source_throttle_time_in_millis": 73349, - "target_throttle_time_in_millis": 56, - "total_time_in_millis": 2431140 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915714, - "stop_time_in_millis": 1570081349607, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2433893, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78109570, - "total_time_in_millis": 2741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57135801727, - "reused_in_bytes": 0, - "total_in_bytes": 57135801727 - }, - "source_throttle_time_in_millis": 67594, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 2347448 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915676, - "stop_time_in_millis": 1570081266186, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2350510, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78268718, - "total_time_in_millis": 2540 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 346, - "reused": 0, - "total": 346 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58033803472, - "reused_in_bytes": 0, - "total_in_bytes": 58033803472 - }, - "source_throttle_time_in_millis": 73166, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2361163 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081280301, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2364625, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78405220, - "total_time_in_millis": 2934 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56967224834, - "reused_in_bytes": 0, - "total_in_bytes": 56967224834 - }, - "source_throttle_time_in_millis": 65310, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2241310 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915676, - "stop_time_in_millis": 1570081159580, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2243904, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78065894, - "total_time_in_millis": 2582 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 58285428222, - "reused_in_bytes": 0, - "total_in_bytes": 58285428222 - }, - "source_throttle_time_in_millis": 75707, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2449896 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915680, - "stop_time_in_millis": 1570081368963, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2453283, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78393611, - "total_time_in_millis": 2763 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57135613230, - "reused_in_bytes": 0, - "total_in_bytes": 57135613230 - }, - "source_throttle_time_in_millis": 73049, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2347780 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081267784, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2352109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78114013, - "total_time_in_millis": 3054 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 57135267937, - "reused_in_bytes": 0, - "total_in_bytes": 57135267937 - }, - "source_throttle_time_in_millis": 71067, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2275887 - }, - "index_name": "om-iu-bro-2019.09.30-001004", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078915675, - "stop_time_in_millis": 1570081194625, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 2278950, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 78284409, - "total_time_in_millis": 2544 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55143203060, - "reused_in_bytes": 0, - "total_in_bytes": 55143203060 - }, - "source_throttle_time_in_millis": 63381, - "target_throttle_time_in_millis": 18, - "total_time_in_millis": 2259678 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572336616, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2262395, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76438756, - "total_time_in_millis": 2193 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55802403731, - "reused_in_bytes": 0, - "total_in_bytes": 55802403731 - }, - "source_throttle_time_in_millis": 67619, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2219101 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572295748, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2221528, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76596353, - "total_time_in_millis": 2414 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569572336652, - "stop_time_in_millis": 1569572337473, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 821, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52595763932, - "reused_in_bytes": 0, - "total_in_bytes": 52595763932 - }, - "source_throttle_time_in_millis": 46078, - "target_throttle_time_in_millis": 108677, - "total_time_in_millis": 1540352 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569889488840, - "stop_time_in_millis": 1569891029898, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 1541057, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72840445, - "total_time_in_millis": 673 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 339, - "reused": 0, - "total": 339 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54951293933, - "reused_in_bytes": 0, - "total_in_bytes": 54951293933 - }, - "source_throttle_time_in_millis": 67731, - "target_throttle_time_in_millis": 20, - "total_time_in_millis": 2324463 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572401243, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2327023, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76442660, - "total_time_in_millis": 2547 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51957450908, - "reused_in_bytes": 0, - "total_in_bytes": 51957450908 - }, - "source_throttle_time_in_millis": 1925476, - "target_throttle_time_in_millis": 2977006, - "total_time_in_millis": 5929954 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569800413945, - "stop_time_in_millis": 1569806344742, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 5930796, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72914972, - "total_time_in_millis": 830 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 348, - "reused": 0, - "total": 348 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54985312110, - "reused_in_bytes": 0, - "total_in_bytes": 54985312110 - }, - "source_throttle_time_in_millis": 71017, - "target_throttle_time_in_millis": 14903, - "total_time_in_millis": 2264291 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074225, - "stop_time_in_millis": 1569572341568, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2267342, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76560510, - "total_time_in_millis": 2532 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52553446953, - "reused_in_bytes": 0, - "total_in_bytes": 52553446953 - }, - "source_throttle_time_in_millis": 6465619, - "target_throttle_time_in_millis": 4268269, - "total_time_in_millis": 10641874 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798465386, - "stop_time_in_millis": 1569809108723, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 10643336, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72635502, - "total_time_in_millis": 939 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55656585484, - "reused_in_bytes": 0, - "total_in_bytes": 55656585484 - }, - "source_throttle_time_in_millis": 61139, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2289946 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074221, - "stop_time_in_millis": 1569572367221, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2293000, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76273828, - "total_time_in_millis": 3014 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52600916055, - "reused_in_bytes": 0, - "total_in_bytes": 52600916055 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 93290, - "total_time_in_millis": 1500081 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569885363890, - "stop_time_in_millis": 1569886864631, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1500740, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72746460, - "total_time_in_millis": 648 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 307, - "reused": 0, - "total": 307 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55826335641, - "reused_in_bytes": 0, - "total_in_bytes": 55826335641 - }, - "source_throttle_time_in_millis": 76597, - "target_throttle_time_in_millis": 24483, - "total_time_in_millis": 2362609 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572439697, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 2365477, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76319683, - "total_time_in_millis": 2344 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51969298619, - "reused_in_bytes": 0, - "total_in_bytes": 51969298619 - }, - "source_throttle_time_in_millis": 1933, - "target_throttle_time_in_millis": 200, - "total_time_in_millis": 1264746 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569892240208, - "stop_time_in_millis": 1569893505806, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1265598, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72730642, - "total_time_in_millis": 842 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54848521947, - "reused_in_bytes": 0, - "total_in_bytes": 54848521947 - }, - "source_throttle_time_in_millis": 61256, - "target_throttle_time_in_millis": 52, - "total_time_in_millis": 2192153 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572268973, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 2194752, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76437338, - "total_time_in_millis": 2575 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 321, - "reused": 0, - "total": 321 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54259932307, - "reused_in_bytes": 0, - "total_in_bytes": 54259932307 - }, - "source_throttle_time_in_millis": 51028, - "target_throttle_time_in_millis": 42594, - "total_time_in_millis": 4004797 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074229, - "stop_time_in_millis": 1569574081440, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 4007211, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76019216, - "total_time_in_millis": 2398 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51743688711, - "reused_in_bytes": 0, - "total_in_bytes": 51743688711 - }, - "source_throttle_time_in_millis": 249756, - "target_throttle_time_in_millis": 6573613, - "total_time_in_millis": 6321661 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838706914, - "stop_time_in_millis": 1569845029258, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6322344, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72890789, - "total_time_in_millis": 668 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 324, - "reused": 0, - "total": 324 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55064989994, - "reused_in_bytes": 0, - "total_in_bytes": 55064989994 - }, - "source_throttle_time_in_millis": 75648, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2226934 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572304027, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2229806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76585398, - "total_time_in_millis": 2339 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54997094860, - "reused_in_bytes": 0, - "total_in_bytes": 54997094860 - }, - "source_throttle_time_in_millis": 67834, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2261309 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074221, - "stop_time_in_millis": 1569572337982, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2263760, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76451835, - "total_time_in_millis": 2438 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52653425076, - "reused_in_bytes": 0, - "total_in_bytes": 52653425076 - }, - "source_throttle_time_in_millis": 160153, - "target_throttle_time_in_millis": 2815695, - "total_time_in_millis": 3806561 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732135, - "stop_time_in_millis": 1569839539503, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 3807367, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72656463, - "total_time_in_millis": 796 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51325559179, - "reused_in_bytes": 0, - "total_in_bytes": 51325559179 - }, - "source_throttle_time_in_millis": 4930600, - "target_throttle_time_in_millis": 5115612, - "total_time_in_millis": 9813202 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569824603798, - "stop_time_in_millis": 1569834417863, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 9814064, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72493470, - "total_time_in_millis": 851 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55057964271, - "reused_in_bytes": 0, - "total_in_bytes": 55057964271 - }, - "source_throttle_time_in_millis": 67561, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2276432 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572353542, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2279321, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76510262, - "total_time_in_millis": 2361 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54848521947, - "reused_in_bytes": 0, - "total_in_bytes": 54848521947 - }, - "source_throttle_time_in_millis": 70604, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2141469 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074219, - "stop_time_in_millis": 1569572218088, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2143868, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76437338, - "total_time_in_millis": 2388 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55057964271, - "reused_in_bytes": 0, - "total_in_bytes": 55057964271 - }, - "source_throttle_time_in_millis": 71709, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2276945 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572353513, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2279292, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76510262, - "total_time_in_millis": 2337 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5412 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569572377095, - "stop_time_in_millis": 1569572384912, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 7816, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2359 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55667245790, - "reused_in_bytes": 0, - "total_in_bytes": 55667245790 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 161, - "total_time_in_millis": 1559709 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569572608472, - "stop_time_in_millis": 1569574170796, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1562324, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76260236, - "total_time_in_millis": 2589 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51911575443, - "reused_in_bytes": 0, - "total_in_bytes": 51911575443 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 5372359, - "total_time_in_millis": 5153173 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569843435665, - "stop_time_in_millis": 1569848589529, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5153863, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72859330, - "total_time_in_millis": 683 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 342, - "reused": 0, - "total": 342 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55037780048, - "reused_in_bytes": 0, - "total_in_bytes": 55037780048 - }, - "source_throttle_time_in_millis": 72472, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 2196869 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074219, - "stop_time_in_millis": 1569572274310, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 2200090, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76651418, - "total_time_in_millis": 2689 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54997094860, - "reused_in_bytes": 0, - "total_in_bytes": 54997094860 - }, - "source_throttle_time_in_millis": 63748, - "target_throttle_time_in_millis": 26, - "total_time_in_millis": 2265540 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074220, - "stop_time_in_millis": 1569572342802, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 2268581, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76451835, - "total_time_in_millis": 3011 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51907103526, - "reused_in_bytes": 0, - "total_in_bytes": 51907103526 - }, - "source_throttle_time_in_millis": 108896, - "target_throttle_time_in_millis": 31424, - "total_time_in_millis": 1490865 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569764283942, - "stop_time_in_millis": 1569765775912, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 1491969, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72901493, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54810473453, - "reused_in_bytes": 0, - "total_in_bytes": 54810473453 - }, - "source_throttle_time_in_millis": 32736, - "target_throttle_time_in_millis": 211, - "total_time_in_millis": 2385123 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074221, - "stop_time_in_millis": 1569572461971, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 2387750, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76542295, - "total_time_in_millis": 2615 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52561291579, - "reused_in_bytes": 0, - "total_in_bytes": 52561291579 - }, - "source_throttle_time_in_millis": 39554, - "target_throttle_time_in_millis": 28364, - "total_time_in_millis": 1750350 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569952248997, - "stop_time_in_millis": 1569954000083, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1751085, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72679617, - "total_time_in_millis": 724 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52561291579, - "reused_in_bytes": 0, - "total_in_bytes": 52561291579 - }, - "source_throttle_time_in_millis": 290557, - "target_throttle_time_in_millis": 79866, - "total_time_in_millis": 1650335 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569933811315, - "stop_time_in_millis": 1569935462310, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1650995, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72679617, - "total_time_in_millis": 650 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52573392597, - "reused_in_bytes": 0, - "total_in_bytes": 52573392597 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 224, - "total_time_in_millis": 1191710 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569940879767, - "stop_time_in_millis": 1569942072097, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 1192329, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72740390, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 333, - "reused": 0, - "total": 333 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54269838577, - "reused_in_bytes": 0, - "total_in_bytes": 54269838577 - }, - "source_throttle_time_in_millis": 31396, - "target_throttle_time_in_millis": 23665, - "total_time_in_millis": 1740377 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569946942118, - "stop_time_in_millis": 1569948684507, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1742388, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75842134, - "total_time_in_millis": 2002 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51903928118, - "reused_in_bytes": 0, - "total_in_bytes": 51903928118 - }, - "source_throttle_time_in_millis": 6654, - "target_throttle_time_in_millis": 96484, - "total_time_in_millis": 1404135 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569895122781, - "stop_time_in_millis": 1569896527680, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 1404899, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72918584, - "total_time_in_millis": 755 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 343, - "reused": 0, - "total": 343 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55715793384, - "reused_in_bytes": 0, - "total_in_bytes": 55715793384 - }, - "source_throttle_time_in_millis": 65034, - "target_throttle_time_in_millis": 41717, - "total_time_in_millis": 2370205 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569570074221, - "stop_time_in_millis": 1569572447689, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2373467, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76411825, - "total_time_in_millis": 2741 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 333, - "reused": 0, - "total": 333 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54269838577, - "reused_in_bytes": 0, - "total_in_bytes": 54269838577 - }, - "source_throttle_time_in_millis": 3095013, - "target_throttle_time_in_millis": 7143592, - "total_time_in_millis": 9549466 - }, - "index_name": "om-iu-bro-2019.09.25-000978", - "primary": true, - "source": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782008472, - "stop_time_in_millis": 1569791561268, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 9552796, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75842134, - "total_time_in_millis": 2813 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 14, - "reused": 0, - "total": 14 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50740, - "reused_in_bytes": 0, - "total_in_bytes": 50740 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 135 - }, - "index_name": ".ml-config", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567040402927, - "stop_time_in_millis": 1567040403474, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 546, - "translog": { - "percent": "100.0%", - "recovered": 8, - "total": 8, - "total_on_start": 8, - "total_time_in_millis": 376 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".ml-config", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566411465173, - "stop_time_in_millis": 1566411465538, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 365, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 314 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 354, - "reused": 0, - "total": 354 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55196812339, - "reused_in_bytes": 0, - "total_in_bytes": 55196812339 - }, - "source_throttle_time_in_millis": 70739, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2285537 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103228, - "stop_time_in_millis": 1569554391580, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 2288352, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77616218, - "total_time_in_millis": 2799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55115622630, - "reused_in_bytes": 0, - "total_in_bytes": 55115622630 - }, - "source_throttle_time_in_millis": 76427, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2504718 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103225, - "stop_time_in_millis": 1569554610227, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2507002, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77643866, - "total_time_in_millis": 2272 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51358048903, - "reused_in_bytes": 0, - "total_in_bytes": 51358048903 - }, - "source_throttle_time_in_millis": 5579739, - "target_throttle_time_in_millis": 5056113, - "total_time_in_millis": 10239801 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569814126764, - "stop_time_in_millis": 1569824367487, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 10240723, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73415011, - "total_time_in_millis": 898 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52195378354, - "reused_in_bytes": 0, - "total_in_bytes": 52195378354 - }, - "source_throttle_time_in_millis": 3548863, - "target_throttle_time_in_millis": 5769113, - "total_time_in_millis": 9320910 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818881681, - "stop_time_in_millis": 1569828203419, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 9321737, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74113279, - "total_time_in_millis": 811 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5517 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569554610265, - "stop_time_in_millis": 1569554616691, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 6425, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 863 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5810 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569554445277, - "stop_time_in_millis": 1569554451963, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 6686, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 836 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52830465324, - "reused_in_bytes": 0, - "total_in_bytes": 52830465324 - }, - "source_throttle_time_in_millis": 5596912, - "target_throttle_time_in_millis": 5635702, - "total_time_in_millis": 10471396 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569794649816, - "stop_time_in_millis": 1569805122096, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 10472279, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73971855, - "total_time_in_millis": 865 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52058887685, - "reused_in_bytes": 0, - "total_in_bytes": 52058887685 - }, - "source_throttle_time_in_millis": 134869, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 1621164 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976004476, - "stop_time_in_millis": 1569977626271, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 1621794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74060182, - "total_time_in_millis": 620 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51127031052, - "reused_in_bytes": 0, - "total_in_bytes": 51127031052 - }, - "source_throttle_time_in_millis": 3401049, - "target_throttle_time_in_millis": 5816236, - "total_time_in_millis": 9444751 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772198487, - "stop_time_in_millis": 1569781644111, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 9445623, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73229966, - "total_time_in_millis": 846 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52053661589, - "reused_in_bytes": 0, - "total_in_bytes": 52053661589 - }, - "source_throttle_time_in_millis": 4429576, - "target_throttle_time_in_millis": 4301199, - "total_time_in_millis": 8828356 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812861444, - "stop_time_in_millis": 1569821691072, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 8829627, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74040512, - "total_time_in_millis": 788 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51966469833, - "reused_in_bytes": 0, - "total_in_bytes": 51966469833 - }, - "source_throttle_time_in_millis": 4668996, - "target_throttle_time_in_millis": 3346890, - "total_time_in_millis": 8467422 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798337340, - "stop_time_in_millis": 1569806805708, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 8468368, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74103995, - "total_time_in_millis": 936 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52000281358, - "reused_in_bytes": 0, - "total_in_bytes": 52000281358 - }, - "source_throttle_time_in_millis": 215934, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 1542820 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569881278539, - "stop_time_in_millis": 1569882821962, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1543423, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74006060, - "total_time_in_millis": 592 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52721976661, - "reused_in_bytes": 0, - "total_in_bytes": 52721976661 - }, - "source_throttle_time_in_millis": 585017, - "target_throttle_time_in_millis": 5773101, - "total_time_in_millis": 6177024 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832320006, - "stop_time_in_millis": 1569838497904, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 6177897, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74026990, - "total_time_in_millis": 848 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51914405679, - "reused_in_bytes": 0, - "total_in_bytes": 51914405679 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 102020, - "total_time_in_millis": 1329604 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976003118, - "stop_time_in_millis": 1569977333340, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1330222, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73797942, - "total_time_in_millis": 608 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51127031052, - "reused_in_bytes": 0, - "total_in_bytes": 51127031052 - }, - "source_throttle_time_in_millis": 228270, - "target_throttle_time_in_millis": 33330, - "total_time_in_millis": 1560760 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569975079068, - "stop_time_in_millis": 1569976641300, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 1562232, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73229966, - "total_time_in_millis": 1462 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52724385783, - "reused_in_bytes": 0, - "total_in_bytes": 52724385783 - }, - "source_throttle_time_in_millis": 232775, - "target_throttle_time_in_millis": 49497, - "total_time_in_millis": 1764191 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569954528673, - "stop_time_in_millis": 1569956293525, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1764851, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73971390, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52658764545, - "reused_in_bytes": 0, - "total_in_bytes": 52658764545 - }, - "source_throttle_time_in_millis": 3642218, - "target_throttle_time_in_millis": 4973134, - "total_time_in_millis": 8437227 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569820698007, - "stop_time_in_millis": 1569829136003, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 8437995, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73821284, - "total_time_in_millis": 754 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51916950642, - "reused_in_bytes": 0, - "total_in_bytes": 51916950642 - }, - "source_throttle_time_in_millis": 100396, - "target_throttle_time_in_millis": 70408, - "total_time_in_millis": 1554790 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569871343984, - "stop_time_in_millis": 1569872899557, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1555572, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74114965, - "total_time_in_millis": 771 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52729584506, - "reused_in_bytes": 0, - "total_in_bytes": 52729584506 - }, - "source_throttle_time_in_millis": 3642358, - "target_throttle_time_in_millis": 2256827, - "total_time_in_millis": 7119582 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772135596, - "stop_time_in_millis": 1569779256038, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 7120442, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73794167, - "total_time_in_millis": 844 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 331, - "reused": 0, - "total": 331 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55919520439, - "reused_in_bytes": 0, - "total_in_bytes": 55919520439 - }, - "source_throttle_time_in_millis": 72863, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2402944 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103228, - "stop_time_in_millis": 1569554508833, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2405605, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77577207, - "total_time_in_millis": 2647 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 280, - "reused": 0, - "total": 280 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54978981865, - "reused_in_bytes": 0, - "total_in_bytes": 54978981865 - }, - "source_throttle_time_in_millis": 239774, - "target_throttle_time_in_millis": 36, - "total_time_in_millis": 1838134 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569563056669, - "stop_time_in_millis": 1569564897462, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1840792, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74114237, - "total_time_in_millis": 2141 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54991731843, - "reused_in_bytes": 0, - "total_in_bytes": 54991731843 - }, - "source_throttle_time_in_millis": 97114, - "target_throttle_time_in_millis": 2, - "total_time_in_millis": 2237225 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103228, - "stop_time_in_millis": 1569554343648, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 2240420, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77641650, - "total_time_in_millis": 2424 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52037698641, - "reused_in_bytes": 0, - "total_in_bytes": 52037698641 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 39194, - "total_time_in_millis": 1286114 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906676651, - "stop_time_in_millis": 1569907963405, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1286754, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73953164, - "total_time_in_millis": 631 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55169295826, - "reused_in_bytes": 0, - "total_in_bytes": 55169295826 - }, - "source_throttle_time_in_millis": 66439, - "target_throttle_time_in_millis": 11, - "total_time_in_millis": 2531604 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103230, - "stop_time_in_millis": 1569554639499, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 2536269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77878151, - "total_time_in_millis": 2587 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55858570263, - "reused_in_bytes": 0, - "total_in_bytes": 55858570263 - }, - "source_throttle_time_in_millis": 73863, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2343887 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103229, - "stop_time_in_millis": 1569554450078, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 2346849, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77347269, - "total_time_in_millis": 2425 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52761777125, - "reused_in_bytes": 0, - "total_in_bytes": 52761777125 - }, - "source_throttle_time_in_millis": 204764, - "target_throttle_time_in_millis": 107184, - "total_time_in_millis": 1573421 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569886788464, - "stop_time_in_millis": 1569888362537, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1574072, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73927328, - "total_time_in_millis": 642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52724385783, - "reused_in_bytes": 0, - "total_in_bytes": 52724385783 - }, - "source_throttle_time_in_millis": 3475952, - "target_throttle_time_in_millis": 4050126, - "total_time_in_millis": 7930975 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467904, - "stop_time_in_millis": 1569830401184, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 7933279, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73971390, - "total_time_in_millis": 2289 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 310, - "reused": 0, - "total": 310 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55430549537, - "reused_in_bytes": 0, - "total_in_bytes": 55430549537 - }, - "source_throttle_time_in_millis": 97340, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2350004 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103224, - "stop_time_in_millis": 1569554455859, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2352635, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77872718, - "total_time_in_millis": 2618 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51358048903, - "reused_in_bytes": 0, - "total_in_bytes": 51358048903 - }, - "source_throttle_time_in_millis": 69563, - "target_throttle_time_in_millis": 233, - "total_time_in_millis": 1309941 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569933077450, - "stop_time_in_millis": 1569934388047, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1310597, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73415011, - "total_time_in_millis": 646 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 340, - "reused": 0, - "total": 340 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56149714209, - "reused_in_bytes": 0, - "total_in_bytes": 56149714209 - }, - "source_throttle_time_in_millis": 72189, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2320236 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103228, - "stop_time_in_millis": 1569554426625, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2323396, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77776323, - "total_time_in_millis": 2630 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 322, - "reused": 0, - "total": 322 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55274806118, - "reused_in_bytes": 0, - "total_in_bytes": 55274806118 - }, - "source_throttle_time_in_millis": 65368, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2345710 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103228, - "stop_time_in_millis": 1569554451194, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 2347966, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77781996, - "total_time_in_millis": 2245 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52000281358, - "reused_in_bytes": 0, - "total_in_bytes": 52000281358 - }, - "source_throttle_time_in_millis": 1370147, - "target_throttle_time_in_millis": 4628025, - "total_time_in_millis": 6290664 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826956979, - "stop_time_in_millis": 1569833248303, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6291323, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74006060, - "total_time_in_millis": 645 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51916950642, - "reused_in_bytes": 0, - "total_in_bytes": 51916950642 - }, - "source_throttle_time_in_millis": 6045570, - "target_throttle_time_in_millis": 1737460, - "total_time_in_millis": 8969793 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569812040428, - "stop_time_in_millis": 1569821011047, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 8970618, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74114965, - "total_time_in_millis": 801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56080838698, - "reused_in_bytes": 0, - "total_in_bytes": 56080838698 - }, - "source_throttle_time_in_millis": 74616, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 2346698 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569552103228, - "stop_time_in_millis": 1569554452885, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2349657, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77908539, - "total_time_in_millis": 2434 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52058887685, - "reused_in_bytes": 0, - "total_in_bytes": 52058887685 - }, - "source_throttle_time_in_millis": 1447322, - "target_throttle_time_in_millis": 66230, - "total_time_in_millis": 2780547 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569907963462, - "stop_time_in_millis": 1569910744621, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2781158, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74060182, - "total_time_in_millis": 602 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52053661589, - "reused_in_bytes": 0, - "total_in_bytes": 52053661589 - }, - "source_throttle_time_in_millis": 3819890, - "target_throttle_time_in_millis": 6098107, - "total_time_in_millis": 9082720 - }, - "index_name": "om-iu-bro-2019.09.24-000977", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569803777737, - "stop_time_in_millis": 1569812861392, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 9083654, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74040512, - "total_time_in_millis": 891 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 46, - "reused": 0, - "total": 46 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 70237, - "reused_in_bytes": 0, - "total_in_bytes": 70237 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4987 - }, - "index_name": ".monitoring-alerts-6", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568203050829, - "stop_time_in_millis": 1568203056568, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 5739, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 113 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 46, - "reused": 0, - "total": 46 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 70237, - "reused_in_bytes": 0, - "total_in_bytes": 70237 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 490 - }, - "index_name": ".monitoring-alerts-6", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995440786, - "stop_time_in_millis": 1568995441384, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 597, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 90 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 393 - }, - "index_name": "om-iu-suricata-2019.10.03-000122", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570117894638, - "stop_time_in_millis": 1570117895307, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 668, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 186 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 68 - }, - "index_name": "om-iu-suricata-2019.10.03-000122", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570117894615, - "stop_time_in_millis": 1570117894791, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 176, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 53 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 39 - }, - "index_name": "om-iu-suricata-2019.10.03-000122", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117897644, - "stop_time_in_millis": 1570117897737, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 92, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 797 - }, - "index_name": "om-iu-suricata-2019.10.03-000122", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570117897631, - "stop_time_in_millis": 1570117901385, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 3753, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 7, - "reused": 0, - "total": 7 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 42600, - "reused_in_bytes": 0, - "total_in_bytes": 42600 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 90 - }, - "index_name": ".reporting-2019.02.17", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569042675288, - "stop_time_in_millis": 1569042675608, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 173 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 7, - "reused": 0, - "total": 7 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 42600, - "reused_in_bytes": 0, - "total_in_bytes": 42600 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 88 - }, - "index_name": ".reporting-2019.02.17", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995440791, - "stop_time_in_millis": 1568995440945, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 154, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 127, - "reused": 0, - "total": 127 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 667871111, - "reused_in_bytes": 0, - "total_in_bytes": 667871111 - }, - "source_throttle_time_in_millis": 594, - "target_throttle_time_in_millis": 16, - "total_time_in_millis": 27753 - }, - "index_name": "om-iu-suricata-2019.09.24-000113", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569595294787, - "stop_time_in_millis": 1569595323192, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 28404, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 181103, - "total_time_in_millis": 98 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 127, - "reused": 0, - "total": 127 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 667871111, - "reused_in_bytes": 0, - "total_in_bytes": 667871111 - }, - "source_throttle_time_in_millis": 1505, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 24848 - }, - "index_name": "om-iu-suricata-2019.09.24-000113", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569595294780, - "stop_time_in_millis": 1569595319723, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 24943, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 181103, - "total_time_in_millis": 84 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 660130737, - "reused_in_bytes": 0, - "total_in_bytes": 660130737 - }, - "source_throttle_time_in_millis": 52423, - "target_throttle_time_in_millis": 86106, - "total_time_in_millis": 125700 - }, - "index_name": "om-iu-suricata-2019.09.24-000113", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569807854544, - "stop_time_in_millis": 1569807980321, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 125777, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 181669, - "total_time_in_millis": 52 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 660130737, - "reused_in_bytes": 0, - "total_in_bytes": 660130737 - }, - "source_throttle_time_in_millis": 2823, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 22080 - }, - "index_name": "om-iu-suricata-2019.09.24-000113", - "primary": true, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569977652343, - "stop_time_in_millis": 1569977674460, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 22116, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 181669, - "total_time_in_millis": 26 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 362748665, - "reused_in_bytes": 0, - "total_in_bytes": 362748665 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 1, - "total_time_in_millis": 9344 - }, - "index_name": "om-iu-suricata-2019.09.28-000117", - "primary": false, - "source": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976936134, - "stop_time_in_millis": 1569976945527, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 9392, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 82691, - "total_time_in_millis": 40 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 106, - "reused": 0, - "total": 106 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 367063535, - "reused_in_bytes": 0, - "total_in_bytes": 367063535 - }, - "source_throttle_time_in_millis": 418, - "target_throttle_time_in_millis": 562, - "total_time_in_millis": 15231 - }, - "index_name": "om-iu-suricata-2019.09.28-000117", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569942729200, - "stop_time_in_millis": 1569942745014, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 15814, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 82674, - "total_time_in_millis": 66 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 79, - "reused": 0, - "total": 79 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 365704530, - "reused_in_bytes": 0, - "total_in_bytes": 365704530 - }, - "source_throttle_time_in_millis": 489, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 15353 - }, - "index_name": "om-iu-suricata-2019.09.28-000117", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569942729203, - "stop_time_in_millis": 1569942744650, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 15446, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 82691, - "total_time_in_millis": 74 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 363050024, - "reused_in_bytes": 0, - "total_in_bytes": 363050024 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 568, - "total_time_in_millis": 10396 - }, - "index_name": "om-iu-suricata-2019.09.28-000117", - "primary": false, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978735596, - "stop_time_in_millis": 1569978746023, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 10427, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 82674, - "total_time_in_millis": 22 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 17 - }, - "index_name": ".reporting-2019.02.10", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566397035729, - "stop_time_in_millis": 1566397036049, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 320, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 248 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6 - }, - "index_name": ".reporting-2019.02.10", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313901963, - "stop_time_in_millis": 1566313902384, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 420, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 333 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52529707483, - "reused_in_bytes": 0, - "total_in_bytes": 52529707483 - }, - "source_throttle_time_in_millis": 7463, - "target_throttle_time_in_millis": 4672068, - "total_time_in_millis": 4887075 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569848674693, - "stop_time_in_millis": 1569853562450, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 4887757, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73901406, - "total_time_in_millis": 664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56752788322, - "reused_in_bytes": 0, - "total_in_bytes": 56752788322 - }, - "source_throttle_time_in_millis": 68656, - "target_throttle_time_in_millis": 10, - "total_time_in_millis": 2264420 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699145, - "stop_time_in_millis": 1569641966736, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2267590, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77891924, - "total_time_in_millis": 2515 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52438625997, - "reused_in_bytes": 0, - "total_in_bytes": 52438625997 - }, - "source_throttle_time_in_millis": 5210096, - "target_throttle_time_in_millis": 3228673, - "total_time_in_millis": 8707112 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569830093230, - "stop_time_in_millis": 1569838801561, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 8708331, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73744363, - "total_time_in_millis": 706 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53267895014, - "reused_in_bytes": 0, - "total_in_bytes": 53267895014 - }, - "source_throttle_time_in_millis": 1788230, - "target_throttle_time_in_millis": 5655872, - "total_time_in_millis": 7539894 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569826710135, - "stop_time_in_millis": 1569834250819, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 7540684, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73889596, - "total_time_in_millis": 774 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53216929835, - "reused_in_bytes": 0, - "total_in_bytes": 53216929835 - }, - "source_throttle_time_in_millis": 4757133, - "target_throttle_time_in_millis": 4673818, - "total_time_in_millis": 9406241 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569813385585, - "stop_time_in_millis": 1569822793216, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 9407631, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73867985, - "total_time_in_millis": 831 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56657980272, - "reused_in_bytes": 0, - "total_in_bytes": 56657980272 - }, - "source_throttle_time_in_millis": 70118, - "target_throttle_time_in_millis": 61, - "total_time_in_millis": 2342159 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699146, - "stop_time_in_millis": 1569642044552, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 2345406, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77667822, - "total_time_in_millis": 2724 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51778545799, - "reused_in_bytes": 0, - "total_in_bytes": 51778545799 - }, - "source_throttle_time_in_millis": 45289, - "target_throttle_time_in_millis": 175779, - "total_time_in_millis": 1350126 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569877406443, - "stop_time_in_millis": 1569878757193, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 1350750, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73323366, - "total_time_in_millis": 611 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52485903821, - "reused_in_bytes": 0, - "total_in_bytes": 52485903821 - }, - "source_throttle_time_in_millis": 1034112, - "target_throttle_time_in_millis": 5752523, - "total_time_in_millis": 6498474 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829232165, - "stop_time_in_millis": 1569835732069, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6499903, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73902393, - "total_time_in_millis": 1415 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51700806618, - "reused_in_bytes": 0, - "total_in_bytes": 51700806618 - }, - "source_throttle_time_in_millis": 4271262, - "target_throttle_time_in_millis": 729726, - "total_time_in_millis": 6595974 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832295079, - "stop_time_in_millis": 1569838891832, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 6596752, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73197857, - "total_time_in_millis": 765 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52410892025, - "reused_in_bytes": 0, - "total_in_bytes": 52410892025 - }, - "source_throttle_time_in_millis": 5312011, - "target_throttle_time_in_millis": 1484790, - "total_time_in_millis": 8180478 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732140, - "stop_time_in_millis": 1569843913348, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 8181207, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73869883, - "total_time_in_millis": 715 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52438625997, - "reused_in_bytes": 0, - "total_in_bytes": 52438625997 - }, - "source_throttle_time_in_millis": 4839893, - "target_throttle_time_in_millis": 5671229, - "total_time_in_millis": 9752944 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818859982, - "stop_time_in_millis": 1569828614083, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 9754101, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73744363, - "total_time_in_millis": 1145 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53117308480, - "reused_in_bytes": 0, - "total_in_bytes": 53117308480 - }, - "source_throttle_time_in_millis": 174151, - "target_throttle_time_in_millis": 224, - "total_time_in_millis": 1494833 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974507548, - "stop_time_in_millis": 1569976003054, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 1495506, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73626785, - "total_time_in_millis": 664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53036696954, - "reused_in_bytes": 0, - "total_in_bytes": 53036696954 - }, - "source_throttle_time_in_millis": 15062, - "target_throttle_time_in_millis": 58148, - "total_time_in_millis": 1295890 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569859603781, - "stop_time_in_millis": 1569860900287, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1296505, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73693798, - "total_time_in_millis": 606 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52370500861, - "reused_in_bytes": 0, - "total_in_bytes": 52370500861 - }, - "source_throttle_time_in_millis": 144807, - "target_throttle_time_in_millis": 133, - "total_time_in_millis": 1398397 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929009002, - "stop_time_in_millis": 1569930408028, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 1399025, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73892503, - "total_time_in_millis": 617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56834063452, - "reused_in_bytes": 0, - "total_in_bytes": 56834063452 - }, - "source_throttle_time_in_millis": 72319, - "target_throttle_time_in_millis": 25, - "total_time_in_millis": 2296942 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699145, - "stop_time_in_millis": 1569642000411, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 2301266, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77968525, - "total_time_in_millis": 3801 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56584431313, - "reused_in_bytes": 0, - "total_in_bytes": 56584431313 - }, - "source_throttle_time_in_millis": 6, - "target_throttle_time_in_millis": 49342, - "total_time_in_millis": 1386710 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569641973335, - "stop_time_in_millis": 1569643362907, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 1389571, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77764653, - "total_time_in_millis": 2852 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52421998548, - "reused_in_bytes": 0, - "total_in_bytes": 52421998548 - }, - "source_throttle_time_in_millis": 5515865, - "target_throttle_time_in_millis": 5704852, - "total_time_in_millis": 10331958 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810280892, - "stop_time_in_millis": 1569820613654, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 10332762, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73918960, - "total_time_in_millis": 790 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55861243888, - "reused_in_bytes": 0, - "total_in_bytes": 55861243888 - }, - "source_throttle_time_in_millis": 96574, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2356383 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699144, - "stop_time_in_millis": 1569642058501, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 2359356, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77925638, - "total_time_in_millis": 2454 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52586061339, - "reused_in_bytes": 0, - "total_in_bytes": 52586061339 - }, - "source_throttle_time_in_millis": 1066005, - "target_throttle_time_in_millis": 4082, - "total_time_in_millis": 2420167 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569906999593, - "stop_time_in_millis": 1569909420417, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 2420824, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73985263, - "total_time_in_millis": 648 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52586061339, - "reused_in_bytes": 0, - "total_in_bytes": 52586061339 - }, - "source_throttle_time_in_millis": 37317, - "target_throttle_time_in_millis": 212166, - "total_time_in_millis": 1450001 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937392111, - "stop_time_in_millis": 1569938844695, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 1452584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73985263, - "total_time_in_millis": 577 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52303658786, - "reused_in_bytes": 0, - "total_in_bytes": 52303658786 - }, - "source_throttle_time_in_millis": 4920209, - "target_throttle_time_in_millis": 4363270, - "total_time_in_millis": 9328913 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772744616, - "stop_time_in_millis": 1569782075355, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 9330739, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73930316, - "total_time_in_millis": 784 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5879 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569641941676, - "stop_time_in_millis": 1569641948504, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 6827, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 900 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55580889321, - "reused_in_bytes": 0, - "total_in_bytes": 55580889321 - }, - "source_throttle_time_in_millis": 26167, - "target_throttle_time_in_millis": 73, - "total_time_in_millis": 1362596 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569642054041, - "stop_time_in_millis": 1569643419118, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 1365076, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77518508, - "total_time_in_millis": 2468 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51778545799, - "reused_in_bytes": 0, - "total_in_bytes": 51778545799 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 12793, - "total_time_in_millis": 1437422 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956293573, - "stop_time_in_millis": 1569957731708, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1438134, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73323366, - "total_time_in_millis": 700 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52303658786, - "reused_in_bytes": 0, - "total_in_bytes": 52303658786 - }, - "source_throttle_time_in_millis": 1117431, - "target_throttle_time_in_millis": 4196698, - "total_time_in_millis": 5921999 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831079305, - "stop_time_in_millis": 1569837002642, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 5923337, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73930316, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52326037081, - "reused_in_bytes": 0, - "total_in_bytes": 52326037081 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 30571, - "total_time_in_millis": 1253505 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978487035, - "stop_time_in_millis": 1569979741151, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1254115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73741775, - "total_time_in_millis": 601 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53117308480, - "reused_in_bytes": 0, - "total_in_bytes": 53117308480 - }, - "source_throttle_time_in_millis": 33155, - "target_throttle_time_in_millis": 20081, - "total_time_in_millis": 1296828 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569963946261, - "stop_time_in_millis": 1569965243755, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1297493, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73626785, - "total_time_in_millis": 656 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52637952733, - "reused_in_bytes": 0, - "total_in_bytes": 52637952733 - }, - "source_throttle_time_in_millis": 7741103, - "target_throttle_time_in_millis": 86689, - "total_time_in_millis": 9253653 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569756263584, - "stop_time_in_millis": 1569765517916, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 9254332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73908704, - "total_time_in_millis": 664 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53246413771, - "reused_in_bytes": 0, - "total_in_bytes": 53246413771 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 72046, - "total_time_in_millis": 1487029 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569896702899, - "stop_time_in_millis": 1569898190642, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 1487742, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73770216, - "total_time_in_millis": 705 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56740645168, - "reused_in_bytes": 0, - "total_in_bytes": 56740645168 - }, - "source_throttle_time_in_millis": 69155, - "target_throttle_time_in_millis": 17, - "total_time_in_millis": 2342943 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699146, - "stop_time_in_millis": 1569642045343, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2346196, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77701638, - "total_time_in_millis": 2725 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51700806618, - "reused_in_bytes": 0, - "total_in_bytes": 51700806618 - }, - "source_throttle_time_in_millis": 14425, - "target_throttle_time_in_millis": 49385, - "total_time_in_millis": 1459157 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569937658509, - "stop_time_in_millis": 1569939118329, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1459819, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73197857, - "total_time_in_millis": 652 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 334, - "reused": 0, - "total": 334 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55777369447, - "reused_in_bytes": 0, - "total_in_bytes": 55777369447 - }, - "source_throttle_time_in_millis": 72161, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2180236 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699145, - "stop_time_in_millis": 1569641881976, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 2182831, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77761737, - "total_time_in_millis": 2586 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569641975107, - "stop_time_in_millis": 1569641975987, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 880, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 828 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 316, - "reused": 0, - "total": 316 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 56021496137, - "reused_in_bytes": 0, - "total_in_bytes": 56021496137 - }, - "source_throttle_time_in_millis": 69335, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2257522 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699146, - "stop_time_in_millis": 1569641959878, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2260731, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77998040, - "total_time_in_millis": 2679 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 295, - "reused": 0, - "total": 295 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55542510286, - "reused_in_bytes": 0, - "total_in_bytes": 55542510286 - }, - "source_throttle_time_in_millis": 70885, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2169750 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569639699150, - "stop_time_in_millis": 1569641871386, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2172236, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 77568115, - "total_time_in_millis": 2467 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53197327554, - "reused_in_bytes": 0, - "total_in_bytes": 53197327554 - }, - "source_throttle_time_in_millis": 1571722, - "target_throttle_time_in_millis": 1328499, - "total_time_in_millis": 4431675 - }, - "index_name": "om-iu-bro-2019.09.25-000982", - "primary": false, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569838707240, - "stop_time_in_millis": 1569843139600, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 4432360, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73753003, - "total_time_in_millis": 677 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 658796575, - "reused_in_bytes": 0, - "total_in_bytes": 658796575 - }, - "source_throttle_time_in_millis": 69550, - "target_throttle_time_in_millis": 52755, - "total_time_in_millis": 127555 - }, - "index_name": "om-iu-suricata-2019.09.10-000099", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568893846588, - "stop_time_in_millis": 1568893974235, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 127647, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 160514, - "total_time_in_millis": 72 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 658292842, - "reused_in_bytes": 0, - "total_in_bytes": 658292842 - }, - "source_throttle_time_in_millis": 67162, - "target_throttle_time_in_millis": 60023, - "total_time_in_millis": 120850 - }, - "index_name": "om-iu-suricata-2019.09.10-000099", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569832328937, - "stop_time_in_millis": 1569832449854, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 120916, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 160378, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 658292842, - "reused_in_bytes": 0, - "total_in_bytes": 658292842 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 4097, - "total_time_in_millis": 21141 - }, - "index_name": "om-iu-suricata-2019.09.10-000099", - "primary": true, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978040634, - "stop_time_in_millis": 1569978061812, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 21177, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 160378, - "total_time_in_millis": 27 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 658796575, - "reused_in_bytes": 0, - "total_in_bytes": 658796575 - }, - "source_throttle_time_in_millis": 3164, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 21445 - }, - "index_name": "om-iu-suricata-2019.09.10-000099", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569978465508, - "stop_time_in_millis": 1569978486997, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 21488, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 160514, - "total_time_in_millis": 34 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 16, - "reused": 0, - "total": 16 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 117315, - "reused_in_bytes": 0, - "total_in_bytes": 117315 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 164 - }, - "index_name": ".reporting-2019.05.05", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1567126802315, - "stop_time_in_millis": 1567126802554, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 239, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 52 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 16, - "reused": 0, - "total": 16 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 117315, - "reused_in_bytes": 0, - "total_in_bytes": 117315 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 98 - }, - "index_name": ".reporting-2019.05.05", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568995440763, - "stop_time_in_millis": 1568995441459, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 695, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 71 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 9 - }, - "index_name": ".kibana_2", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313902111, - "stop_time_in_millis": 1566313902279, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 126 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".kibana_2", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566322775408, - "stop_time_in_millis": 1566322775699, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 291, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 267 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 13 - }, - "index_name": ".kibana_1", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313902122, - "stop_time_in_millis": 1566313902281, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 159, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 97 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 10, - "reused": 0, - "total": 10 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 820155, - "reused_in_bytes": 0, - "total_in_bytes": 820155 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 562 - }, - "index_name": ".kibana_1", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569042670856, - "stop_time_in_millis": 1569042675223, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 4366, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 100 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 13 - }, - "index_name": ".kibana_3", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566313902132, - "stop_time_in_millis": 1566313902354, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 222, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 149 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 7 - }, - "index_name": ".kibana_3", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1566481066954, - "stop_time_in_millis": 1566481067462, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 508, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 446 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 117 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925430, - "stop_time_in_millis": 1570078926146, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 715, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 48 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 60 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910571, - "stop_time_in_millis": 1570078910686, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 115, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 117 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910585, - "stop_time_in_millis": 1570078910803, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 217, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 60 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2154 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925434, - "stop_time_in_millis": 1570078931041, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 5606, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 163 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 98 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925433, - "stop_time_in_millis": 1570078925768, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 335, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 68 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 367 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910573, - "stop_time_in_millis": 1570078910996, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 422, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 371 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925548, - "stop_time_in_millis": 1570078927513, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 1965, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1006 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1102 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910573, - "stop_time_in_millis": 1570078915754, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 5180, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 62 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 59 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910570, - "stop_time_in_millis": 1570078910691, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 120, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 126 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925431, - "stop_time_in_millis": 1570078925666, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 234, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 68 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 237 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925434, - "stop_time_in_millis": 1570078926380, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 945, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 65 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 49 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910568, - "stop_time_in_millis": 1570078910664, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 96, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 476 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925794, - "stop_time_in_millis": 1570078926678, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 883, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 169 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 56 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910575, - "stop_time_in_millis": 1570078910672, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 96, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 30 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910561, - "stop_time_in_millis": 1570078910637, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 76, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 24 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 389 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925434, - "stop_time_in_millis": 1570078926794, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 1360, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 82 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 68 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910624, - "stop_time_in_millis": 1570078910753, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 128, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 120 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925434, - "stop_time_in_millis": 1570078925682, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 248, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 76 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3158 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925462, - "stop_time_in_millis": 1570078930055, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 4593, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 96 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 72 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910584, - "stop_time_in_millis": 1570078910708, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 124, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 35 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 285 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925432, - "stop_time_in_millis": 1570078926440, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 1008, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 149 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 214 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910589, - "stop_time_in_millis": 1570078911036, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 446, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 133 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 746 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925432, - "stop_time_in_millis": 1570078928897, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 3464, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 919 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 209 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910577, - "stop_time_in_millis": 1570078911082, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 505, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 206 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 352 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925459, - "stop_time_in_millis": 1570078926065, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 606, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 198 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 80 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910563, - "stop_time_in_millis": 1570078910724, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 160, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 388 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925433, - "stop_time_in_millis": 1570078925935, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 502, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 78 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 101 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910570, - "stop_time_in_millis": 1570078910751, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 181, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 57 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 53 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910573, - "stop_time_in_millis": 1570078910667, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 94, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 18 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 530 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925430, - "stop_time_in_millis": 1570078926467, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 1036, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 363 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 312 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925506, - "stop_time_in_millis": 1570078926152, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 645, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 286 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910578, - "stop_time_in_millis": 1570078911014, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 436, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 87 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 48 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910567, - "stop_time_in_millis": 1570078910677, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 109, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 603 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925432, - "stop_time_in_millis": 1570078926490, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 1058, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 104 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 192 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570078910580, - "stop_time_in_millis": 1570078910837, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 256, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 169 - }, - "index_name": "om-iu-bro-2019.10.03-001015", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570078925537, - "stop_time_in_millis": 1570078925969, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 432, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 165 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 48 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896866, - "stop_time_in_millis": 1570096896973, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 106, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 289 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899645, - "stop_time_in_millis": 1570096900149, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 504, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 185 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 112 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096897047, - "stop_time_in_millis": 1570096897225, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 177, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 38 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 94 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899642, - "stop_time_in_millis": 1570096899839, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 196, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 73 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 142 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899679, - "stop_time_in_millis": 1570096899949, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 269, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 87 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896886, - "stop_time_in_millis": 1570096897023, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 136, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 23 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 200 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899664, - "stop_time_in_millis": 1570096901218, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 1553, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 1284 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 77 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896895, - "stop_time_in_millis": 1570096897069, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 174, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 52 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 181 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899641, - "stop_time_in_millis": 1570096900466, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 825, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 83 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 44 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896861, - "stop_time_in_millis": 1570096896957, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 95, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 33 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 90 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899643, - "stop_time_in_millis": 1570096899841, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 197, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 65 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 49 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896871, - "stop_time_in_millis": 1570096896960, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 89, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 195 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899647, - "stop_time_in_millis": 1570096900333, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 686, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 463 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 244 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096898633, - "stop_time_in_millis": 1570096899059, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 426, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 128 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 75 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896874, - "stop_time_in_millis": 1570096896998, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 124, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 202 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899656, - "stop_time_in_millis": 1570096900000, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 343, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 90 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 90 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899640, - "stop_time_in_millis": 1570096899839, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 199, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 83 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 77 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896873, - "stop_time_in_millis": 1570096896997, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 124, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 31 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 151 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899647, - "stop_time_in_millis": 1570096900482, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 835, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 82 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 48 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896872, - "stop_time_in_millis": 1570096897447, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 574, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 54 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896865, - "stop_time_in_millis": 1570096896999, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 133, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 54 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 259 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899727, - "stop_time_in_millis": 1570096900298, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 571, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 244 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 78 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896992, - "stop_time_in_millis": 1570096897171, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 178, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 64 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 121 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899644, - "stop_time_in_millis": 1570096900409, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 764, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 72 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 193 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899639, - "stop_time_in_millis": 1570096900683, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 1044, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 197 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 145 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896897, - "stop_time_in_millis": 1570096897303, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 406, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 83 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 212 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899643, - "stop_time_in_millis": 1570096900098, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 455, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 174 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 32 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896864, - "stop_time_in_millis": 1570096896943, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 79, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 30 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 227 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899641, - "stop_time_in_millis": 1570096900225, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 583, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 97 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 54 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896873, - "stop_time_in_millis": 1570096896996, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 122, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 46 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 216 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896866, - "stop_time_in_millis": 1570096897147, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 280, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 40 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 77 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899680, - "stop_time_in_millis": 1570096899851, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 170, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 64 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 150 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899643, - "stop_time_in_millis": 1570096902449, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 2806, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 209 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 74 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896866, - "stop_time_in_millis": 1570096897335, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 469, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 351 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 234 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570096899642, - "stop_time_in_millis": 1570096900625, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 982, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 166 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 49 - }, - "index_name": "om-iu-bro-2019.10.03-001016", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570096896861, - "stop_time_in_millis": 1570096896963, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 102, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 38 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 544339342, - "reused_in_bytes": 0, - "total_in_bytes": 544339342 - }, - "source_throttle_time_in_millis": 49985, - "target_throttle_time_in_millis": 2162, - "total_time_in_millis": 73583 - }, - "index_name": "om-iu-suricata-2019.09.20-000109", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569772197138, - "stop_time_in_millis": 1569772271297, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 74158, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 133554, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 509874534, - "reused_in_bytes": 0, - "total_in_bytes": 509874534 - }, - "source_throttle_time_in_millis": 20402, - "target_throttle_time_in_millis": 76535, - "total_time_in_millis": 89570 - }, - "index_name": "om-iu-suricata-2019.09.20-000109", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569797906195, - "stop_time_in_millis": 1569797996358, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 90163, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 125957, - "total_time_in_millis": 41 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 509874534, - "reused_in_bytes": 0, - "total_in_bytes": 509874534 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 531, - "total_time_in_millis": 15137 - }, - "index_name": "om-iu-suricata-2019.09.20-000109", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569976945568, - "stop_time_in_millis": 1569976960740, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 15172, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 125957, - "total_time_in_millis": 27 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 544339342, - "reused_in_bytes": 0, - "total_in_bytes": 544339342 - }, - "source_throttle_time_in_millis": 8132, - "target_throttle_time_in_millis": 57708, - "total_time_in_millis": 68754 - }, - "index_name": "om-iu-suricata-2019.09.20-000109", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569778138690, - "stop_time_in_millis": 1569778207595, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 68905, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 133554, - "total_time_in_millis": 97 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1115 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495695, - "stop_time_in_millis": 1570061497921, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 2225, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 212 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 286 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499670, - "stop_time_in_millis": 1570061500233, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 202 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 353 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499689, - "stop_time_in_millis": 1570061501009, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 1319, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 95 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 194 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495695, - "stop_time_in_millis": 1570061496017, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 321, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 166 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495695, - "stop_time_in_millis": 1570061495959, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 264, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 51 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 106 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061506119, - "stop_time_in_millis": 1570061506319, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 199, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 56 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 112 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495664, - "stop_time_in_millis": 1570061495941, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 277, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 116 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 190 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499673, - "stop_time_in_millis": 1570061500646, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 972, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 362 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499669, - "stop_time_in_millis": 1570061500343, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 673, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 231 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 44 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495643, - "stop_time_in_millis": 1570061495738, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 94, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 251 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499779, - "stop_time_in_millis": 1570061500179, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 399, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 104 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 73 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495659, - "stop_time_in_millis": 1570061495914, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 255, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 39 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 205 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499680, - "stop_time_in_millis": 1570061500508, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 827, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 48 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 171 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495655, - "stop_time_in_millis": 1570061496749, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 1094, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 333 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495672, - "stop_time_in_millis": 1570061496120, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 447, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 80 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 217 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499671, - "stop_time_in_millis": 1570061500277, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 605, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 88 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 194 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499669, - "stop_time_in_millis": 1570061500084, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 415, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 142 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1532 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495666, - "stop_time_in_millis": 1570061499678, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 4012, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 47 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 650 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499695, - "stop_time_in_millis": 1570061503773, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 4078, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 569 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 408 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495666, - "stop_time_in_millis": 1570061496346, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 680, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 213 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 143 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499671, - "stop_time_in_millis": 1570061500657, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 985, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 239 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 140 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495674, - "stop_time_in_millis": 1570061495897, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 223, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 32 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 99 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495664, - "stop_time_in_millis": 1570061495829, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 164, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 28 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 295 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499671, - "stop_time_in_millis": 1570061500662, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 991, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 67 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 67 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495658, - "stop_time_in_millis": 1570061495762, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 20 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 227 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499671, - "stop_time_in_millis": 1570061500142, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 471, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 176 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 193 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499749, - "stop_time_in_millis": 1570061500097, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 83 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 114 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495654, - "stop_time_in_millis": 1570061495941, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 286, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 146 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 124 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495677, - "stop_time_in_millis": 1570061495938, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 80 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 179 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499677, - "stop_time_in_millis": 1570061500014, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 337, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 122 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 38 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495657, - "stop_time_in_millis": 1570061495735, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 78, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 25 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 80 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499673, - "stop_time_in_millis": 1570061500516, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 843, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 189 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 229 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499689, - "stop_time_in_millis": 1570061500128, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 439, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 82 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 354 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495657, - "stop_time_in_millis": 1570061496306, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 649, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 58 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 235 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570061495652, - "stop_time_in_millis": 1570061495917, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 265, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 19 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2710 - }, - "index_name": "om-iu-bro-2019.10.03-001014", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570061499684, - "stop_time_in_millis": 1570061504890, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 5205, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 116 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50862849839, - "reused_in_bytes": 0, - "total_in_bytes": 50862849839 - }, - "source_throttle_time_in_millis": 2677293, - "target_throttle_time_in_millis": 1564019, - "total_time_in_millis": 5987677 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569819785165, - "stop_time_in_millis": 1569825774402, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 5989237, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72496364, - "total_time_in_millis": 1042 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54432026933, - "reused_in_bytes": 0, - "total_in_bytes": 54432026933 - }, - "source_throttle_time_in_millis": 75296, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2549919 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627209, - "stop_time_in_millis": 1569624179565, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 2552356, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76581708, - "total_time_in_millis": 2418 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54386265784, - "reused_in_bytes": 0, - "total_in_bytes": 54386265784 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 78, - "total_time_in_millis": 1277135 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569624007253, - "stop_time_in_millis": 1569625286435, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 1279181, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76319412, - "total_time_in_millis": 2038 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51550079605, - "reused_in_bytes": 0, - "total_in_bytes": 51550079605 - }, - "source_throttle_time_in_millis": 476588, - "target_throttle_time_in_millis": 4320344, - "total_time_in_millis": 5160248 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569829813981, - "stop_time_in_millis": 1569834975057, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 5161075, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73368453, - "total_time_in_millis": 810 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 289, - "reused": 0, - "total": 289 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54375212865, - "reused_in_bytes": 0, - "total_in_bytes": 54375212865 - }, - "source_throttle_time_in_millis": 66183, - "target_throttle_time_in_millis": 30, - "total_time_in_millis": 2132916 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627209, - "stop_time_in_millis": 1569623762238, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2135028, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76544301, - "total_time_in_millis": 2098 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51565518433, - "reused_in_bytes": 0, - "total_in_bytes": 51565518433 - }, - "source_throttle_time_in_millis": 18479, - "target_throttle_time_in_millis": 220, - "total_time_in_millis": 1185447 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569760239460, - "stop_time_in_millis": 1569761425528, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 1186067, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73276431, - "total_time_in_millis": 610 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55215354666, - "reused_in_bytes": 0, - "total_in_bytes": 55215354666 - }, - "source_throttle_time_in_millis": 95503, - "target_throttle_time_in_millis": 2432, - "total_time_in_millis": 2391221 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627209, - "stop_time_in_millis": 1569624021557, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 2394348, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76401594, - "total_time_in_millis": 2606 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52281314765, - "reused_in_bytes": 0, - "total_in_bytes": 52281314765 - }, - "source_throttle_time_in_millis": 401022, - "target_throttle_time_in_millis": 5482246, - "total_time_in_millis": 6048425 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792137754, - "stop_time_in_millis": 1569798186967, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6049213, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72966764, - "total_time_in_millis": 777 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 6132 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569624179758, - "stop_time_in_millis": 1569624186764, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 7006, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 836 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55043438269, - "reused_in_bytes": 0, - "total_in_bytes": 55043438269 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 127, - "total_time_in_millis": 1559657 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569623986297, - "stop_time_in_millis": 1569625548695, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1562397, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76070845, - "total_time_in_millis": 2729 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51665104935, - "reused_in_bytes": 0, - "total_in_bytes": 51665104935 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 78, - "total_time_in_millis": 1147830 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569908875263, - "stop_time_in_millis": 1569910023699, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 1148436, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73383300, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 319, - "reused": 0, - "total": 319 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53563520874, - "reused_in_bytes": 0, - "total_in_bytes": 53563520874 - }, - "source_throttle_time_in_millis": 50806, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4269332 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627211, - "stop_time_in_millis": 1569625899565, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 4272353, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75573651, - "total_time_in_millis": 3003 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51810259343, - "reused_in_bytes": 0, - "total_in_bytes": 51810259343 - }, - "source_throttle_time_in_millis": 64413, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 1397436 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569949629368, - "stop_time_in_millis": 1569951027494, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 1398126, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73323315, - "total_time_in_millis": 673 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51667215710, - "reused_in_bytes": 0, - "total_in_bytes": 51667215710 - }, - "source_throttle_time_in_millis": 5769555, - "target_throttle_time_in_millis": 4907272, - "total_time_in_millis": 10076371 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806194448, - "stop_time_in_millis": 1569816271701, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 10077253, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73372179, - "total_time_in_millis": 870 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52256840520, - "reused_in_bytes": 0, - "total_in_bytes": 52256840520 - }, - "source_throttle_time_in_millis": 1663874, - "target_throttle_time_in_millis": 4375600, - "total_time_in_millis": 6125806 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569792925710, - "stop_time_in_millis": 1569799055680, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 6129970, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73011981, - "total_time_in_millis": 3642 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 306, - "reused": 0, - "total": 306 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54703852724, - "reused_in_bytes": 0, - "total_in_bytes": 54703852724 - }, - "source_throttle_time_in_millis": 68307, - "target_throttle_time_in_millis": 46, - "total_time_in_millis": 2170171 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627211, - "stop_time_in_millis": 1569623799904, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2172692, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76708675, - "total_time_in_millis": 2507 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51667215710, - "reused_in_bytes": 0, - "total_in_bytes": 51667215710 - }, - "source_throttle_time_in_millis": 5309465, - "target_throttle_time_in_millis": 5498634, - "total_time_in_millis": 9991599 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811425496, - "stop_time_in_millis": 1569821418494, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 9992998, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73372179, - "total_time_in_millis": 872 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52374547428, - "reused_in_bytes": 0, - "total_in_bytes": 52374547428 - }, - "source_throttle_time_in_millis": 88843, - "target_throttle_time_in_millis": 7674, - "total_time_in_millis": 1468147 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569895410828, - "stop_time_in_millis": 1569896879675, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1468846, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73198579, - "total_time_in_millis": 688 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51794622248, - "reused_in_bytes": 0, - "total_in_bytes": 51794622248 - }, - "source_throttle_time_in_millis": 1334515, - "target_throttle_time_in_millis": 2347889, - "total_time_in_millis": 4743956 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569798931591, - "stop_time_in_millis": 1569803676470, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 4744878, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73344229, - "total_time_in_millis": 913 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53534668559, - "reused_in_bytes": 0, - "total_in_bytes": 53534668559 - }, - "source_throttle_time_in_millis": 51773, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 3909998 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627209, - "stop_time_in_millis": 1569625539706, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 3912496, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75762707, - "total_time_in_millis": 1964 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 333, - "reused": 0, - "total": 333 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54430250968, - "reused_in_bytes": 0, - "total_in_bytes": 54430250968 - }, - "source_throttle_time_in_millis": 67110, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2230611 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627212, - "stop_time_in_millis": 1569623860797, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 2233584, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76497393, - "total_time_in_millis": 2451 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51550079605, - "reused_in_bytes": 0, - "total_in_bytes": 51550079605 - }, - "source_throttle_time_in_millis": 3936874, - "target_throttle_time_in_millis": 3407263, - "total_time_in_millis": 8054818 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569775588297, - "stop_time_in_millis": 1569783644386, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 8056089, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73368453, - "total_time_in_millis": 740 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4722 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569623935850, - "stop_time_in_millis": 1569623942828, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 6978, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2212 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 55215354663, - "reused_in_bytes": 0, - "total_in_bytes": 55215354663 - }, - "source_throttle_time_in_millis": 52428, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 1657988 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569624026798, - "stop_time_in_millis": 1569625687599, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 1660800, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76401594, - "total_time_in_millis": 2799 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51787961519, - "reused_in_bytes": 0, - "total_in_bytes": 51787961519 - }, - "source_throttle_time_in_millis": 4286435, - "target_throttle_time_in_millis": 2748376, - "total_time_in_millis": 7537652 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569831450870, - "stop_time_in_millis": 1569838989273, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 7538402, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73372723, - "total_time_in_millis": 742 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51650252443, - "reused_in_bytes": 0, - "total_in_bytes": 51650252443 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 394, - "total_time_in_millis": 1171973 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569941125134, - "stop_time_in_millis": 1569942297755, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1172621, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73300487, - "total_time_in_millis": 638 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52374547428, - "reused_in_bytes": 0, - "total_in_bytes": 52374547428 - }, - "source_throttle_time_in_millis": 102879, - "target_throttle_time_in_millis": 29380, - "total_time_in_millis": 1491228 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569882653257, - "stop_time_in_millis": 1569884145124, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1491866, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73198579, - "total_time_in_millis": 628 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 274, - "reused": 0, - "total": 274 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54631893630, - "reused_in_bytes": 0, - "total_in_bytes": 54631893630 - }, - "source_throttle_time_in_millis": 95781, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2244032 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627208, - "stop_time_in_millis": 1569623873951, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 2246742, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76645299, - "total_time_in_millis": 2187 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51565518433, - "reused_in_bytes": 0, - "total_in_bytes": 51565518433 - }, - "source_throttle_time_in_millis": 6342454, - "target_throttle_time_in_millis": 4833553, - "total_time_in_millis": 11017092 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569782358853, - "stop_time_in_millis": 1569793377418, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 11018565, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73276431, - "total_time_in_millis": 1461 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52248444534, - "reused_in_bytes": 0, - "total_in_bytes": 52248444534 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 103727, - "total_time_in_millis": 1319163 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569956087422, - "stop_time_in_millis": 1569957407240, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 1319818, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72990491, - "total_time_in_millis": 646 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51050041780, - "reused_in_bytes": 0, - "total_in_bytes": 51050041780 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 36741, - "total_time_in_millis": 1218860 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569967354872, - "stop_time_in_millis": 1569968574363, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1219490, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72788527, - "total_time_in_millis": 622 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52248444534, - "reused_in_bytes": 0, - "total_in_bytes": 52248444534 - }, - "source_throttle_time_in_millis": 2991114, - "target_throttle_time_in_millis": 3404623, - "total_time_in_millis": 7261540 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569801240186, - "stop_time_in_millis": 1569808502568, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 7262382, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72990491, - "total_time_in_millis": 828 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 313, - "reused": 0, - "total": 313 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54258865852, - "reused_in_bytes": 0, - "total_in_bytes": 54258865852 - }, - "source_throttle_time_in_millis": 68776, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2214076 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627209, - "stop_time_in_millis": 1569623844370, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 2217161, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76371078, - "total_time_in_millis": 2535 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 333, - "reused": 0, - "total": 333 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 54430250968, - "reused_in_bytes": 0, - "total_in_bytes": 54430250968 - }, - "source_throttle_time_in_millis": 64455, - "target_throttle_time_in_millis": 75, - "total_time_in_millis": 2230612 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569621627210, - "stop_time_in_millis": 1569623860812, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 2233601, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 76497393, - "total_time_in_millis": 2470 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5955 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569623879777, - "stop_time_in_millis": 1569623886661, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 6884, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 874 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52316711898, - "reused_in_bytes": 0, - "total_in_bytes": 52316711898 - }, - "source_throttle_time_in_millis": 31937, - "target_throttle_time_in_millis": 150908, - "total_time_in_millis": 1336478 - }, - "index_name": "om-iu-bro-2019.09.25-000981", - "primary": true, - "source": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569866905881, - "stop_time_in_millis": 1569868243112, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 1337231, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73126652, - "total_time_in_millis": 705 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51623263083, - "reused_in_bytes": 0, - "total_in_bytes": 51623263083 - }, - "source_throttle_time_in_millis": 48410, - "target_throttle_time_in_millis": 63822, - "total_time_in_millis": 1343588 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569910618947, - "stop_time_in_millis": 1569911963168, - "target": { - "host": "172.16.1.216", - "id": "Zy_SYWxzSxy4lYkPVjcOlA", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "transport_address": "172.16.1.216:9300" - }, - "total_time_in_millis": 1344221, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73272298, - "total_time_in_millis": 623 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50972816685, - "reused_in_bytes": 0, - "total_in_bytes": 50972816685 - }, - "source_throttle_time_in_millis": 4321019, - "target_throttle_time_in_millis": 4124625, - "total_time_in_millis": 8320834 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569821535795, - "stop_time_in_millis": 1569829857981, - "target": { - "host": "172.16.1.242", - "id": "VmhwK5_HQFyAiiI5TDcWUg", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "transport_address": "172.16.1.242:9300" - }, - "total_time_in_millis": 8322185, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73637731, - "total_time_in_millis": 809 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50995464670, - "reused_in_bytes": 0, - "total_in_bytes": 50995464670 - }, - "source_throttle_time_in_millis": 309840, - "target_throttle_time_in_millis": 5084215, - "total_time_in_millis": 5591972 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569822467903, - "stop_time_in_millis": 1569828061229, - "target": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "total_time_in_millis": 5593326, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73426917, - "total_time_in_millis": 828 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52684101206, - "reused_in_bytes": 0, - "total_in_bytes": 52684101206 - }, - "source_throttle_time_in_millis": 66564, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2416150 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302925, - "stop_time_in_millis": 1569606722464, - "target": { - "host": "172.16.1.245", - "id": "IfVshWgoTqWkfmehFnarzQ", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "transport_address": "172.16.1.245:9300" - }, - "total_time_in_millis": 2419538, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75362093, - "total_time_in_millis": 3371 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 303, - "reused": 0, - "total": 303 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53371636524, - "reused_in_bytes": 0, - "total_in_bytes": 53371636524 - }, - "source_throttle_time_in_millis": 73426, - "target_throttle_time_in_millis": 20, - "total_time_in_millis": 2227672 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302916, - "stop_time_in_millis": 1569606532627, - "target": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "total_time_in_millis": 2229710, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75074689, - "total_time_in_millis": 2012 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51692175549, - "reused_in_bytes": 0, - "total_in_bytes": 51692175549 - }, - "source_throttle_time_in_millis": 130399, - "target_throttle_time_in_millis": 4758707, - "total_time_in_millis": 5115463 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569835732175, - "stop_time_in_millis": 1569840848374, - "target": { - "host": "172.16.1.111", - "id": "u5zemFgXTC6TattN4B6gbw", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "transport_address": "172.16.1.111:9300" - }, - "total_time_in_millis": 5116198, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73467973, - "total_time_in_millis": 708 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50995464670, - "reused_in_bytes": 0, - "total_in_bytes": 50995464670 - }, - "source_throttle_time_in_millis": 4501243, - "target_throttle_time_in_millis": 3597175, - "total_time_in_millis": 8360657 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.116", - "id": "AgMbpH0STqKRLxslxMXtIw", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "transport_address": "172.16.1.116:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569828061289, - "stop_time_in_millis": 1569836425137, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 8363847, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73426917, - "total_time_in_millis": 2068 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 5750 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569606533067, - "stop_time_in_millis": 1569606539629, - "target": { - "host": "172.16.1.190", - "id": "sZG2ItuSQHOOhGuVlbbgGQ", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "transport_address": "172.16.1.190:9300" - }, - "total_time_in_millis": 6562, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 768 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 237, - "reused": 0, - "total": 237 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53181734478, - "reused_in_bytes": 0, - "total_in_bytes": 53181734478 - }, - "source_throttle_time_in_millis": 62953, - "target_throttle_time_in_millis": 35, - "total_time_in_millis": 2178271 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302916, - "stop_time_in_millis": 1569606484214, - "target": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "total_time_in_millis": 2181297, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75044241, - "total_time_in_millis": 2440 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 292, - "reused": 0, - "total": 292 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52797823217, - "reused_in_bytes": 0, - "total_in_bytes": 52797823217 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 159, - "total_time_in_millis": 1506170 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569606453426, - "stop_time_in_millis": 1569607962759, - "target": { - "host": "172.16.1.194", - "id": "2-cKgQ3uRxqku-4pJxya9g", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "transport_address": "172.16.1.194:9300" - }, - "total_time_in_millis": 1509332, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75429953, - "total_time_in_millis": 3137 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50966476640, - "reused_in_bytes": 0, - "total_in_bytes": 50966476640 - }, - "source_throttle_time_in_millis": 4106225, - "target_throttle_time_in_millis": 5760231, - "total_time_in_millis": 9203257 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569781201842, - "stop_time_in_millis": 1569790406687, - "target": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "total_time_in_millis": 9204844, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73561637, - "total_time_in_millis": 1051 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51692175549, - "reused_in_bytes": 0, - "total_in_bytes": 51692175549 - }, - "source_throttle_time_in_millis": 5108703, - "target_throttle_time_in_millis": 5741678, - "total_time_in_millis": 10235944 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811814702, - "stop_time_in_millis": 1569822052128, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 10237426, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73467973, - "total_time_in_millis": 806 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50409056604, - "reused_in_bytes": 0, - "total_in_bytes": 50409056604 - }, - "source_throttle_time_in_millis": 4860124, - "target_throttle_time_in_millis": 4734754, - "total_time_in_millis": 9440865 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569827575019, - "stop_time_in_millis": 1569837016723, - "target": { - "host": "172.16.1.107", - "id": "z8Ei5tIfSmq-y8ieUeAKiw", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "transport_address": "172.16.1.107:9300" - }, - "total_time_in_millis": 9441703, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73234979, - "total_time_in_millis": 823 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51623263083, - "reused_in_bytes": 0, - "total_in_bytes": 51623263083 - }, - "source_throttle_time_in_millis": 5546562, - "target_throttle_time_in_millis": 5058273, - "total_time_in_millis": 10237122 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569806194408, - "stop_time_in_millis": 1569816432353, - "target": { - "host": "172.16.1.238", - "id": "B-eD78fVS1G5st41XrrsQQ", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "transport_address": "172.16.1.238:9300" - }, - "total_time_in_millis": 10237945, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73272298, - "total_time_in_millis": 808 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51108916623, - "reused_in_bytes": 0, - "total_in_bytes": 51108916623 - }, - "source_throttle_time_in_millis": 6400628, - "target_throttle_time_in_millis": 6004308, - "total_time_in_millis": 11314767 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569783196236, - "stop_time_in_millis": 1569794515725, - "target": { - "host": "172.16.1.70", - "id": "8c-ntk3fQ4yuDO4SolrmgQ", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "transport_address": "172.16.1.70:9300" - }, - "total_time_in_millis": 11319489, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73618933, - "total_time_in_millis": 4203 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 304, - "reused": 0, - "total": 304 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52848237884, - "reused_in_bytes": 0, - "total_in_bytes": 52848237884 - }, - "source_throttle_time_in_millis": 68884, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 2098144 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302916, - "stop_time_in_millis": 1569606403654, - "target": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "total_time_in_millis": 2100737, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75364712, - "total_time_in_millis": 2568 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52833677479, - "reused_in_bytes": 0, - "total_in_bytes": 52833677479 - }, - "source_throttle_time_in_millis": 66824, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 2143665 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302918, - "stop_time_in_millis": 1569606449877, - "target": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "total_time_in_millis": 2146959, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75311858, - "total_time_in_millis": 2775 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51597456305, - "reused_in_bytes": 0, - "total_in_bytes": 51597456305 - }, - "source_throttle_time_in_millis": 20831, - "target_throttle_time_in_millis": 96616, - "total_time_in_millis": 1378274 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569952016548, - "stop_time_in_millis": 1569953395480, - "target": { - "host": "172.16.1.81", - "id": "2B-6sKqQR8y9L52cChtT-A", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "transport_address": "172.16.1.81:9300" - }, - "total_time_in_millis": 1378931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73291833, - "total_time_in_millis": 648 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50988344786, - "reused_in_bytes": 0, - "total_in_bytes": 50988344786 - }, - "source_throttle_time_in_millis": 105655, - "target_throttle_time_in_millis": 131094, - "total_time_in_millis": 1466700 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943486987, - "stop_time_in_millis": 1569944954347, - "target": { - "host": "172.16.1.100", - "id": "iAgoIxwKQAqddyXJJlHlCg", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "transport_address": "172.16.1.100:9300" - }, - "total_time_in_millis": 1467359, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73627115, - "total_time_in_millis": 651 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 285, - "reused": 0, - "total": 285 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53065339682, - "reused_in_bytes": 0, - "total_in_bytes": 53065339682 - }, - "source_throttle_time_in_millis": 19328, - "target_throttle_time_in_millis": 66, - "total_time_in_millis": 2214475 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302916, - "stop_time_in_millis": 1569606519848, - "target": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "total_time_in_millis": 2216931, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74907375, - "total_time_in_millis": 1928 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50287665768, - "reused_in_bytes": 0, - "total_in_bytes": 50287665768 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 269, - "total_time_in_millis": 1146517 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569929867885, - "stop_time_in_millis": 1569931015000, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 1147114, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72853213, - "total_time_in_millis": 590 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50287665768, - "reused_in_bytes": 0, - "total_in_bytes": 50287665768 - }, - "source_throttle_time_in_millis": 327785, - "target_throttle_time_in_millis": 37497, - "total_time_in_millis": 1650166 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569943091961, - "stop_time_in_millis": 1569944742798, - "target": { - "host": "172.16.1.65", - "id": "i8xzV9jfRDmiKDVOkpiH1w", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "transport_address": "172.16.1.65:9300" - }, - "total_time_in_millis": 1650836, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 72853213, - "total_time_in_millis": 661 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 4939 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569606334577, - "stop_time_in_millis": 1569606342252, - "target": { - "host": "172.16.1.21", - "id": "tdFhsZDUS3OMXKKSgB31iA", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "transport_address": "172.16.1.21:9300" - }, - "total_time_in_millis": 7675, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": -1, - "total_time_in_millis": 2692 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50816794381, - "reused_in_bytes": 0, - "total_in_bytes": 50816794381 - }, - "source_throttle_time_in_millis": 4318356, - "target_throttle_time_in_millis": 3262679, - "total_time_in_millis": 8530729 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569774034763, - "stop_time_in_millis": 1569782566825, - "target": { - "host": "172.16.1.220", - "id": "bY-cxyR0RSuMiRYlV6Sj7g", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "transport_address": "172.16.1.220:9300" - }, - "total_time_in_millis": 8532062, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73585816, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51155048476, - "reused_in_bytes": 0, - "total_in_bytes": 51155048476 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 29645, - "total_time_in_millis": 1668712 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.139", - "id": "JCvzxsoFQ5KMUCNycmdzig", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "transport_address": "172.16.1.139:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569948507834, - "stop_time_in_millis": 1569950177203, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 1669369, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73547727, - "total_time_in_millis": 637 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50988344786, - "reused_in_bytes": 0, - "total_in_bytes": 50988344786 - }, - "source_throttle_time_in_millis": 55365, - "target_throttle_time_in_millis": 13936, - "total_time_in_millis": 1291775 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569934388117, - "stop_time_in_millis": 1569935680505, - "target": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "total_time_in_millis": 1292387, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73627115, - "total_time_in_millis": 599 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 294, - "reused": 0, - "total": 294 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 53041228329, - "reused_in_bytes": 0, - "total_in_bytes": 53041228329 - }, - "source_throttle_time_in_millis": 1, - "target_throttle_time_in_millis": 251, - "total_time_in_millis": 1240158 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569606447960, - "stop_time_in_millis": 1569607690053, - "target": { - "host": "172.16.1.178", - "id": "BtNzO_LsQpqkgRgGHAhQxg", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "transport_address": "172.16.1.178:9300" - }, - "total_time_in_millis": 1242093, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74916804, - "total_time_in_millis": 1927 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51080381642, - "reused_in_bytes": 0, - "total_in_bytes": 51080381642 - }, - "source_throttle_time_in_millis": 426164, - "target_throttle_time_in_millis": 6777301, - "total_time_in_millis": 6932895 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569790993579, - "stop_time_in_millis": 1569797927785, - "target": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "total_time_in_millis": 6934206, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73576124, - "total_time_in_millis": 787 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 328, - "reused": 0, - "total": 328 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51957399338, - "reused_in_bytes": 0, - "total_in_bytes": 51957399338 - }, - "source_throttle_time_in_millis": 50610, - "target_throttle_time_in_millis": 45, - "total_time_in_millis": 3872358 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": true, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302916, - "stop_time_in_millis": 1569608178657, - "target": { - "host": "172.16.1.201", - "id": "KmYYNfYtTlKatZljOJheqQ", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "transport_address": "172.16.1.201:9300" - }, - "total_time_in_millis": 3875741, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 74932904, - "total_time_in_millis": 2865 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 301, - "reused": 0, - "total": 301 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 52684101206, - "reused_in_bytes": 0, - "total_in_bytes": 52684101206 - }, - "source_throttle_time_in_millis": 90519, - "target_throttle_time_in_millis": 3, - "total_time_in_millis": 2122234 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569604302918, - "stop_time_in_millis": 1569606427816, - "target": { - "host": "172.16.1.26", - "id": "F3SDHWgTTSSCRpFLRuTd7A", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "transport_address": "172.16.1.26:9300" - }, - "total_time_in_millis": 2124898, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 75362093, - "total_time_in_millis": 2652 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51080381642, - "reused_in_bytes": 0, - "total_in_bytes": 51080381642 - }, - "source_throttle_time_in_millis": 85647, - "target_throttle_time_in_millis": 97, - "total_time_in_millis": 1301733 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.76", - "id": "flL9OS4TR8Kjmm-rTVHU5g", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "transport_address": "172.16.1.76:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569899930175, - "stop_time_in_millis": 1569901232535, - "target": { - "host": "172.16.1.9", - "id": "9uYu0U-tSjifvO6YLvNY5Q", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "transport_address": "172.16.1.9:9300" - }, - "total_time_in_millis": 1302360, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73576124, - "total_time_in_millis": 617 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51721215756, - "reused_in_bytes": 0, - "total_in_bytes": 51721215756 - }, - "source_throttle_time_in_millis": 379168, - "target_throttle_time_in_millis": 6594371, - "total_time_in_millis": 6867566 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.115", - "id": "1B2TfiFoSCCBO_h2zoYbaQ", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "transport_address": "172.16.1.115:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569810280853, - "stop_time_in_millis": 1569817149171, - "target": { - "host": "172.16.1.45", - "id": "lo4CBuVcRnylVW7aOLRxsA", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "transport_address": "172.16.1.45:9300" - }, - "total_time_in_millis": 6868318, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73398630, - "total_time_in_millis": 735 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51591287520, - "reused_in_bytes": 0, - "total_in_bytes": 51591287520 - }, - "source_throttle_time_in_millis": 102003, - "target_throttle_time_in_millis": 29936, - "total_time_in_millis": 1351443 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.0", - "id": "IbXa_L0vS0mePhKF9Uu-IA", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "transport_address": "172.16.1.0:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569858017549, - "stop_time_in_millis": 1569859369610, - "target": { - "host": "172.16.1.215", - "id": "l01mdpHKTIycD8YpHgstOQ", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "transport_address": "172.16.1.215:9300" - }, - "total_time_in_millis": 1352061, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73271374, - "total_time_in_millis": 609 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 50966476640, - "reused_in_bytes": 0, - "total_in_bytes": 50966476640 - }, - "source_throttle_time_in_millis": 1770080, - "target_throttle_time_in_millis": 1761014, - "total_time_in_millis": 4556543 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.44", - "id": "-T_cq0TLQjqlvpX0iVCBNg", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "transport_address": "172.16.1.44:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569796142617, - "stop_time_in_millis": 1569800699901, - "target": { - "host": "172.16.1.243", - "id": "iKB0877lSR6ocEzyKq9BRQ", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "transport_address": "172.16.1.243:9300" - }, - "total_time_in_millis": 4557284, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73561637, - "total_time_in_millis": 727 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51177270766, - "reused_in_bytes": 0, - "total_in_bytes": 51177270766 - }, - "source_throttle_time_in_millis": 1117949, - "target_throttle_time_in_millis": 47539, - "total_time_in_millis": 2408716 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.122", - "id": "8FwJYnAMT0afpHOfKlA0Sg", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "transport_address": "172.16.1.122:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569913446517, - "stop_time_in_millis": 1569915855895, - "target": { - "host": "172.16.1.182", - "id": "VEO2NkvRRCaMPmF6ogMTRg", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "transport_address": "172.16.1.182:9300" - }, - "total_time_in_millis": 2409377, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73552869, - "total_time_in_millis": 653 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 51798354133, - "reused_in_bytes": 0, - "total_in_bytes": 51798354133 - }, - "source_throttle_time_in_millis": 2686975, - "target_throttle_time_in_millis": 3377564, - "total_time_in_millis": 7086665 - }, - "index_name": "om-iu-bro-2019.09.25-000980", - "primary": false, - "source": { - "host": "172.16.1.177", - "id": "T5YTkUVTQIeK_uxA2QHQ9A", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "transport_address": "172.16.1.177:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569811454285, - "stop_time_in_millis": 1569818541760, - "target": { - "host": "172.16.1.205", - "id": "VXzx30rRR1GjnRBYLIi5gQ", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "transport_address": "172.16.1.205:9300" - }, - "total_time_in_millis": 7087475, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 73319218, - "total_time_in_millis": 791 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 54 - }, - "index_name": ".watcher-history-9-2019.10.03", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570060828708, - "stop_time_in_millis": 1570060828821, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 112, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 44 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 120 - }, - "index_name": ".watcher-history-9-2019.10.03", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570060832415, - "stop_time_in_millis": 1570060832683, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 268, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 91 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 213 - }, - "index_name": ".watcher-history-9-2019.10.01", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569888007980, - "stop_time_in_millis": 1569888008230, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 249, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 21 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 141 - }, - "index_name": ".watcher-history-9-2019.10.01", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569888014709, - "stop_time_in_millis": 1569888014917, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 208, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 398948346, - "reused_in_bytes": 0, - "total_in_bytes": 398948346 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 15, - "total_time_in_millis": 10269 - }, - "index_name": "om-iu-suricata-2019.09.07-000096", - "primary": true, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570014694225, - "stop_time_in_millis": 1570014704529, - "target": { - "host": "172.16.1.84", - "id": "z29jmIBjT0atD5RMcz07Bw", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "transport_address": "172.16.1.84:9300" - }, - "total_time_in_millis": 10303, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 91462, - "total_time_in_millis": 26 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 83, - "reused": 0, - "total": 83 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 398340255, - "reused_in_bytes": 0, - "total_in_bytes": 398340255 - }, - "source_throttle_time_in_millis": 1907, - "target_throttle_time_in_millis": 13, - "total_time_in_millis": 26331 - }, - "index_name": "om-iu-suricata-2019.09.07-000096", - "primary": true, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568116296414, - "stop_time_in_millis": 1568116323628, - "target": { - "host": "172.16.1.195", - "id": "WnMyIlYBQqWW45a-TwpwqQ", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "transport_address": "172.16.1.195:9300" - }, - "total_time_in_millis": 27213, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 91079, - "total_time_in_millis": 86 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 15, - "reused": 0, - "total": 15 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 398948346, - "reused_in_bytes": 0, - "total_in_bytes": 398948346 - }, - "source_throttle_time_in_millis": 30792, - "target_throttle_time_in_millis": 2701, - "total_time_in_millis": 50947 - }, - "index_name": "om-iu-suricata-2019.09.07-000096", - "primary": false, - "source": { - "host": "172.16.1.4", - "id": "OVW5WfABQ_GG_SYE3HrJzw", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "transport_address": "172.16.1.4:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569818508634, - "stop_time_in_millis": 1569818559644, - "target": { - "host": "172.16.1.253", - "id": "nntzfh-vQpWHs0j_BZ-wWQ", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "transport_address": "172.16.1.253:9300" - }, - "total_time_in_millis": 51010, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 91462, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 83, - "reused": 0, - "total": 83 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 398340255, - "reused_in_bytes": 0, - "total_in_bytes": 398340255 - }, - "source_throttle_time_in_millis": 1901, - "target_throttle_time_in_millis": 205, - "total_time_in_millis": 26870 - }, - "index_name": "om-iu-suricata-2019.09.07-000096", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1568116296410, - "stop_time_in_millis": 1568116323390, - "target": { - "host": "172.16.1.57", - "id": "quRSeXloStCNZe-DZ5ec7g", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "transport_address": "172.16.1.57:9300" - }, - "total_time_in_millis": 26979, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 91079, - "total_time_in_millis": 100 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 136 - }, - "index_name": ".watcher-history-9-2019.10.02", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1569974419344, - "stop_time_in_millis": 1569974419730, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 386, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 38 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 592 - }, - "index_name": ".watcher-history-9-2019.10.02", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1569974426156, - "stop_time_in_millis": 1569974427038, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 881, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 184 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 124 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702097, - "stop_time_in_millis": 1570113702316, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 219, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 70 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 23 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698688, - "stop_time_in_millis": 1570113698732, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 44, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 12 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 43 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698687, - "stop_time_in_millis": 1570113698769, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 82, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 27 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 85 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702097, - "stop_time_in_millis": 1570113702280, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 182, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 65 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 56 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698815, - "stop_time_in_millis": 1570113698953, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 137, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 59 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 271 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702098, - "stop_time_in_millis": 1570113702611, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 513, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 207 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 63 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702098, - "stop_time_in_millis": 1570113702242, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 143, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 50 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 56 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698683, - "stop_time_in_millis": 1570113698783, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 100, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 24 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 104 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698691, - "stop_time_in_millis": 1570113698901, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 209, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 55 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 414 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702111, - "stop_time_in_millis": 1570113703357, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 1246, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 714 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 112 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702097, - "stop_time_in_millis": 1570113702330, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 232, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 73 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 85 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698680, - "stop_time_in_millis": 1570113698827, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 147, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 48 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 154 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702102, - "stop_time_in_millis": 1570113702457, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 355, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 94 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 131 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698766, - "stop_time_in_millis": 1570113698969, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 203, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 43 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 23 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698679, - "stop_time_in_millis": 1570113698727, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 48, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 12 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 250 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702104, - "stop_time_in_millis": 1570113703027, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 922, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 85 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 217 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702105, - "stop_time_in_millis": 1570113702644, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 539, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 270 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 62 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698679, - "stop_time_in_millis": 1570113698926, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 246, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 59 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 116 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702097, - "stop_time_in_millis": 1570113702850, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 753, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 46 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 46 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698683, - "stop_time_in_millis": 1570113698772, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 88, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 29 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 40 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698673, - "stop_time_in_millis": 1570113698757, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 84, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 17 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 126 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702103, - "stop_time_in_millis": 1570113702329, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 225, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 57 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 102 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698686, - "stop_time_in_millis": 1570113699669, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 983, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 42 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 43 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702099, - "stop_time_in_millis": 1570113702209, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 110, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 47 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 216 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698692, - "stop_time_in_millis": 1570113700837, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 2144, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 15 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 166 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702099, - "stop_time_in_millis": 1570113702428, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 328, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 111 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 108 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702258, - "stop_time_in_millis": 1570113702525, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 266, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 135 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 45 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698682, - "stop_time_in_millis": 1570113698785, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 103, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 36 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 234 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702104, - "stop_time_in_millis": 1570113702534, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 430, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 111 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 75 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698768, - "stop_time_in_millis": 1570113698904, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 135, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 33 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 53 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702095, - "stop_time_in_millis": 1570113702890, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 794, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 49 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 21 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698677, - "stop_time_in_millis": 1570113698723, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 45, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 17 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 125 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698677, - "stop_time_in_millis": 1570113699731, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 1054, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 34 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 65 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702102, - "stop_time_in_millis": 1570113702239, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 136, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 55 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 123 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570113702099, - "stop_time_in_millis": 1570113702390, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 290, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 107 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 71 - }, - "index_name": "om-iu-bro-2019.10.03-001017", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570113698672, - "stop_time_in_millis": 1570113698786, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 113, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 26 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 147 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495853, - "stop_time_in_millis": 1570130496065, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 212, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 33 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 128 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497676, - "stop_time_in_millis": 1570130498033, - "target": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "total_time_in_millis": 356, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 74 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 202 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497683, - "stop_time_in_millis": 1570130498033, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 350, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 79 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 432 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495874, - "stop_time_in_millis": 1570130496516, - "target": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "total_time_in_millis": 642, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 102 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 111 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130501250, - "stop_time_in_millis": 1570130501483, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 232, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 84 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 110 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495896, - "stop_time_in_millis": 1570130496063, - "target": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "total_time_in_millis": 167, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 25 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 115 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495858, - "stop_time_in_millis": 1570130496066, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 207, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 13, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 216 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.117", - "id": "3VXPo0aBTgqBWoZyG7VeDQ", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "transport_address": "172.16.0.117:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497694, - "stop_time_in_millis": 1570130498058, - "target": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "total_time_in_millis": 363, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 94 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 16, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 71 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495852, - "stop_time_in_millis": 1570130496535, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 683, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 588 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 14, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 209 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.71", - "id": "nsqq83wGTkGsNqslvlybiA", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "transport_address": "172.16.0.71:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497676, - "stop_time_in_millis": 1570130498067, - "target": { - "host": "172.16.1.138", - "id": "hRf9HsyRTZ-LGzhDBTZM3w", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "transport_address": "172.16.1.138:9300" - }, - "total_time_in_millis": 391, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 147 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 15, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 169 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.218", - "id": "4EgMjLR8S0G9aJs7AB-Z0g", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "transport_address": "172.16.1.218:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497682, - "stop_time_in_millis": 1570130497997, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 314, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 97 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 17, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 319 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495851, - "stop_time_in_millis": 1570130496581, - "target": { - "host": "172.16.1.204", - "id": "qdDv_MrWRPqL-9t_fjSk1A", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "transport_address": "172.16.1.204:9300" - }, - "total_time_in_millis": 730, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 81 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 231 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497683, - "stop_time_in_millis": 1570130498760, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 1077, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 133 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 21 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495840, - "stop_time_in_millis": 1570130495914, - "target": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "total_time_in_millis": 74, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 33 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 74 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495901, - "stop_time_in_millis": 1570130496023, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 122, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 14 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 0, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 74 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.136", - "id": "t1HJSnHUT22LT5RFSeow8A", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "transport_address": "172.16.1.136:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130498054, - "stop_time_in_millis": 1570130498706, - "target": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "total_time_in_millis": 651, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 41 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 177 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495857, - "stop_time_in_millis": 1570130496117, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 260, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 66 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 1, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 138 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.51", - "id": "B3CAleM0QtCMcc9OgRH79g", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "transport_address": "172.16.0.51:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497848, - "stop_time_in_millis": 1570130499633, - "target": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "total_time_in_millis": 1785, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 125 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 150 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497676, - "stop_time_in_millis": 1570130498605, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 929, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 109 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 147 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130496049, - "stop_time_in_millis": 1570130496316, - "target": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "total_time_in_millis": 266, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 52 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 2, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 248 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.112", - "id": "wgF8TsDeTVyBurL3xct0DQ", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "transport_address": "172.16.1.112:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497674, - "stop_time_in_millis": 1570130498381, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 706, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 103 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 33 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495840, - "stop_time_in_millis": 1570130495910, - "target": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "total_time_in_millis": 70, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 20 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 50 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495885, - "stop_time_in_millis": 1570130496008, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 122, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 40 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 3, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 112 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.47", - "id": "08NXHjcqQQaenDpdQugS4w", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "transport_address": "172.16.1.47:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497678, - "stop_time_in_millis": 1570130497883, - "target": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "total_time_in_millis": 204, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 65 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 4, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 242 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.11", - "id": "4zqr4ku4RrSZJtrZSN5Mlg", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "transport_address": "172.16.0.11:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497676, - "stop_time_in_millis": 1570130498697, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 1021, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 186 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 350 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495860, - "stop_time_in_millis": 1570130496461, - "target": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "total_time_in_millis": 600, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 185 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 5, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 134 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.70", - "id": "O78sh8HUSkaInv_VIQ0vQw", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "transport_address": "172.16.0.70:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497676, - "stop_time_in_millis": 1570130498099, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 423, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 246 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 84 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495846, - "stop_time_in_millis": 1570130495994, - "target": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "total_time_in_millis": 147, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 37 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 204 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495853, - "stop_time_in_millis": 1570130496193, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 340, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 80 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 6, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 198 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.251", - "id": "jVAJY9H3RdqBQeJoQrxcnA", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "transport_address": "172.16.0.251:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497759, - "stop_time_in_millis": 1570130498085, - "target": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "total_time_in_millis": 325, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 82 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 7, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 115 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.0.187", - "id": "JT834ic5St6HS3oLbKcfVQ", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "transport_address": "172.16.0.187:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497684, - "stop_time_in_millis": 1570130498052, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 367, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 220 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 9, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 177 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495850, - "stop_time_in_millis": 1570130497742, - "target": { - "host": "172.16.1.249", - "id": "-hZOu0UJTHSbkZVSFPUYVw", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "transport_address": "172.16.1.249:9300" - }, - "total_time_in_millis": 1892, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 51 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 12, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 154 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.156", - "id": "Elc3XlQ6S22vnPjQw-V2Fg", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "transport_address": "172.16.1.156:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497677, - "stop_time_in_millis": 1570130497919, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 242, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 51 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 10, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 131 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495845, - "stop_time_in_millis": 1570130496148, - "target": { - "host": "172.16.0.114", - "id": "QDlGTG9SRiatpVkMC42xGA", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "transport_address": "172.16.0.114:9300" - }, - "total_time_in_millis": 302, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 127 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 8, - "index": { - "files": { - "percent": "100.0%", - "recovered": 1, - "reused": 0, - "total": 1 - }, - "size": { - "percent": "100.0%", - "recovered_in_bytes": 230, - "reused_in_bytes": 0, - "total_in_bytes": 230 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 135 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": false, - "source": { - "host": "172.16.1.78", - "id": "LtCntqP6QjSpGIWEDnBaGQ", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "transport_address": "172.16.1.78:9300" - }, - "stage": "DONE", - "start_time_in_millis": 1570130497782, - "stop_time_in_millis": 1570130498024, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 242, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 63 - }, - "type": "PEER", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - }, - { - "id": 11, - "index": { - "files": { - "percent": "0.0%", - "recovered": 0, - "reused": 0, - "total": 0 - }, - "size": { - "percent": "0.0%", - "recovered_in_bytes": 0, - "reused_in_bytes": 0, - "total_in_bytes": 0 - }, - "source_throttle_time_in_millis": 0, - "target_throttle_time_in_millis": 0, - "total_time_in_millis": 144 - }, - "index_name": "om-iu-bro-2019.10.03-001018", - "primary": true, - "source": { - }, - "stage": "DONE", - "start_time_in_millis": 1570130495850, - "stop_time_in_millis": 1570130496647, - "target": { - "host": "172.16.1.185", - "id": "98npGP6HRPu5OOG4hRYbiA", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "transport_address": "172.16.1.185:9300" - }, - "total_time_in_millis": 797, - "translog": { - "percent": "100.0%", - "recovered": 0, - "total": 0, - "total_on_start": 0, - "total_time_in_millis": 51 - }, - "type": "EMPTY_STORE", - "verify_index": { - "check_index_time_in_millis": 0, - "total_time_in_millis": 0 - } - } - ] - }, - "interval_ms": 10000, - "source_node": { - "host": "172.16.1.38", - "ip": "172.16.1.38", - "name": "mas1-40-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.38:9300", - "uuid": "rFjThHZdRvyhpF0aMT7fTw" - }, - "timestamp": "2019-10-03T19:41:03.261Z", - "type": "index_recovery" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "WLUjk20Bd_aHqZFw3Ep8", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5202264852, - "read_kilobytes": 38050755452, - "read_operations": 3100135574, - "write_kilobytes": 165292749056, - "write_operations": 2102129278 - } - }, - "total": { - "available_in_bytes": 569830297600, - "free_in_bytes": 665866244096, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1633266845 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 2912 - }, - "indexing": { - "index_time_in_millis": 30352855434, - "index_total": 27840439458, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 25707, - "hit_count": 1344558, - "memory_size_in_bytes": 498144551, - "miss_count": 1308519 - }, - "request_cache": { - "evictions": 0, - "hit_count": 12202, - "memory_size_in_bytes": 18249, - "miss_count": 440 - }, - "search": { - "query_time_in_millis": 414590394, - "query_total": 11299532 - }, - "segments": { - "count": 965, - "doc_values_memory_in_bytes": 14760656, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 731070692, - "memory_in_bytes": 1606659039, - "norms_memory_in_bytes": 277376, - "points_memory_in_bytes": 159651159, - "stored_fields_memory_in_bytes": 459479424, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 972490424, - "version_map_memory_in_bytes": 3497110 - }, - "store": { - "size_in_bytes": 1219420951894 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8227, - "collection_time_in_millis": 1478412 - }, - "young": { - "collection_count": 3549581, - "collection_time_in_millis": 349717499 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 11874461768, - "heap_used_percent": 36 - } - }, - "mlockall": true, - "node_id": "98npGP6HRPu5OOG4hRYbiA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 30323551288647400 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61069467648" - } - }, - "cpu": { - "load_average": { - "15m": 13.89, - "1m": 13.4, - "5m": 14.58 - } - } - }, - "process": { - "cpu": { - "percent": 47 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3317 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 208, - "rejected": 384958, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.671Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "timestamp": "2019-10-03T19:41:03.258Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "TLUjk20Bd_aHqZFw20oA", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5142549434, - "read_kilobytes": 36432017612, - "read_operations": 3002770012, - "write_kilobytes": 160153813136, - "write_operations": 2139779422 - } - }, - "total": { - "available_in_bytes": 492870189056, - "free_in_bytes": 588906135552, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1634306195 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3384 - }, - "indexing": { - "index_time_in_millis": 23755253787, - "index_total": 27370743432, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 28641, - "hit_count": 1532001, - "memory_size_in_bytes": 516492729, - "miss_count": 1490638 - }, - "request_cache": { - "evictions": 0, - "hit_count": 441, - "memory_size_in_bytes": 20283, - "miss_count": 435 - }, - "search": { - "query_time_in_millis": 354556703, - "query_total": 13099420 - }, - "segments": { - "count": 936, - "doc_values_memory_in_bytes": 15015890, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 725521210, - "memory_in_bytes": 1614342841, - "norms_memory_in_bytes": 274496, - "points_memory_in_bytes": 159794812, - "stored_fields_memory_in_bytes": 461527352, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 977730291, - "version_map_memory_in_bytes": 1204610 - }, - "store": { - "size_in_bytes": 1188921033192 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8233, - "collection_time_in_millis": 1169716 - }, - "young": { - "collection_count": 4041680, - "collection_time_in_millis": 298425727 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 10284810744, - "heap_used_percent": 32 - } - }, - "mlockall": true, - "node_id": "wgF8TsDeTVyBurL3xct0DQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 25597364984366652 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60940705792" - } - }, - "cpu": { - "load_average": { - "15m": 12.37, - "1m": 12.77, - "5m": 12.72 - } - } - }, - "process": { - "cpu": { - "percent": 58 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3200 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 28 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 160169, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.182Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "timestamp": "2019-10-03T19:41:03.183Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "PrUjk20Bd_aHqZFw2Upu", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198704850, - "read_kilobytes": 30836341656, - "read_operations": 75132002, - "write_kilobytes": 33955589100, - "write_operations": 123572848 - } - }, - "total": { - "available_in_bytes": 1535359115264, - "free_in_bytes": 1823466954752, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5451958270 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 14892016 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1269, - "hit_count": 10979, - "memory_size_in_bytes": 296976010, - "miss_count": 105191 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4022, - "memory_size_in_bytes": 12576920, - "miss_count": 7673 - }, - "search": { - "query_time_in_millis": 164431464, - "query_total": 138373 - }, - "segments": { - "count": 255, - "doc_values_memory_in_bytes": 10548012, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4201508362, - "norms_memory_in_bytes": 82048, - "points_memory_in_bytes": 476095691, - "stored_fields_memory_in_bytes": 1481395632, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233386979, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3804079420108 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 9574 - }, - "young": { - "collection_count": 247629, - "collection_time_in_millis": 7564915 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 14184699824, - "heap_used_percent": 44 - } - }, - "mlockall": true, - "node_id": "9uYu0U-tSjifvO6YLvNY5Q", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2326589071693779 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60705247232" - } - }, - "cpu": { - "load_average": { - "15m": 0.6, - "1m": 0.62, - "5m": 0.68 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2519 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 42 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.131Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "timestamp": "2019-10-03T19:41:03.132Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "WrUjk20Bd_aHqZFw3ErI", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5324363216, - "read_kilobytes": 38350242068, - "read_operations": 3075352566, - "write_kilobytes": 165814745288, - "write_operations": 2249010650 - } - }, - "total": { - "available_in_bytes": 596509429760, - "free_in_bytes": 692545376256, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1630446738 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 3672 - }, - "indexing": { - "index_time_in_millis": 25230182826, - "index_total": 28237403356, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 46888, - "hit_count": 4785035, - "memory_size_in_bytes": 499240914, - "miss_count": 1576500 - }, - "request_cache": { - "evictions": 0, - "hit_count": 994406, - "memory_size_in_bytes": 16320, - "miss_count": 62041 - }, - "search": { - "query_time_in_millis": 417060349, - "query_total": 9987027 - }, - "segments": { - "count": 941, - "doc_values_memory_in_bytes": 14460778, - "fixed_bit_set_memory_in_bytes": 38240, - "index_writer_memory_in_bytes": 832348112, - "memory_in_bytes": 1610777574, - "norms_memory_in_bytes": 263040, - "points_memory_in_bytes": 159544271, - "stored_fields_memory_in_bytes": 460643984, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 975865501, - "version_map_memory_in_bytes": 3566431 - }, - "store": { - "size_in_bytes": 1192680542805 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8528, - "collection_time_in_millis": 1245439 - }, - "young": { - "collection_count": 4123736, - "collection_time_in_millis": 316009346 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 19303755656, - "heap_used_percent": 60 - } - }, - "mlockall": true, - "node_id": "4zqr4ku4RrSZJtrZSN5Mlg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 27230667350226548 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61046190080" - } - }, - "cpu": { - "load_average": { - "15m": 11.83, - "1m": 8.95, - "5m": 11.65 - } - } - }, - "process": { - "cpu": { - "percent": 59 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3302 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 50 - }, - "write": { - "queue": 59, - "rejected": 187249, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:03.008Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "timestamp": "2019-10-03T19:41:03.009Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "PLUjk20Bd_aHqZFw2ErB", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 199185695, - "read_kilobytes": 30278726620, - "read_operations": 73204739, - "write_kilobytes": 35078505560, - "write_operations": 125980956 - } - }, - "total": { - "available_in_bytes": 1523706949632, - "free_in_bytes": 1811814789120, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5461213352 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 707, - "hit_count": 7923, - "memory_size_in_bytes": 232220054, - "miss_count": 80041 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2518, - "memory_size_in_bytes": 13178416, - "miss_count": 7697 - }, - "search": { - "query_time_in_millis": 164470331, - "query_total": 130707 - }, - "segments": { - "count": 266, - "doc_values_memory_in_bytes": 10849258, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4207504584, - "norms_memory_in_bytes": 91008, - "points_memory_in_bytes": 476897548, - "stored_fields_memory_in_bytes": 1484482736, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2235184034, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3816095129824 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1785 - }, - "young": { - "collection_count": 260932, - "collection_time_in_millis": 7803818 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 22985525808, - "heap_used_percent": 71 - } - }, - "mlockall": true, - "node_id": "8FwJYnAMT0afpHOfKlA0Sg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2395043954557986 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60738695168" - } - }, - "cpu": { - "load_average": { - "15m": 0.55, - "1m": 0.78, - "5m": 0.68 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2503 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 31 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.931Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "timestamp": "2019-10-03T19:41:02.931Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ObUjk20Bd_aHqZFw2EpV", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5059527152, - "read_kilobytes": 35597203556, - "read_operations": 2988285187, - "write_kilobytes": 162475858880, - "write_operations": 2071241965 - } - }, - "total": { - "available_in_bytes": 569347727360, - "free_in_bytes": 665383673856, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1632579908 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 123000 - }, - "indexing": { - "index_time_in_millis": 29608008634, - "index_total": 27225574603, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 25538, - "hit_count": 1791764, - "memory_size_in_bytes": 504523784, - "miss_count": 1279916 - }, - "request_cache": { - "evictions": 0, - "hit_count": 173004, - "memory_size_in_bytes": 3978200, - "miss_count": 10229 - }, - "search": { - "query_time_in_millis": 364714974, - "query_total": 7471582 - }, - "segments": { - "count": 1030, - "doc_values_memory_in_bytes": 15316392, - "fixed_bit_set_memory_in_bytes": 39288, - "index_writer_memory_in_bytes": 797702320, - "memory_in_bytes": 1607218861, - "norms_memory_in_bytes": 296000, - "points_memory_in_bytes": 159553848, - "stored_fields_memory_in_bytes": 459046024, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 973006597, - "version_map_memory_in_bytes": 3520361 - }, - "store": { - "size_in_bytes": 1219479042369 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 8156, - "collection_time_in_millis": 1412032 - }, - "young": { - "collection_count": 3551382, - "collection_time_in_millis": 369966271 - } - } - }, - "mem": { - "heap_max_in_bytes": 32098877440, - "heap_used_in_bytes": 14574257832, - "heap_used_percent": 45 - } - }, - "mlockall": true, - "node_id": "4EgMjLR8S0G9aJs7AB-Z0g", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 28521457763404536 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61043748864" - } - }, - "cpu": { - "load_average": { - "15m": 13.69, - "1m": 11.35, - "5m": 13.36 - } - } - }, - "process": { - "cpu": { - "percent": 73 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3412 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 29 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 16 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 25 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 483, - "rejected": 2272214, - "threads": 16 - } - } - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.662Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "timestamp": "2019-10-03T19:41:02.664Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "NbUjk20Bd_aHqZFw10qO", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 211989806, - "read_kilobytes": 29784129656, - "read_operations": 71056363, - "write_kilobytes": 41750996316, - "write_operations": 140933443 - } - }, - "total": { - "available_in_bytes": 1534419632128, - "free_in_bytes": 1822527471616, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5454783141 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 26656600 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1107, - "hit_count": 11303, - "memory_size_in_bytes": 152401665, - "miss_count": 63759 - }, - "request_cache": { - "evictions": 0, - "hit_count": 5076, - "memory_size_in_bytes": 8641948, - "miss_count": 5723 - }, - "search": { - "query_time_in_millis": 171213448, - "query_total": 140815 - }, - "segments": { - "count": 252, - "doc_values_memory_in_bytes": 10627662, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4203262760, - "norms_memory_in_bytes": 87680, - "points_memory_in_bytes": 476326280, - "stored_fields_memory_in_bytes": 1482170448, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2234050690, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3809895954623 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 17, - "collection_time_in_millis": 10146 - }, - "young": { - "collection_count": 280972, - "collection_time_in_millis": 10119781 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 20370036016, - "heap_used_percent": 63 - } - }, - "mlockall": true, - "node_id": "IfVshWgoTqWkfmehFnarzQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2896124556832274 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60679888896" - } - }, - "cpu": { - "load_average": { - "15m": 0.68, - "1m": 0.68, - "5m": 0.73 - } - } - }, - "process": { - "cpu": { - "percent": 12 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2518 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 49 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.648Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "timestamp": "2019-10-03T19:41:02.649Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "NLUjk20Bd_aHqZFw10o2", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 190963237, - "read_kilobytes": 29135040380, - "read_operations": 69051070, - "write_kilobytes": 33107438744, - "write_operations": 121912167 - } - }, - "total": { - "available_in_bytes": 1564897341440, - "free_in_bytes": 1853005180928, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5409466724 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25740096 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1309, - "hit_count": 15181, - "memory_size_in_bytes": 327575645, - "miss_count": 92281 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1763, - "memory_size_in_bytes": 13783923, - "miss_count": 8618 - }, - "search": { - "query_time_in_millis": 160722164, - "query_total": 135223 - }, - "segments": { - "count": 251, - "doc_values_memory_in_bytes": 10460382, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4166460086, - "norms_memory_in_bytes": 83712, - "points_memory_in_bytes": 472525124, - "stored_fields_memory_in_bytes": 1470137864, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2213253004, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3773092310997 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11057 - }, - "young": { - "collection_count": 244716, - "collection_time_in_millis": 7513596 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 10084861344, - "heap_used_percent": 31 - } - }, - "mlockall": true, - "node_id": "BtNzO_LsQpqkgRgGHAhQxg", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2251346772012482 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60135022592" - } - }, - "cpu": { - "load_average": { - "15m": 0.62, - "1m": 0.89, - "5m": 0.77 - } - } - }, - "process": { - "cpu": { - "percent": 10 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2512 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.562Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "timestamp": "2019-10-03T19:41:02.562Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "MrUjk20Bd_aHqZFw1kr7", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198975532, - "read_kilobytes": 30555323428, - "read_operations": 73757475, - "write_kilobytes": 34932176372, - "write_operations": 125218057 - } - }, - "total": { - "available_in_bytes": 1545524572160, - "free_in_bytes": 1833632411648, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5426957562 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 731, - "hit_count": 6908, - "memory_size_in_bytes": 237575336, - "miss_count": 49624 - }, - "request_cache": { - "evictions": 0, - "hit_count": 4535, - "memory_size_in_bytes": 10675212, - "miss_count": 6575 - }, - "search": { - "query_time_in_millis": 160844479, - "query_total": 136041 - }, - "segments": { - "count": 281, - "doc_values_memory_in_bytes": 10988294, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4195717568, - "norms_memory_in_bytes": 96768, - "points_memory_in_bytes": 474955784, - "stored_fields_memory_in_bytes": 1475305768, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2234370954, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3795433546683 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1624 - }, - "young": { - "collection_count": 256068, - "collection_time_in_millis": 7639758 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 21258085728, - "heap_used_percent": 66 - } - }, - "mlockall": true, - "node_id": "Zy_SYWxzSxy4lYkPVjcOlA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2336209235984511 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60575772672" - } - }, - "cpu": { - "load_average": { - "15m": 0.57, - "1m": 0.72, - "5m": 0.7 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2552 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 36 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.504Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "timestamp": "2019-10-03T19:41:02.504Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "MLUjk20Bd_aHqZFw1krU", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 191907409, - "read_kilobytes": 29611352800, - "read_operations": 70295204, - "write_kilobytes": 33176187512, - "write_operations": 121612205 - } - }, - "total": { - "available_in_bytes": 1535580454912, - "free_in_bytes": 1823688294400, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5449806414 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 660, - "hit_count": 7150, - "memory_size_in_bytes": 293995495, - "miss_count": 56361 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2436, - "memory_size_in_bytes": 12990998, - "miss_count": 7671 - }, - "search": { - "query_time_in_millis": 166859982, - "query_total": 135577 - }, - "segments": { - "count": 251, - "doc_values_memory_in_bytes": 10592726, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4198925518, - "norms_memory_in_bytes": 83776, - "points_memory_in_bytes": 475960716, - "stored_fields_memory_in_bytes": 1481881784, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2230406516, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3802081453432 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10140 - }, - "young": { - "collection_count": 246182, - "collection_time_in_millis": 7726941 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 11594556376, - "heap_used_percent": 36 - } - }, - "mlockall": true, - "node_id": "i8xzV9jfRDmiKDVOkpiH1w", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2264291388450307 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60673273856" - } - }, - "cpu": { - "load_average": { - "15m": 0.63, - "1m": 1.04, - "5m": 0.77 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2513 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 35 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.484Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "timestamp": "2019-10-03T19:41:02.484Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "MbUjk20Bd_aHqZFw1krU", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 201943343, - "read_kilobytes": 31364072988, - "read_operations": 74033116, - "write_kilobytes": 35481743648, - "write_operations": 127910227 - } - }, - "total": { - "available_in_bytes": 1526041505792, - "free_in_bytes": 1814149345280, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5457596989 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 25665416 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1203, - "hit_count": 12633, - "memory_size_in_bytes": 224985724, - "miss_count": 71233 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2319, - "memory_size_in_bytes": 11880616, - "miss_count": 7076 - }, - "search": { - "query_time_in_millis": 168082774, - "query_total": 140343 - }, - "segments": { - "count": 250, - "doc_values_memory_in_bytes": 10482184, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4203765969, - "norms_memory_in_bytes": 81024, - "points_memory_in_bytes": 476489819, - "stored_fields_memory_in_bytes": 1483622080, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2233090862, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3813610568200 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 2273 - }, - "young": { - "collection_count": 265530, - "collection_time_in_millis": 7890116 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 22806193000, - "heap_used_percent": 70 - } - }, - "mlockall": true, - "node_id": "AgMbpH0STqKRLxslxMXtIw", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2394828042606676 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60828487680" - } - }, - "cpu": { - "load_average": { - "15m": 0.71, - "1m": 0.51, - "5m": 0.66 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2520 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 33 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.469Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "timestamp": "2019-10-03T19:41:02.469Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "HbUjk20Bd_aHqZFw1Urs", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 5015318809, - "read_kilobytes": 33962235600, - "read_operations": 2898316885, - "write_kilobytes": 159704887296, - "write_operations": 2117001924 - } - }, - "total": { - "available_in_bytes": 598780751872, - "free_in_bytes": 694816698368, - "total_in_bytes": 1890108420096 - } - }, - "indices": { - "docs": { - "count": 1635776752 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 24129386614, - "index_total": 27328398880, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 32172, - "hit_count": 2888544, - "memory_size_in_bytes": 503080503, - "miss_count": 1328376 - }, - "request_cache": { - "evictions": 0, - "hit_count": 472437, - "memory_size_in_bytes": 16590, - "miss_count": 29366 - }, - "search": { - "query_time_in_millis": 349026754, - "query_total": 3414039 - }, - "segments": { - "count": 930, - "doc_values_memory_in_bytes": 14676948, - "fixed_bit_set_memory_in_bytes": 37632, - "index_writer_memory_in_bytes": 554890686, - "memory_in_bytes": 1614126083, - "norms_memory_in_bytes": 266560, - "points_memory_in_bytes": 159604716, - "stored_fields_memory_in_bytes": 461110304, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 978467555, - "version_map_memory_in_bytes": 1453745 - }, - "store": { - "size_in_bytes": 1190346691392 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 7711, - "collection_time_in_millis": 1194444 - }, - "young": { - "collection_count": 3937898, - "collection_time_in_millis": 309791019 - } - } - }, - "mem": { - "heap_max_in_bytes": 32116310016, - "heap_used_in_bytes": 9432843328, - "heap_used_percent": 29 - } - }, - "mlockall": true, - "node_id": "QDlGTG9SRiatpVkMC42xGA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 25994167851295084 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "61035274240" - } - }, - "cpu": { - "load_average": { - "15m": 12.05, - "1m": 10.73, - "5m": 11.75 - } - } - }, - "process": { - "cpu": { - "percent": 57 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 3329 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 30 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 14 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 22 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 33, - "rejected": 142815, - "threads": 14 - } - } - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.201Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "timestamp": "2019-10-03T19:41:02.201Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "GrUjk20Bd_aHqZFw1UrQ", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 197079936, - "read_kilobytes": 29758228860, - "read_operations": 70233236, - "write_kilobytes": 35439421356, - "write_operations": 126846700 - } - }, - "total": { - "available_in_bytes": 1531639091200, - "free_in_bytes": 1819746930688, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5447391215 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 594, - "hit_count": 5953, - "memory_size_in_bytes": 210595766, - "miss_count": 43750 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3333, - "memory_size_in_bytes": 10263730, - "miss_count": 6261 - }, - "search": { - "query_time_in_millis": 160988575, - "query_total": 135865 - }, - "segments": { - "count": 280, - "doc_values_memory_in_bytes": 10848800, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4211867894, - "norms_memory_in_bytes": 93376, - "points_memory_in_bytes": 476404250, - "stored_fields_memory_in_bytes": 1480671904, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2243849564, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3808193040476 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1809 - }, - "young": { - "collection_count": 257352, - "collection_time_in_millis": 7655208 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 20984101392, - "heap_used_percent": 65 - } - }, - "mlockall": true, - "node_id": "8c-ntk3fQ4yuDO4SolrmgQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2370874047393389 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60710883328" - } - }, - "cpu": { - "load_average": { - "15m": 0.57, - "1m": 0.99, - "5m": 0.71 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2562 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.173Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "timestamp": "2019-10-03T19:41:02.173Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "ELUjk20Bd_aHqZFw1UqP", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 202417207, - "read_kilobytes": 31819090468, - "read_operations": 75251789, - "write_kilobytes": 35176867220, - "write_operations": 127165418 - } - }, - "total": { - "available_in_bytes": 1554682933248, - "free_in_bytes": 1842790772736, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5417630601 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 15034648 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1025, - "hit_count": 10975, - "memory_size_in_bytes": 223398803, - "miss_count": 58458 - }, - "request_cache": { - "evictions": 0, - "hit_count": 2600, - "memory_size_in_bytes": 12644978, - "miss_count": 7596 - }, - "search": { - "query_time_in_millis": 162020812, - "query_total": 135414 - }, - "segments": { - "count": 275, - "doc_values_memory_in_bytes": 11054456, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4188407930, - "norms_memory_in_bytes": 95808, - "points_memory_in_bytes": 473884795, - "stored_fields_memory_in_bytes": 1473148296, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2230224575, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3785008447314 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1734 - }, - "young": { - "collection_count": 257503, - "collection_time_in_millis": 7613446 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 23053112032, - "heap_used_percent": 71 - } - }, - "mlockall": true, - "node_id": "2B-6sKqQR8y9L52cChtT-A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2387617975051337 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60668305408" - } - }, - "cpu": { - "load_average": { - "15m": 0.62, - "1m": 0.56, - "5m": 0.67 - } - } - }, - "process": { - "cpu": { - "percent": 8 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2550 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 39 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.151Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "timestamp": "2019-10-03T19:41:02.151Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "FrUjk20Bd_aHqZFw1Uqx", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198873502, - "read_kilobytes": 31006950520, - "read_operations": 75576998, - "write_kilobytes": 33663050216, - "write_operations": 123296504 - } - }, - "total": { - "available_in_bytes": 1514059116544, - "free_in_bytes": 1802166956032, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5462871310 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 819, - "hit_count": 7510, - "memory_size_in_bytes": 232707420, - "miss_count": 53105 - }, - "request_cache": { - "evictions": 0, - "hit_count": 1403, - "memory_size_in_bytes": 9020186, - "miss_count": 6350 - }, - "search": { - "query_time_in_millis": 160489489, - "query_total": 133079 - }, - "segments": { - "count": 283, - "doc_values_memory_in_bytes": 10937166, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4222594687, - "norms_memory_in_bytes": 84864, - "points_memory_in_bytes": 477607711, - "stored_fields_memory_in_bytes": 1484971520, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2248993426, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3824758821481 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1604 - }, - "young": { - "collection_count": 252435, - "collection_time_in_millis": 7558529 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 14060151928, - "heap_used_percent": 43 - } - }, - "mlockall": true, - "node_id": "F3SDHWgTTSSCRpFLRuTd7A", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2299119700863944 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60680847360" - } - }, - "cpu": { - "load_average": { - "15m": 0.59, - "1m": 0.85, - "5m": 0.69 - } - } - }, - "process": { - "cpu": { - "percent": 10 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2547 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 37 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.147Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "timestamp": "2019-10-03T19:41:02.147Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "EbUjk20Bd_aHqZFw1Uqp", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 191084544, - "read_kilobytes": 29713017856, - "read_operations": 71234089, - "write_kilobytes": 32015823488, - "write_operations": 119850455 - } - }, - "total": { - "available_in_bytes": 1522021576704, - "free_in_bytes": 1810129416192, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5455485095 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 28392424 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 1977, - "hit_count": 19042, - "memory_size_in_bytes": 390789754, - "miss_count": 114242 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3921, - "memory_size_in_bytes": 19979736, - "miss_count": 11401 - }, - "search": { - "query_time_in_millis": 162779169, - "query_total": 136233 - }, - "segments": { - "count": 310, - "doc_values_memory_in_bytes": 11415920, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4233869635, - "norms_memory_in_bytes": 102336, - "points_memory_in_bytes": 477750892, - "stored_fields_memory_in_bytes": 1483625016, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2260975471, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3816654132427 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 10048 - }, - "young": { - "collection_count": 240975, - "collection_time_in_millis": 7492063 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 7599476104, - "heap_used_percent": 23 - } - }, - "mlockall": true, - "node_id": "IbXa_L0vS0mePhKF9Uu-IA", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2251374020932139 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60629327872" - } - }, - "cpu": { - "load_average": { - "15m": 0.57, - "1m": 0.7, - "5m": 0.63 - } - } - }, - "process": { - "cpu": { - "percent": 7 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2583 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 47 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:02.125Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "timestamp": "2019-10-03T19:41:02.125Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "AbUjk20Bd_aHqZFw1Eqv", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 196193377, - "read_kilobytes": 30031324432, - "read_operations": 70490912, - "write_kilobytes": 34785723548, - "write_operations": 125702465 - } - }, - "total": { - "available_in_bytes": 1523119366144, - "free_in_bytes": 1811227205632, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5453465104 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 680, - "hit_count": 7120, - "memory_size_in_bytes": 247592140, - "miss_count": 60701 - }, - "request_cache": { - "evictions": 0, - "hit_count": 3093, - "memory_size_in_bytes": 11159601, - "miss_count": 7079 - }, - "search": { - "query_time_in_millis": 158938713, - "query_total": 132757 - }, - "segments": { - "count": 271, - "doc_values_memory_in_bytes": 11061078, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4211962962, - "norms_memory_in_bytes": 97280, - "points_memory_in_bytes": 477095127, - "stored_fields_memory_in_bytes": 1482145168, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2241564309, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3818106530621 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 15, - "collection_time_in_millis": 1746 - }, - "young": { - "collection_count": 254452, - "collection_time_in_millis": 7673733 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 23156090864, - "heap_used_percent": 72 - } - }, - "mlockall": true, - "node_id": "sZG2ItuSQHOOhGuVlbbgGQ", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2337191525252552 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60785016832" - } - }, - "cpu": { - "load_average": { - "15m": 0.54, - "1m": 0.82, - "5m": 0.65 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2554 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 34 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.898Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "timestamp": "2019-10-03T19:41:01.898Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "7rUjk20Bd_aHqZFw00kC", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "node_stats": { - "fs": { - "io_stats": { - "total": { - "operations": 198506101, - "read_kilobytes": 30557435852, - "read_operations": 73846324, - "write_kilobytes": 33953388036, - "write_operations": 124659777 - } - }, - "total": { - "available_in_bytes": 1518709420032, - "free_in_bytes": 1806817259520, - "total_in_bytes": 5670325260288 - } - }, - "indices": { - "docs": { - "count": 5461370083 - }, - "fielddata": { - "evictions": 0, - "memory_size_in_bytes": 0 - }, - "indexing": { - "index_time_in_millis": 0, - "index_total": 0, - "throttle_time_in_millis": 0 - }, - "query_cache": { - "evictions": 968, - "hit_count": 9643, - "memory_size_in_bytes": 223183700, - "miss_count": 55959 - }, - "request_cache": { - "evictions": 0, - "hit_count": 6243, - "memory_size_in_bytes": 14781646, - "miss_count": 8783 - }, - "search": { - "query_time_in_millis": 161425839, - "query_total": 139919 - }, - "segments": { - "count": 252, - "doc_values_memory_in_bytes": 10672322, - "fixed_bit_set_memory_in_bytes": 0, - "index_writer_memory_in_bytes": 0, - "memory_in_bytes": 4207899042, - "norms_memory_in_bytes": 88704, - "points_memory_in_bytes": 476879579, - "stored_fields_memory_in_bytes": 1484604552, - "term_vectors_memory_in_bytes": 0, - "terms_memory_in_bytes": 2235653885, - "version_map_memory_in_bytes": 0 - }, - "store": { - "size_in_bytes": 3821070517062 - } - }, - "jvm": { - "gc": { - "collectors": { - "old": { - "collection_count": 16, - "collection_time_in_millis": 11410 - }, - "young": { - "collection_count": 250724, - "collection_time_in_millis": 7689517 - } - } - }, - "mem": { - "heap_max_in_bytes": 32151240704, - "heap_used_in_bytes": 9046243704, - "heap_used_percent": 28 - } - }, - "mlockall": true, - "node_id": "JCvzxsoFQ5KMUCNycmdzig", - "node_master": false, - "os": { - "cgroup": { - "cpu": { - "cfs_period_micros": 100000, - "cfs_quota_micros": -1, - "control_group": "/", - "stat": { - "number_of_elapsed_periods": 0, - "number_of_times_throttled": 0, - "time_throttled_nanos": 0 - } - }, - "cpuacct": { - "control_group": "/", - "usage_nanos": 2316517675318016 - }, - "memory": { - "control_group": "/", - "limit_in_bytes": "9223372036854771712", - "usage_in_bytes": "60615651328" - } - }, - "cpu": { - "load_average": { - "15m": 0.59, - "1m": 0.59, - "5m": 0.67 - } - } - }, - "process": { - "cpu": { - "percent": 9 - }, - "max_file_descriptors": 65536, - "open_file_descriptors": 2512 - }, - "thread_pool": { - "generic": { - "queue": 0, - "rejected": 0, - "threads": 38 - }, - "get": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "management": { - "queue": 0, - "rejected": 0, - "threads": 5 - }, - "search": { - "queue": 0, - "rejected": 0, - "threads": 11 - }, - "watcher": { - "queue": 0, - "rejected": 0, - "threads": 0 - }, - "write": { - "queue": 0, - "rejected": 0, - "threads": 7 - } - } - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.502Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "timestamp": "2019-10-03T19:41:01.502Z", - "type": "node_stats" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.27-000990:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.27-000990:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.27-000990:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.27-000990:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.27-000990:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.27-000990:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.27-000990:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.27-000990:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.27-000990:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.27-000990:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.27-000990:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.27-000990:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.27-000990:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.27-000990:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.27-000990:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.27-000990:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.27-000990:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.27-000990:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.27-000990:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.27-000990:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.27-000990:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.27-000990:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.27-000990:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.27-000990:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.27-000990:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.27-000990:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.27-000990:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.27-000990:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.27-000990:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.27-000990:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.27-000990:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.27-000990:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.27-000990:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.27-000990:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.27-000990:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.27-000990:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000990", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.28-000996:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.28-000996:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.28-000996:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.28-000996:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.28-000996:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.28-000996:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.28-000996:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.28-000996:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.28-000996:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.28-000996:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.28-000996:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.28-000996:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.28-000996:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.28-000996:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.28-000996:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.28-000996:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.28-000996:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.28-000996:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.28-000996:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.28-000996:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.28-000996:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.28-000996:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.28-000996:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.28-000996:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.28-000996:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.28-000996:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.28-000996:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.28-000996:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.28-000996:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.28-000996:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.28-000996:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.28-000996", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.17-000941:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.17-000941:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.17-000941:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.17-000941:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.17-000941:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.17-000941:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.17-000941:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.17-000941:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.17-000941:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.17-000941:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.17-000941:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.17-000941:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.17-000941:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.17-000941:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.17-000941:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.17-000941:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.17-000941:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.17-000941:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.17-000941:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.17-000941:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.17-000941:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.17-000941:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.17-000941:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.17-000941:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.17-000941:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.17-000941:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.17-000941:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.17-000941:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.17-000941:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.17-000941:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.17-000941:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.17-000941:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.17-000941:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.17-000941:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.17-000941:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.17-000941:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000941", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:hRf9HsyRTZ-LGzhDBTZM3w:.watcher-history-9-2019.10.02:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".watcher-history-9-2019.10.02", - "node": "hRf9HsyRTZ-LGzhDBTZM3w", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.138", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.138:9300", - "uuid": "hRf9HsyRTZ-LGzhDBTZM3w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:t1HJSnHUT22LT5RFSeow8A:.watcher-history-9-2019.10.02:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".watcher-history-9-2019.10.02", - "node": "t1HJSnHUT22LT5RFSeow8A", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.17-000943:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.17-000943:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.17-000943:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.17-000943:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.17-000943:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.17-000943:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.17-000943:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.17-000943:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.17-000943:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.17-000943:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.17-000943:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.17-000943:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.17-000943:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.17-000943:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.17-000943:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.17-000943:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.17-000943:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.17-000943:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.17-000943:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.17-000943:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.17-000943:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.17-000943:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.17-000943:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.17-000943:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.17-000943:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.17-000943:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.17-000943:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.17-000943:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.17-000943:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.17-000943:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.17-000943:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.17-000943:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.17-000943:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.17-000943:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.17-000943:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.17-000943:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.17-000943", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.16-000936:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.16-000936:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.16-000936:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.16-000936:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.16-000936:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.16-000936:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.16-000936:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.16-000936:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.16-000936:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.16-000936:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.16-000936:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.16-000936:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.16-000936:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.16-000936:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.16-000936:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.16-000936:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.16-000936:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.16-000936:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.16-000936:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.16-000936:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.16-000936:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.16-000936:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.16-000936:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.16-000936:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.16-000936:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.16-000936:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.16-000936:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.16-000936:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.16-000936:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.16-000936:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.16-000936:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.16-000936:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.16-000936:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.16-000936:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.16-000936:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.16-000936:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000936", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-suricata-2019.09.05-000094:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.05-000094", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-suricata-2019.09.05-000094:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.05-000094", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-suricata-2019.09.05-000094:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.05-000094", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-suricata-2019.09.05-000094:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.05-000094", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B3CAleM0QtCMcc9OgRH79g:eb-bro-sensor-stats:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "B3CAleM0QtCMcc9OgRH79g", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.51", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.51:9300", - "uuid": "B3CAleM0QtCMcc9OgRH79g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:LtCntqP6QjSpGIWEDnBaGQ:eb-bro-sensor-stats:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "LtCntqP6QjSpGIWEDnBaGQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nsqq83wGTkGsNqslvlybiA:eb-bro-sensor-stats:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "nsqq83wGTkGsNqslvlybiA", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.71", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.71:9300", - "uuid": "nsqq83wGTkGsNqslvlybiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JT834ic5St6HS3oLbKcfVQ:eb-bro-sensor-stats:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "JT834ic5St6HS3oLbKcfVQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.187", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.187:9300", - "uuid": "JT834ic5St6HS3oLbKcfVQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:eb-bro-sensor-stats:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:QDlGTG9SRiatpVkMC42xGA:eb-bro-sensor-stats:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "QDlGTG9SRiatpVkMC42xGA", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4EgMjLR8S0G9aJs7AB-Z0g:eb-bro-sensor-stats:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "4EgMjLR8S0G9aJs7AB-Z0g", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:eb-bro-sensor-stats:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:t1HJSnHUT22LT5RFSeow8A:eb-bro-sensor-stats:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "t1HJSnHUT22LT5RFSeow8A", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-hZOu0UJTHSbkZVSFPUYVw:eb-bro-sensor-stats:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "eb-bro-sensor-stats", - "node": "-hZOu0UJTHSbkZVSFPUYVw", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-suricata-2019.09.28-000117:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.28-000117", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-suricata-2019.09.28-000117:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.28-000117", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-suricata-2019.09.28-000117:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.28-000117", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-suricata-2019.09.28-000117:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.28-000117", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JT834ic5St6HS3oLbKcfVQ:om-iu-bro-2019.10.02-001009:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "JT834ic5St6HS3oLbKcfVQ", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.187", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.187:9300", - "uuid": "JT834ic5St6HS3oLbKcfVQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-hZOu0UJTHSbkZVSFPUYVw:om-iu-bro-2019.10.02-001009:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "-hZOu0UJTHSbkZVSFPUYVw", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:hRf9HsyRTZ-LGzhDBTZM3w:om-iu-bro-2019.10.02-001009:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "hRf9HsyRTZ-LGzhDBTZM3w", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.138", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.138:9300", - "uuid": "hRf9HsyRTZ-LGzhDBTZM3w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:t1HJSnHUT22LT5RFSeow8A:om-iu-bro-2019.10.02-001009:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "t1HJSnHUT22LT5RFSeow8A", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:08NXHjcqQQaenDpdQugS4w:om-iu-bro-2019.10.02-001009:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "08NXHjcqQQaenDpdQugS4w", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:98npGP6HRPu5OOG4hRYbiA:om-iu-bro-2019.10.02-001009:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "98npGP6HRPu5OOG4hRYbiA", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:LtCntqP6QjSpGIWEDnBaGQ:om-iu-bro-2019.10.02-001009:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "LtCntqP6QjSpGIWEDnBaGQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:98npGP6HRPu5OOG4hRYbiA:om-iu-bro-2019.10.02-001009:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "98npGP6HRPu5OOG4hRYbiA", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:jVAJY9H3RdqBQeJoQrxcnA:om-iu-bro-2019.10.02-001009:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "jVAJY9H3RdqBQeJoQrxcnA", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.251", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.251:9300", - "uuid": "jVAJY9H3RdqBQeJoQrxcnA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:LtCntqP6QjSpGIWEDnBaGQ:om-iu-bro-2019.10.02-001009:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "LtCntqP6QjSpGIWEDnBaGQ", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:3VXPo0aBTgqBWoZyG7VeDQ:om-iu-bro-2019.10.02-001009:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "3VXPo0aBTgqBWoZyG7VeDQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B3CAleM0QtCMcc9OgRH79g:om-iu-bro-2019.10.02-001009:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "B3CAleM0QtCMcc9OgRH79g", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.51", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.51:9300", - "uuid": "B3CAleM0QtCMcc9OgRH79g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:3VXPo0aBTgqBWoZyG7VeDQ:om-iu-bro-2019.10.02-001009:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "3VXPo0aBTgqBWoZyG7VeDQ", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4EgMjLR8S0G9aJs7AB-Z0g:om-iu-bro-2019.10.02-001009:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "4EgMjLR8S0G9aJs7AB-Z0g", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nsqq83wGTkGsNqslvlybiA:om-iu-bro-2019.10.02-001009:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "nsqq83wGTkGsNqslvlybiA", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.71", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.71:9300", - "uuid": "nsqq83wGTkGsNqslvlybiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:08NXHjcqQQaenDpdQugS4w:om-iu-bro-2019.10.02-001009:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "08NXHjcqQQaenDpdQugS4w", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:om-iu-bro-2019.10.02-001009:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:QDlGTG9SRiatpVkMC42xGA:om-iu-bro-2019.10.02-001009:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "QDlGTG9SRiatpVkMC42xGA", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nsqq83wGTkGsNqslvlybiA:om-iu-bro-2019.10.02-001009:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "nsqq83wGTkGsNqslvlybiA", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.71", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.71:9300", - "uuid": "nsqq83wGTkGsNqslvlybiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:hRf9HsyRTZ-LGzhDBTZM3w:om-iu-bro-2019.10.02-001009:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "hRf9HsyRTZ-LGzhDBTZM3w", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.138", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.138:9300", - "uuid": "hRf9HsyRTZ-LGzhDBTZM3w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Elc3XlQ6S22vnPjQw-V2Fg:om-iu-bro-2019.10.02-001009:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "Elc3XlQ6S22vnPjQw-V2Fg", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.156", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.156:9300", - "uuid": "Elc3XlQ6S22vnPjQw-V2Fg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:t1HJSnHUT22LT5RFSeow8A:om-iu-bro-2019.10.02-001009:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "t1HJSnHUT22LT5RFSeow8A", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-hZOu0UJTHSbkZVSFPUYVw:om-iu-bro-2019.10.02-001009:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "-hZOu0UJTHSbkZVSFPUYVw", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:QDlGTG9SRiatpVkMC42xGA:om-iu-bro-2019.10.02-001009:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "QDlGTG9SRiatpVkMC42xGA", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4zqr4ku4RrSZJtrZSN5Mlg:om-iu-bro-2019.10.02-001009:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "4zqr4ku4RrSZJtrZSN5Mlg", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:O78sh8HUSkaInv_VIQ0vQw:om-iu-bro-2019.10.02-001009:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "O78sh8HUSkaInv_VIQ0vQw", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.70", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.70:9300", - "uuid": "O78sh8HUSkaInv_VIQ0vQw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:O78sh8HUSkaInv_VIQ0vQw:om-iu-bro-2019.10.02-001009:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "O78sh8HUSkaInv_VIQ0vQw", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.70", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.70:9300", - "uuid": "O78sh8HUSkaInv_VIQ0vQw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JT834ic5St6HS3oLbKcfVQ:om-iu-bro-2019.10.02-001009:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "JT834ic5St6HS3oLbKcfVQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.187", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.187:9300", - "uuid": "JT834ic5St6HS3oLbKcfVQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Elc3XlQ6S22vnPjQw-V2Fg:om-iu-bro-2019.10.02-001009:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "Elc3XlQ6S22vnPjQw-V2Fg", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.156", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.156:9300", - "uuid": "Elc3XlQ6S22vnPjQw-V2Fg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:jVAJY9H3RdqBQeJoQrxcnA:om-iu-bro-2019.10.02-001009:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "jVAJY9H3RdqBQeJoQrxcnA", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.251", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.251:9300", - "uuid": "jVAJY9H3RdqBQeJoQrxcnA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:om-iu-bro-2019.10.02-001009:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B3CAleM0QtCMcc9OgRH79g:om-iu-bro-2019.10.02-001009:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "B3CAleM0QtCMcc9OgRH79g", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.51", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.51:9300", - "uuid": "B3CAleM0QtCMcc9OgRH79g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4EgMjLR8S0G9aJs7AB-Z0g:om-iu-bro-2019.10.02-001009:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "4EgMjLR8S0G9aJs7AB-Z0g", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:om-iu-bro-2019.10.02-001009:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:om-iu-bro-2019.10.02-001009:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4zqr4ku4RrSZJtrZSN5Mlg:om-iu-bro-2019.10.02-001009:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001009", - "node": "4zqr4ku4RrSZJtrZSN5Mlg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-suricata-2019.09.30-000119:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.30-000119", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-suricata-2019.09.30-000119:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.30-000119", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-suricata-2019.09.30-000119:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.30-000119", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-suricata-2019.09.30-000119:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.30-000119", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.21-000962:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.21-000962:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.21-000962:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.21-000962:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.21-000962:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.21-000962:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.21-000962:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.21-000962:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.21-000962:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.21-000962:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.21-000962:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.21-000962:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.21-000962:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.21-000962:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.21-000962:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.21-000962:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.21-000962:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.21-000962:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.21-000962:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.21-000962:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.21-000962:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.21-000962:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.21-000962:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.21-000962:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.21-000962:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.21-000962:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.21-000962:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.21-000962:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.21-000962:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.21-000962:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.21-000962:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.21-000962:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.21-000962:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.21-000962:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.21-000962:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.21-000962:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000962", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-suricata-2019.09.16-000105:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.16-000105", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-suricata-2019.09.16-000105:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.16-000105", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-suricata-2019.09.16-000105:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.16-000105", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-suricata-2019.09.16-000105:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.16-000105", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-suricata-2019.09.26-000115:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.26-000115", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-suricata-2019.09.26-000115:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.26-000115", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-suricata-2019.09.26-000115:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.26-000115", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-suricata-2019.09.26-000115:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.26-000115", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-suricata-2019.09.18-000107:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.18-000107", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-suricata-2019.09.18-000107:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.18-000107", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-suricata-2019.09.18-000107:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.18-000107", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-suricata-2019.09.18-000107:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.18-000107", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.23-000968:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.23-000968:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.23-000968:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.23-000968:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.23-000968:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.23-000968:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.23-000968:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.23-000968:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.23-000968:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.23-000968:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.23-000968:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.23-000968:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.23-000968:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.23-000968:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.23-000968:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.23-000968:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.23-000968:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.23-000968:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.23-000968:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.23-000968:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.23-000968:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.23-000968:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.23-000968:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.23-000968:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.23-000968:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.23-000968:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.23-000968:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.23-000968:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.23-000968:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.23-000968:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.23-000968:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.23-000968:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.23-000968:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.23-000968:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.23-000968:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.23-000968:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000968", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.27-000991:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.27-000991:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.27-000991:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.27-000991:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.27-000991:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.27-000991:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.27-000991:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.27-000991:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.27-000991:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.27-000991:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.27-000991:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.27-000991:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.27-000991:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.27-000991:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.27-000991:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.27-000991:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.27-000991:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.27-000991:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.27-000991:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.27-000991:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.27-000991:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.27-000991:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.27-000991:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.27-000991:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.27-000991:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.27-000991:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.27-000991:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.27-000991:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.27-000991:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.27-000991:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.27-000991:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.27-000991:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.27-000991:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.27-000991:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.27-000991:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.27-000991:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.27-000991", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.16-000939:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.16-000939:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.16-000939:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.16-000939:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.16-000939:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.16-000939:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.16-000939:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.16-000939:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.16-000939:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.16-000939:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.16-000939:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.16-000939:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.16-000939:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.16-000939:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.16-000939:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.16-000939:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.16-000939:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.16-000939:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.16-000939:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.16-000939:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.16-000939:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.16-000939:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.16-000939:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.16-000939:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.16-000939:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.16-000939:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.16-000939:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.16-000939:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.16-000939:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.16-000939:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.16-000939:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.16-000939:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.16-000939:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.16-000939:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.16-000939:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.16-000939:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000939", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-suricata-2019.09.14-000103:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.14-000103", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-suricata-2019.09.14-000103:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.14-000103", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-suricata-2019.09.14-000103:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.14-000103", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-suricata-2019.09.14-000103:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.14-000103", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.30-001004:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.30-001004:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.30-001004:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.30-001004:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.30-001004:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.30-001004:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.30-001004:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.30-001004:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.30-001004:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.30-001004:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.30-001004:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.30-001004:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.30-001004:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.30-001004:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.30-001004:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.30-001004:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.30-001004:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.30-001004:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.30-001004:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.30-001004:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.30-001004:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.30-001004:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.30-001004:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.30-001004:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.30-001004:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.30-001004:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.30-001004:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.30-001004:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.30-001004:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.30-001004:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.30-001004:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.30-001004:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.30-001004:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.30-001004:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.30-001004:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.30-001004:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.30-001004", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-hZOu0UJTHSbkZVSFPUYVw:om-iu-bro-2019.10.03-001016:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "-hZOu0UJTHSbkZVSFPUYVw", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:QDlGTG9SRiatpVkMC42xGA:om-iu-bro-2019.10.03-001016:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "QDlGTG9SRiatpVkMC42xGA", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4zqr4ku4RrSZJtrZSN5Mlg:om-iu-bro-2019.10.03-001016:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "4zqr4ku4RrSZJtrZSN5Mlg", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:jVAJY9H3RdqBQeJoQrxcnA:om-iu-bro-2019.10.03-001016:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "jVAJY9H3RdqBQeJoQrxcnA", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.251", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.251:9300", - "uuid": "jVAJY9H3RdqBQeJoQrxcnA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:3VXPo0aBTgqBWoZyG7VeDQ:om-iu-bro-2019.10.03-001016:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "3VXPo0aBTgqBWoZyG7VeDQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4EgMjLR8S0G9aJs7AB-Z0g:om-iu-bro-2019.10.03-001016:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "4EgMjLR8S0G9aJs7AB-Z0g", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:jVAJY9H3RdqBQeJoQrxcnA:om-iu-bro-2019.10.03-001016:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "jVAJY9H3RdqBQeJoQrxcnA", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.251", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.251:9300", - "uuid": "jVAJY9H3RdqBQeJoQrxcnA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:LtCntqP6QjSpGIWEDnBaGQ:om-iu-bro-2019.10.03-001016:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "LtCntqP6QjSpGIWEDnBaGQ", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:t1HJSnHUT22LT5RFSeow8A:om-iu-bro-2019.10.03-001016:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "t1HJSnHUT22LT5RFSeow8A", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:QDlGTG9SRiatpVkMC42xGA:om-iu-bro-2019.10.03-001016:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "QDlGTG9SRiatpVkMC42xGA", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4EgMjLR8S0G9aJs7AB-Z0g:om-iu-bro-2019.10.03-001016:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "4EgMjLR8S0G9aJs7AB-Z0g", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:om-iu-bro-2019.10.03-001016:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:LtCntqP6QjSpGIWEDnBaGQ:om-iu-bro-2019.10.03-001016:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "LtCntqP6QjSpGIWEDnBaGQ", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:98npGP6HRPu5OOG4hRYbiA:om-iu-bro-2019.10.03-001016:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "98npGP6HRPu5OOG4hRYbiA", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B3CAleM0QtCMcc9OgRH79g:om-iu-bro-2019.10.03-001016:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "B3CAleM0QtCMcc9OgRH79g", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.51", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.51:9300", - "uuid": "B3CAleM0QtCMcc9OgRH79g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:om-iu-bro-2019.10.03-001016:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nsqq83wGTkGsNqslvlybiA:om-iu-bro-2019.10.03-001016:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "nsqq83wGTkGsNqslvlybiA", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.71", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.71:9300", - "uuid": "nsqq83wGTkGsNqslvlybiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:om-iu-bro-2019.10.03-001016:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:08NXHjcqQQaenDpdQugS4w:om-iu-bro-2019.10.03-001016:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "08NXHjcqQQaenDpdQugS4w", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:98npGP6HRPu5OOG4hRYbiA:om-iu-bro-2019.10.03-001016:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "98npGP6HRPu5OOG4hRYbiA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:O78sh8HUSkaInv_VIQ0vQw:om-iu-bro-2019.10.03-001016:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "O78sh8HUSkaInv_VIQ0vQw", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.70", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.70:9300", - "uuid": "O78sh8HUSkaInv_VIQ0vQw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JT834ic5St6HS3oLbKcfVQ:om-iu-bro-2019.10.03-001016:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "JT834ic5St6HS3oLbKcfVQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.187", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.187:9300", - "uuid": "JT834ic5St6HS3oLbKcfVQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nsqq83wGTkGsNqslvlybiA:om-iu-bro-2019.10.03-001016:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "nsqq83wGTkGsNqslvlybiA", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.71", - "ip": "172.16.0.71", - "name": "esh2-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.71:9300", - "uuid": "nsqq83wGTkGsNqslvlybiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:hRf9HsyRTZ-LGzhDBTZM3w:om-iu-bro-2019.10.03-001016:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "hRf9HsyRTZ-LGzhDBTZM3w", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.138", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.138:9300", - "uuid": "hRf9HsyRTZ-LGzhDBTZM3w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Elc3XlQ6S22vnPjQw-V2Fg:om-iu-bro-2019.10.03-001016:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "Elc3XlQ6S22vnPjQw-V2Fg", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.156", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.156:9300", - "uuid": "Elc3XlQ6S22vnPjQw-V2Fg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:3VXPo0aBTgqBWoZyG7VeDQ:om-iu-bro-2019.10.03-001016:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "3VXPo0aBTgqBWoZyG7VeDQ", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JT834ic5St6HS3oLbKcfVQ:om-iu-bro-2019.10.03-001016:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "JT834ic5St6HS3oLbKcfVQ", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.187", - "ip": "172.16.0.187", - "name": "esh3-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.187:9300", - "uuid": "JT834ic5St6HS3oLbKcfVQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-hZOu0UJTHSbkZVSFPUYVw:om-iu-bro-2019.10.03-001016:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "-hZOu0UJTHSbkZVSFPUYVw", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Elc3XlQ6S22vnPjQw-V2Fg:om-iu-bro-2019.10.03-001016:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "Elc3XlQ6S22vnPjQw-V2Fg", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.156", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.156:9300", - "uuid": "Elc3XlQ6S22vnPjQw-V2Fg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:hRf9HsyRTZ-LGzhDBTZM3w:om-iu-bro-2019.10.03-001016:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "hRf9HsyRTZ-LGzhDBTZM3w", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.138", - "ip": "172.16.1.138", - "name": "esh2-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.138:9300", - "uuid": "hRf9HsyRTZ-LGzhDBTZM3w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:08NXHjcqQQaenDpdQugS4w:om-iu-bro-2019.10.03-001016:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "08NXHjcqQQaenDpdQugS4w", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:O78sh8HUSkaInv_VIQ0vQw:om-iu-bro-2019.10.03-001016:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "O78sh8HUSkaInv_VIQ0vQw", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.70", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.70:9300", - "uuid": "O78sh8HUSkaInv_VIQ0vQw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:om-iu-bro-2019.10.03-001016:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4zqr4ku4RrSZJtrZSN5Mlg:om-iu-bro-2019.10.03-001016:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "4zqr4ku4RrSZJtrZSN5Mlg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:t1HJSnHUT22LT5RFSeow8A:om-iu-bro-2019.10.03-001016:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "t1HJSnHUT22LT5RFSeow8A", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.136", - "ip": "172.16.1.136", - "name": "esh2-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.136:9300", - "uuid": "t1HJSnHUT22LT5RFSeow8A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B3CAleM0QtCMcc9OgRH79g:om-iu-bro-2019.10.03-001016:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.03-001016", - "node": "B3CAleM0QtCMcc9OgRH79g", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.51", - "ip": "172.16.0.51", - "name": "esh2-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.51:9300", - "uuid": "B3CAleM0QtCMcc9OgRH79g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.22-000964:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.22-000964:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.22-000964:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.22-000964:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.22-000964:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.22-000964:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.22-000964:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.22-000964:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.22-000964:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.22-000964:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.22-000964:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.22-000964:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.22-000964:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.22-000964:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.22-000964:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.22-000964:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.22-000964:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.22-000964:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.22-000964:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.22-000964:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.22-000964:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.22-000964:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.22-000964:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.22-000964:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.22-000964:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.22-000964:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.22-000964:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.22-000964:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.22-000964:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.22-000964:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.22-000964:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.22-000964:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.22-000964:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.22-000964:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.22-000964:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.22-000964:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000964", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:.watches:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".watches", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4zqr4ku4RrSZJtrZSN5Mlg:.watches:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".watches", - "node": "4zqr4ku4RrSZJtrZSN5Mlg", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.25-000982:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.25-000982:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.25-000982:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.25-000982:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.25-000982:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.25-000982:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.25-000982:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.25-000982:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.25-000982:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.25-000982", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:om-iu-bro-2019.10.02-001010:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001010", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4EgMjLR8S0G9aJs7AB-Z0g:om-iu-bro-2019.10.02-001010:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.10.02-001010", - "node": "4EgMjLR8S0G9aJs7AB-Z0g", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.218", - "ip": "172.16.1.218", - "name": "esh3-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.218:9300", - "uuid": "4EgMjLR8S0G9aJs7AB-Z0g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.16-000937:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.16-000937:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.16-000937:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.16-000937:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.16-000937:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.16-000937:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.16-000937:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.16-000937:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.16-000937:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.16-000937:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.16-000937", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.26-000987:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000987", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.26-000987:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000987", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.19-000951:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.19-000951:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.19-000951:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.19-000951:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.19-000951:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.19-000951:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.19-000951:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.19-000951:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.19-000951:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.19-000951:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.19-000951:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.19-000951:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.19-000951:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.19-000951:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.19-000951:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.19-000951:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.19-000951:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.19-000951:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.19-000951:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.19-000951:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.19-000951:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.19-000951:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.19-000951:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.19-000951:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.19-000951:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.19-000951:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.19-000951:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.19-000951:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.19-000951", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-suricata-2019.09.23-000112:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.23-000112", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-suricata-2019.09.23-000112:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.23-000112", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-suricata-2019.09.23-000112:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.23-000112", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-suricata-2019.09.23-000112:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-suricata-2019.09.23-000112", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.23-000970:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.23-000970:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.23-000970:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.23-000970:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.23-000970:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.23-000970:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.23-000970:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.23-000970:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.23-000970:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.23-000970:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.23-000970:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.23-000970:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.23-000970:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.23-000970:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.23-000970:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.23-000970:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.23-000970:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.23-000970:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.23-000970:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.23-000970:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.23-000970:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.23-000970:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.23-000970:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.23-000970:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.23-000970:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.23-000970:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.23-000970:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.23-000970:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.23-000970:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.23-000970:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.23-000970:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.23-000970:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.23-000970:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.23-000970:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.23-000970:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.23-000970:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.23-000970", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.26-000986:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.26-000986:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.26-000986:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.26-000986:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.26-000986:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.26-000986:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.26-000986:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.26-000986:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.26-000986:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.26-000986:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.26-000986:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.26-000986:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.26-000986:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.26-000986:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.26-000986:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.26-000986:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.26-000986:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.26-000986:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.26-000986:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.26-000986:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.26-000986:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.26-000986:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.26-000986:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.26-000986:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.26-000986:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.26-000986:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.26-000986:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.26-000986:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.26-000986:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.26-000986:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.26-000986:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.26-000986:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.26-000986:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.26-000986:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.26-000986:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.26-000986:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000986", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.26-000984:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.26-000984:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.26-000984:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.26-000984:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.26-000984:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.26-000984:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.26-000984:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.26-000984:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.26-000984:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.26-000984:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.26-000984:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.26-000984:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.26-000984:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.26-000984:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.26-000984:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.26-000984:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.26-000984:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.26-000984:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.26-000984:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.26-000984:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.26-000984:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.26-000984:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.26-000984:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.26-000984:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.26-000984:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.26-000984:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.26-000984:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.26-000984:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.26-000984:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.26-000984:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.26-000984:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.26-000984:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.26-000984:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.26-000984:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.26-000984:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.26-000984:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.26-000984", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:4zqr4ku4RrSZJtrZSN5Mlg:om-iu-agg-bro-sensor-eps:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "4zqr4ku4RrSZJtrZSN5Mlg", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.11", - "ip": "172.16.0.11", - "name": "esh1-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.11:9300", - "uuid": "4zqr4ku4RrSZJtrZSN5Mlg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:jVAJY9H3RdqBQeJoQrxcnA:om-iu-agg-bro-sensor-eps:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "jVAJY9H3RdqBQeJoQrxcnA", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.251", - "ip": "172.16.0.251", - "name": "esh1-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.251:9300", - "uuid": "jVAJY9H3RdqBQeJoQrxcnA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:qdDv_MrWRPqL-9t_fjSk1A:om-iu-agg-bro-sensor-eps:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "qdDv_MrWRPqL-9t_fjSk1A", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.204", - "ip": "172.16.1.204", - "name": "esh1-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.204:9300", - "uuid": "qdDv_MrWRPqL-9t_fjSk1A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:08NXHjcqQQaenDpdQugS4w:om-iu-agg-bro-sensor-eps:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "08NXHjcqQQaenDpdQugS4w", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-hZOu0UJTHSbkZVSFPUYVw:om-iu-agg-bro-sensor-eps:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "-hZOu0UJTHSbkZVSFPUYVw", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.249", - "ip": "172.16.1.249", - "name": "esh2-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.249:9300", - "uuid": "-hZOu0UJTHSbkZVSFPUYVw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:98npGP6HRPu5OOG4hRYbiA:om-iu-agg-bro-sensor-eps:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "98npGP6HRPu5OOG4hRYbiA", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.185", - "ip": "172.16.1.185", - "name": "esh3-33-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.185:9300", - "uuid": "98npGP6HRPu5OOG4hRYbiA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:wgF8TsDeTVyBurL3xct0DQ:om-iu-agg-bro-sensor-eps:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "wgF8TsDeTVyBurL3xct0DQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.112", - "ip": "172.16.1.112", - "name": "esh1-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.112:9300", - "uuid": "wgF8TsDeTVyBurL3xct0DQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:QDlGTG9SRiatpVkMC42xGA:om-iu-agg-bro-sensor-eps:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "QDlGTG9SRiatpVkMC42xGA", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.114", - "ip": "172.16.0.114", - "name": "esh1-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.114:9300", - "uuid": "QDlGTG9SRiatpVkMC42xGA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:3VXPo0aBTgqBWoZyG7VeDQ:om-iu-agg-bro-sensor-eps:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "3VXPo0aBTgqBWoZyG7VeDQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:LtCntqP6QjSpGIWEDnBaGQ:om-iu-agg-bro-sensor-eps:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-agg-bro-sensor-eps", - "node": "LtCntqP6QjSpGIWEDnBaGQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.78", - "ip": "172.16.1.78", - "name": "esh2-36-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.78:9300", - "uuid": "LtCntqP6QjSpGIWEDnBaGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Elc3XlQ6S22vnPjQw-V2Fg:.kibana_3:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".kibana_3", - "node": "Elc3XlQ6S22vnPjQw-V2Fg", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.156", - "ip": "172.16.1.156", - "name": "esh1-31-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.156:9300", - "uuid": "Elc3XlQ6S22vnPjQw-V2Fg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:08NXHjcqQQaenDpdQugS4w:.kibana_3:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".kibana_3", - "node": "08NXHjcqQQaenDpdQugS4w", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.47", - "ip": "172.16.1.47", - "name": "esh3-35-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.47:9300", - "uuid": "08NXHjcqQQaenDpdQugS4w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.21-000959:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.21-000959:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.21-000959:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.21-000959:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.21-000959:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.21-000959:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.21-000959:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.21-000959:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.21-000959:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.21-000959:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.21-000959:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.21-000959:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.21-000959:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.21-000959:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.21-000959:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.21-000959:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.21-000959:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.21-000959:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.21-000959:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.21-000959:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.21-000959:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.21-000959:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.21-000959:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.21-000959:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.21-000959:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.21-000959:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.21-000959:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.21-000959:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.21-000959:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.21-000959:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.21-000959:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.21-000959:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.21-000959:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.21-000959:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.21-000959:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.21-000959:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.21-000959", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:3VXPo0aBTgqBWoZyG7VeDQ:.reporting-2019.06.16:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".reporting-2019.06.16", - "node": "3VXPo0aBTgqBWoZyG7VeDQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.117", - "ip": "172.16.0.117", - "name": "esh3-32-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.117:9300", - "uuid": "3VXPo0aBTgqBWoZyG7VeDQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:O78sh8HUSkaInv_VIQ0vQw:.reporting-2019.06.16:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": ".reporting-2019.06.16", - "node": "O78sh8HUSkaInv_VIQ0vQw", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.0.70", - "ip": "172.16.0.70", - "name": "esh3-34-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.0.70:9300", - "uuid": "O78sh8HUSkaInv_VIQ0vQw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2B-6sKqQR8y9L52cChtT-A:om-iu-bro-2019.09.18-000946:13:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "2B-6sKqQR8y9L52cChtT-A", - "primary": true, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.81", - "ip": "172.16.1.81", - "name": "esw2-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.81:9300", - "uuid": "2B-6sKqQR8y9L52cChtT-A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:BtNzO_LsQpqkgRgGHAhQxg:om-iu-bro-2019.09.18-000946:13:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "BtNzO_LsQpqkgRgGHAhQxg", - "primary": false, - "relocating_node": null, - "shard": 13, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.178", - "ip": "172.16.1.178", - "name": "esw1-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.178:9300", - "uuid": "BtNzO_LsQpqkgRgGHAhQxg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IfVshWgoTqWkfmehFnarzQ:om-iu-bro-2019.09.18-000946:7:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "IfVshWgoTqWkfmehFnarzQ", - "primary": true, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.245", - "ip": "172.16.1.245", - "name": "esw2-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.245:9300", - "uuid": "IfVshWgoTqWkfmehFnarzQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z8Ei5tIfSmq-y8ieUeAKiw:om-iu-bro-2019.09.18-000946:7:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "z8Ei5tIfSmq-y8ieUeAKiw", - "primary": false, - "relocating_node": null, - "shard": 7, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.107", - "ip": "172.16.1.107", - "name": "esw2-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.107:9300", - "uuid": "z8Ei5tIfSmq-y8ieUeAKiw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:u5zemFgXTC6TattN4B6gbw:om-iu-bro-2019.09.18-000946:17:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "u5zemFgXTC6TattN4B6gbw", - "primary": true, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.111", - "ip": "172.16.1.111", - "name": "esw2-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.111:9300", - "uuid": "u5zemFgXTC6TattN4B6gbw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iKB0877lSR6ocEzyKq9BRQ:om-iu-bro-2019.09.18-000946:17:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "iKB0877lSR6ocEzyKq9BRQ", - "primary": false, - "relocating_node": null, - "shard": 17, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.243", - "ip": "172.16.1.243", - "name": "esw2-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.243:9300", - "uuid": "iKB0877lSR6ocEzyKq9BRQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:-T_cq0TLQjqlvpX0iVCBNg:om-iu-bro-2019.09.18-000946:9:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "-T_cq0TLQjqlvpX0iVCBNg", - "primary": false, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.44", - "ip": "172.16.1.44", - "name": "esw1-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.44:9300", - "uuid": "-T_cq0TLQjqlvpX0iVCBNg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:bY-cxyR0RSuMiRYlV6Sj7g:om-iu-bro-2019.09.18-000946:9:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "bY-cxyR0RSuMiRYlV6Sj7g", - "primary": true, - "relocating_node": null, - "shard": 9, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.220", - "ip": "172.16.1.220", - "name": "esw1-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.220:9300", - "uuid": "bY-cxyR0RSuMiRYlV6Sj7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:AgMbpH0STqKRLxslxMXtIw:om-iu-bro-2019.09.18-000946:2:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "AgMbpH0STqKRLxslxMXtIw", - "primary": false, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.116", - "ip": "172.16.1.116", - "name": "esw3-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.116:9300", - "uuid": "AgMbpH0STqKRLxslxMXtIw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:quRSeXloStCNZe-DZ5ec7g:om-iu-bro-2019.09.18-000946:2:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "quRSeXloStCNZe-DZ5ec7g", - "primary": true, - "relocating_node": null, - "shard": 2, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.57", - "ip": "172.16.1.57", - "name": "esw1-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.57:9300", - "uuid": "quRSeXloStCNZe-DZ5ec7g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:OVW5WfABQ_GG_SYE3HrJzw:om-iu-bro-2019.09.18-000946:10:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "OVW5WfABQ_GG_SYE3HrJzw", - "primary": false, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.4", - "ip": "172.16.1.4", - "name": "esw2-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.4:9300", - "uuid": "OVW5WfABQ_GG_SYE3HrJzw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:F3SDHWgTTSSCRpFLRuTd7A:om-iu-bro-2019.09.18-000946:10:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "F3SDHWgTTSSCRpFLRuTd7A", - "primary": true, - "relocating_node": null, - "shard": 10, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.26", - "ip": "172.16.1.26", - "name": "esw3-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.26:9300", - "uuid": "F3SDHWgTTSSCRpFLRuTd7A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:flL9OS4TR8Kjmm-rTVHU5g:om-iu-bro-2019.09.18-000946:1:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "flL9OS4TR8Kjmm-rTVHU5g", - "primary": false, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.76", - "ip": "172.16.1.76", - "name": "esw3-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.76:9300", - "uuid": "flL9OS4TR8Kjmm-rTVHU5g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:l01mdpHKTIycD8YpHgstOQ:om-iu-bro-2019.09.18-000946:1:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "l01mdpHKTIycD8YpHgstOQ", - "primary": true, - "relocating_node": null, - "shard": 1, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.215", - "ip": "172.16.1.215", - "name": "esw1-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.215:9300", - "uuid": "l01mdpHKTIycD8YpHgstOQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:WnMyIlYBQqWW45a-TwpwqQ:om-iu-bro-2019.09.18-000946:3:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "WnMyIlYBQqWW45a-TwpwqQ", - "primary": true, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.195", - "ip": "172.16.1.195", - "name": "esw1-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.195:9300", - "uuid": "WnMyIlYBQqWW45a-TwpwqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.18-000946:3:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": false, - "relocating_node": null, - "shard": 3, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.18-000946:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:9uYu0U-tSjifvO6YLvNY5Q:om-iu-bro-2019.09.18-000946:11:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "9uYu0U-tSjifvO6YLvNY5Q", - "primary": true, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.9", - "ip": "172.16.1.9", - "name": "esw2-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.9:9300", - "uuid": "9uYu0U-tSjifvO6YLvNY5Q" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:lo4CBuVcRnylVW7aOLRxsA:om-iu-bro-2019.09.18-000946:12:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "lo4CBuVcRnylVW7aOLRxsA", - "primary": true, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.45", - "ip": "172.16.1.45", - "name": "esw1-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.45:9300", - "uuid": "lo4CBuVcRnylVW7aOLRxsA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VEO2NkvRRCaMPmF6ogMTRg:om-iu-bro-2019.09.18-000946:12:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "VEO2NkvRRCaMPmF6ogMTRg", - "primary": false, - "relocating_node": null, - "shard": 12, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.182", - "ip": "172.16.1.182", - "name": "esw1-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.182:9300", - "uuid": "VEO2NkvRRCaMPmF6ogMTRg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:z29jmIBjT0atD5RMcz07Bw:om-iu-bro-2019.09.18-000946:4:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "z29jmIBjT0atD5RMcz07Bw", - "primary": false, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.84", - "ip": "172.16.1.84", - "name": "esw2-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.84:9300", - "uuid": "z29jmIBjT0atD5RMcz07Bw" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8c-ntk3fQ4yuDO4SolrmgQ:om-iu-bro-2019.09.18-000946:4:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "8c-ntk3fQ4yuDO4SolrmgQ", - "primary": true, - "relocating_node": null, - "shard": 4, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.70", - "ip": "172.16.1.70", - "name": "esw3-22-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.70:9300", - "uuid": "8c-ntk3fQ4yuDO4SolrmgQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:2-cKgQ3uRxqku-4pJxya9g:om-iu-bro-2019.09.18-000946:8:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "2-cKgQ3uRxqku-4pJxya9g", - "primary": true, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.194", - "ip": "172.16.1.194", - "name": "esw3-23-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.194:9300", - "uuid": "2-cKgQ3uRxqku-4pJxya9g" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:tdFhsZDUS3OMXKKSgB31iA:om-iu-bro-2019.09.18-000946:8:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "tdFhsZDUS3OMXKKSgB31iA", - "primary": false, - "relocating_node": null, - "shard": 8, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.21", - "ip": "172.16.1.21", - "name": "esw3-24-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.21:9300", - "uuid": "tdFhsZDUS3OMXKKSgB31iA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:i8xzV9jfRDmiKDVOkpiH1w:om-iu-bro-2019.09.18-000946:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "i8xzV9jfRDmiKDVOkpiH1w", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.65", - "ip": "172.16.1.65", - "name": "esw3-25-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.65:9300", - "uuid": "i8xzV9jfRDmiKDVOkpiH1w" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:KmYYNfYtTlKatZljOJheqQ:om-iu-bro-2019.09.18-000946:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "KmYYNfYtTlKatZljOJheqQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.201", - "ip": "172.16.1.201", - "name": "esw2-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.201:9300", - "uuid": "KmYYNfYtTlKatZljOJheqQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:JCvzxsoFQ5KMUCNycmdzig:om-iu-bro-2019.09.18-000946:6:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "JCvzxsoFQ5KMUCNycmdzig", - "primary": true, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.139", - "ip": "172.16.1.139", - "name": "esw2-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.139:9300", - "uuid": "JCvzxsoFQ5KMUCNycmdzig" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.18-000946:6:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 6, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VmhwK5_HQFyAiiI5TDcWUg:om-iu-bro-2019.09.18-000946:15:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "VmhwK5_HQFyAiiI5TDcWUg", - "primary": true, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.242", - "ip": "172.16.1.242", - "name": "esw2-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.242:9300", - "uuid": "VmhwK5_HQFyAiiI5TDcWUg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.18-000946:15:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 15, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:T5YTkUVTQIeK_uxA2QHQ9A:om-iu-bro-2019.09.18-000946:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "T5YTkUVTQIeK_uxA2QHQ9A", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.177", - "ip": "172.16.1.177", - "name": "esw3-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.177:9300", - "uuid": "T5YTkUVTQIeK_uxA2QHQ9A" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:8FwJYnAMT0afpHOfKlA0Sg:om-iu-bro-2019.09.18-000946:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "8FwJYnAMT0afpHOfKlA0Sg", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.122", - "ip": "172.16.1.122", - "name": "esw3-21-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.122:9300", - "uuid": "8FwJYnAMT0afpHOfKlA0Sg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.18-000946:14:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": false, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:IbXa_L0vS0mePhKF9Uu-IA:om-iu-bro-2019.09.18-000946:14:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "IbXa_L0vS0mePhKF9Uu-IA", - "primary": true, - "relocating_node": null, - "shard": 14, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.0", - "ip": "172.16.1.0", - "name": "esw1-27-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.0:9300", - "uuid": "IbXa_L0vS0mePhKF9Uu-IA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:Zy_SYWxzSxy4lYkPVjcOlA:om-iu-bro-2019.09.18-000946:0:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "Zy_SYWxzSxy4lYkPVjcOlA", - "primary": false, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.216", - "ip": "172.16.1.216", - "name": "esw1-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.216:9300", - "uuid": "Zy_SYWxzSxy4lYkPVjcOlA" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:B-eD78fVS1G5st41XrrsQQ:om-iu-bro-2019.09.18-000946:0:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.18-000946", - "node": "B-eD78fVS1G5st41XrrsQQ", - "primary": true, - "relocating_node": null, - "shard": 0, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.238", - "ip": "172.16.1.238", - "name": "esw3-29-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.238:9300", - "uuid": "B-eD78fVS1G5st41XrrsQQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:sZG2ItuSQHOOhGuVlbbgGQ:om-iu-bro-2019.09.22-000967:16:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000967", - "node": "sZG2ItuSQHOOhGuVlbbgGQ", - "primary": true, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.190", - "ip": "172.16.1.190", - "name": "esw1-28-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.190:9300", - "uuid": "sZG2ItuSQHOOhGuVlbbgGQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:nntzfh-vQpWHs0j_BZ-wWQ:om-iu-bro-2019.09.22-000967:16:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000967", - "node": "nntzfh-vQpWHs0j_BZ-wWQ", - "primary": false, - "relocating_node": null, - "shard": 16, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.253", - "ip": "172.16.1.253", - "name": "esw1-19-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.253:9300", - "uuid": "nntzfh-vQpWHs0j_BZ-wWQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:1B2TfiFoSCCBO_h2zoYbaQ:om-iu-bro-2019.09.22-000967:5:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000967", - "node": "1B2TfiFoSCCBO_h2zoYbaQ", - "primary": false, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.115", - "ip": "172.16.1.115", - "name": "esw3-30-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.115:9300", - "uuid": "1B2TfiFoSCCBO_h2zoYbaQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:VXzx30rRR1GjnRBYLIi5gQ:om-iu-bro-2019.09.22-000967:5:p", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000967", - "node": "VXzx30rRR1GjnRBYLIi5gQ", - "primary": true, - "relocating_node": null, - "shard": 5, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.205", - "ip": "172.16.1.205", - "name": "esw2-20-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.205:9300", - "uuid": "VXzx30rRR1GjnRBYLIi5gQ" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} - -{ - "type": "doc", - "value": { - "id": "rejLjtrVSE2Gx_upxUJ59w:iAgoIxwKQAqddyXJJlHlCg:om-iu-bro-2019.09.22-000967:11:r", - "index": ".monitoring-es-7-2019.10.03", - "source": { - "cluster_uuid": "Pawu2etQQ9uPwl22Vm_Tug", - "interval_ms": 10000, - "shard": { - "index": "om-iu-bro-2019.09.22-000967", - "node": "iAgoIxwKQAqddyXJJlHlCg", - "primary": false, - "relocating_node": null, - "shard": 11, - "state": "STARTED" - }, - "source_node": { - "host": "172.16.1.100", - "ip": "172.16.1.100", - "name": "esw3-26-az10-dc-ent", - "timestamp": "2019-10-03T19:41:01.313Z", - "transport_address": "172.16.1.100:9300", - "uuid": "iAgoIxwKQAqddyXJJlHlCg" - }, - "state_uuid": "rejLjtrVSE2Gx_upxUJ59w", - "timestamp": "2019-10-03T19:41:01.402Z", - "type": "shards" - }, - "type": "_doc" - } -} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes_mb/data.json.gz new file mode 100644 index 000000000000..b0eca2661400 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes_mb/mappings.json new file mode 100644 index 000000000000..953555f43d7c --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_lots_of_nodes_mb/mappings.json @@ -0,0 +1,23201 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "aliases": { + }, + "index": ".monitoring-es-7-2019.10.03", + "mappings": { + "date_detection": false, + "dynamic": "false", + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "auto_expand_replicas": "0-1", + "codec": "best_compression", + "format": "7", + "number_of_replicas": "0", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-red-platinum/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-red-platinum/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-red-platinum/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-red-platinum/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum_mb/data.json.gz new file mode 100644 index 000000000000..0bdc500424ad Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum_mb/mappings.json new file mode 100644 index 000000000000..38137e71a7b6 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_red_platinum_mb/mappings.json @@ -0,0 +1,23376 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.10.06", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2017.10.06", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-three-nodes-shard-relocation/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-three-nodes-shard-relocation/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-three-nodes-shard-relocation/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-three-nodes-shard-relocation/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation_mb/data.json.gz new file mode 100644 index 000000000000..ff095d4015be Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation_mb/mappings.json new file mode 100644 index 000000000000..9f1df3f92265 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_three_nodes_shard_relocation_mb/mappings.json @@ -0,0 +1,23604 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2017.10.05", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-logstash-6-2017.10.05", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "queue": { + "properties": { + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + }, + "type": "nested" + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "long" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + }, + "timestamp": { + "type": "date" + } + } + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.10.05", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-basic/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-basic/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-basic/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-basic/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic_mb/data.json.gz new file mode 100644 index 000000000000..f50a573def83 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic_mb/mappings.json new file mode 100644 index 000000000000..120548c04ce4 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_basic_mb/mappings.json @@ -0,0 +1,23258 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.08.29", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum--with-10-alerts/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum--with-10-alerts/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_mb/data.json.gz new file mode 100644 index 000000000000..071729f8811f Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_mb/mappings.json new file mode 100644 index 000000000000..b37c365d57d8 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_mb/mappings.json @@ -0,0 +1,23376 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.08.29", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2017.08.29", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum--with-10-alerts/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts/data.json.gz similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum--with-10-alerts/data.json.gz rename to x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts/data.json.gz diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts/mappings.json similarity index 100% rename from x-pack/test/functional/es_archives/monitoring/singlecluster-yellow-platinum/mappings.json rename to x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts/mappings.json diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts_mb/data.json.gz new file mode 100644 index 000000000000..c4ae50090b02 Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts_mb/mappings.json new file mode 100644 index 000000000000..b37c365d57d8 --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/singlecluster_yellow_platinum_with_10_alerts_mb/mappings.json @@ -0,0 +1,23376 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2017.08.29", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2017.08.29", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional/es_archives/monitoring/standalone_cluster_mb/data.json.gz b/x-pack/test/functional/es_archives/monitoring/standalone_cluster_mb/data.json.gz new file mode 100644 index 000000000000..75e2e22cc05a Binary files /dev/null and b/x-pack/test/functional/es_archives/monitoring/standalone_cluster_mb/data.json.gz differ diff --git a/x-pack/test/functional/es_archives/monitoring/standalone_cluster_mb/mappings.json b/x-pack/test/functional/es_archives/monitoring/standalone_cluster_mb/mappings.json new file mode 100644 index 000000000000..f0e414bb260d --- /dev/null +++ b/x-pack/test/functional/es_archives/monitoring/standalone_cluster_mb/mappings.json @@ -0,0 +1,23685 @@ +{ + "type": "index", + "value": { + "index": "metricbeat-8.0.0", + "mappings": { + "_meta": { + "beat": "metricbeat", + "version": "8.0.0" + }, + "date_detection": false, + "dynamic_templates": [ + { + "labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "labels.*" + } + }, + { + "container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "container.labels.*" + } + }, + { + "dns.answers": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "dns.answers.*" + } + }, + { + "log.syslog": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "log.syslog.*" + } + }, + { + "network.inner": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "network.inner.*" + } + }, + { + "observer.egress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.egress.*" + } + }, + { + "observer.ingress": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "observer.ingress.*" + } + }, + { + "fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "fields.*" + } + }, + { + "docker.container.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.container.labels.*" + } + }, + { + "kubernetes.labels.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.labels.*" + } + }, + { + "kubernetes.annotations.*": { + "mapping": { + "type": "keyword" + }, + "path_match": "kubernetes.annotations.*" + } + }, + { + "docker.cpu.core.*.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.pct" + } + }, + { + "docker.cpu.core.*.norm.pct": { + "mapping": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "path_match": "docker.cpu.core.*.norm.pct" + } + }, + { + "docker.cpu.core.*.ticks": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "docker.cpu.core.*.ticks" + } + }, + { + "docker.event.actor.attributes": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.event.actor.attributes.*" + } + }, + { + "docker.image.labels": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "docker.image.labels.*" + } + }, + { + "docker.memory.stats.*": { + "mapping": { + "type": "long" + }, + "path_match": "docker.memory.stats.*" + } + }, + { + "etcd.disk.wal_fsync_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" + } + }, + { + "etcd.disk.backend_commit_duration.ns.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" + } + }, + { + "kubernetes.apiserver.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.apiserver.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.apiserver.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.apiserver.request.latency.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.latency.bucket.*" + } + }, + { + "kubernetes.apiserver.request.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.apiserver.request.duration.us.bucket.*" + } + }, + { + "kubernetes.controllermanager.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.proxy.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.proxy.sync.rules.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*" + } + }, + { + "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.http.request.duration.us.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*" + } + }, + { + "kubernetes.scheduler.http.request.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.http.response.size.bytes.percentile.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" + } + }, + { + "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*" + } + }, + { + "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { + "mapping": { + "type": "double" + }, + "match_mapping_type": "double", + "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" + } + }, + { + "munin.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "munin.metrics.*" + } + }, + { + "prometheus.labels.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "prometheus.labels.*" + } + }, + { + "prometheus.metrics.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.metrics.*" + } + }, + { + "prometheus.query.*": { + "mapping": { + "type": "double" + }, + "path_match": "prometheus.query.*" + } + }, + { + "system.process.env": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.process.env.*" + } + }, + { + "system.process.cgroup.cpuacct.percpu": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "system.process.cgroup.cpuacct.percpu.*" + } + }, + { + "system.raid.disks.states.*": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "system.raid.disks.states.*" + } + }, + { + "traefik.health.response.status_codes.*": { + "mapping": { + "type": "long" + }, + "match_mapping_type": "long", + "path_match": "traefik.health.response.status_codes.*" + } + }, + { + "vsphere.virtualmachine.custom_fields": { + "mapping": { + "type": "keyword" + }, + "match_mapping_type": "string", + "path_match": "vsphere.virtualmachine.custom_fields.*" + } + }, + { + "windows.perfmon.metrics.*.*": { + "mapping": { + "type": "float" + }, + "path_match": "windows.perfmon.metrics.*.*" + } + }, + { + "strings_as_keyword": { + "mapping": { + "ignore_above": 1024, + "type": "keyword" + }, + "match_mapping_type": "string" + } + } + ], + "properties": { + "@timestamp": { + "type": "date" + }, + "aerospike": { + "properties": { + "namespace": { + "properties": { + "client": { + "properties": { + "delete": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "read": { + "properties": { + "error": { + "type": "long" + }, + "not_found": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + }, + "write": { + "properties": { + "error": { + "type": "long" + }, + "success": { + "type": "long" + }, + "timeout": { + "type": "long" + } + } + } + } + }, + "device": { + "properties": { + "available": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "hwm_breached": { + "type": "boolean" + }, + "memory": { + "properties": { + "free": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "used": { + "properties": { + "data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sindex": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "objects": { + "properties": { + "master": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "stop_writes": { + "type": "boolean" + } + } + } + } + }, + "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" + } + } + }, + "apache": { + "properties": { + "status": { + "properties": { + "bytes_per_request": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "bytes_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "connections": { + "properties": { + "async": { + "properties": { + "closing": { + "type": "long" + }, + "keep_alive": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cpu": { + "properties": { + "children_system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "children_user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "load": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "system": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + }, + "requests_per_sec": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "scoreboard": { + "properties": { + "closing_connection": { + "type": "long" + }, + "dns_lookup": { + "type": "long" + }, + "gracefully_finishing": { + "type": "long" + }, + "idle_cleanup": { + "type": "long" + }, + "keepalive": { + "type": "long" + }, + "logging": { + "type": "long" + }, + "open_slot": { + "type": "long" + }, + "reading_request": { + "type": "long" + }, + "sending_reply": { + "type": "long" + }, + "starting_up": { + "type": "long" + }, + "total": { + "type": "long" + }, + "waiting_for_connection": { + "type": "long" + } + } + }, + "total_accesses": { + "type": "long" + }, + "total_kbytes": { + "type": "long" + }, + "uptime": { + "properties": { + "server_uptime": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "workers": { + "properties": { + "busy": { + "type": "long" + }, + "idle": { + "type": "long" + } + } + } + } + } + } + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "beat": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "properties": { + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "containerized": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "kernel": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "management": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "module": { + "properties": { + "count": { + "type": "long" + }, + "names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "output": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "invalidquery": { + "type": "long" + }, + "method": { + "type": "long" + }, + "notfound": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unset": { + "type": "long" + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "notmodified": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reader": { + "properties": { + "count": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "type": "long" + }, + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "frames": { + "type": "long" + }, + "spans": { + "type": "long" + }, + "stacktraces": { + "type": "long" + }, + "transactions": { + "type": "long" + }, + "transformations": { + "type": "long" + }, + "validation": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "count": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "count": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "reloads": { + "type": "short" + }, + "running": { + "type": "short" + }, + "starts": { + "type": "short" + }, + "stops": { + "type": "short" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "batches": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "duplicates": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "toomany": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "type": "long" + }, + "events": { + "properties": { + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "acked": { + "type": "long" + } + } + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory": { + "properties": { + "alloc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rss": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "goroutines": { + "type": "long" + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + }, + "norm": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "beats_state": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.state.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.state.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.state.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.state.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.state.beat.version", + "type": "alias" + } + } + }, + "state": { + "properties": { + "beat": { + "properties": { + "name": { + "path": "beat.state.beat.name", + "type": "alias" + } + } + }, + "host": { + "properties": { + "architecture": { + "path": "host.architecture", + "type": "alias" + }, + "hostname": { + "path": "host.hostname", + "type": "alias" + }, + "name": { + "path": "host.name", + "type": "alias" + }, + "os": { + "properties": { + "platform": { + "path": "beat.state.host.os.platform", + "type": "alias" + }, + "version": { + "path": "beat.state.host.os.version", + "type": "alias" + } + } + } + } + }, + "input": { + "properties": { + "count": { + "path": "beat.state.input.count", + "type": "alias" + }, + "names": { + "path": "beat.state.input.names", + "type": "alias" + } + } + }, + "module": { + "properties": { + "count": { + "path": "beat.state.module.count", + "type": "alias" + }, + "names": { + "path": "beat.state.module.names", + "type": "alias" + } + } + }, + "output": { + "properties": { + "name": { + "path": "beat.state.output.name", + "type": "alias" + } + } + }, + "service": { + "properties": { + "id": { + "path": "beat.state.service.id", + "type": "alias" + }, + "name": { + "path": "beat.state.service.name", + "type": "alias" + }, + "version": { + "path": "beat.state.service.version", + "type": "alias" + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "host": { + "path": "beat.stats.beat.host", + "type": "alias" + }, + "name": { + "path": "beat.stats.beat.name", + "type": "alias" + }, + "type": { + "path": "beat.stats.beat.type", + "type": "alias" + }, + "uuid": { + "path": "beat.stats.beat.uuid", + "type": "alias" + }, + "version": { + "path": "beat.stats.beat.version", + "type": "alias" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "acm": { + "properties": { + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.acm.response.errors.closed", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.acm.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.acm.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.acm.response.errors.internal", + "type": "alias" + }, + "invalidquery": { + "path": "beat.stats.apm-server.acm.response.errors.invalidquery", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.acm.response.errors.method", + "type": "alias" + }, + "notfound": { + "path": "beat.stats.apm-server.acm.response.errors.notfound", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.acm.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.acm.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.acm.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.acm.response.errors.unauthorized", + "type": "alias" + }, + "unavailable": { + "path": "beat.stats.apm-server.acm.response.errors.unavailable", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.acm.response.errors.validate", + "type": "alias" + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.acm.response.request.count", + "type": "alias" + } + } + }, + "unset": { + "path": "beat.stats.apm-server.acm.response.unset", + "type": "alias" + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.acm.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.acm.response.valid.count", + "type": "alias" + }, + "notmodified": { + "path": "beat.stats.apm-server.acm.response.valid.notmodified", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.acm.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + }, + "decoder": { + "properties": { + "deflate": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.deflate.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.deflate.count", + "type": "alias" + } + } + }, + "gzip": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.gzip.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.gzip.count", + "type": "alias" + } + } + }, + "missing-content-length": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.missing-content-length.count", + "type": "alias" + } + } + }, + "reader": { + "properties": { + "count": { + "path": "beat.stats.apm-server.decoder.reader.count", + "type": "alias" + }, + "size": { + "path": "beat.stats.apm-server.decoder.reader.size", + "type": "alias" + } + } + }, + "uncompressed": { + "properties": { + "content-length": { + "path": "beat.stats.apm-server.decoder.uncompressed.content-length", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.decoder.uncompressed.count", + "type": "alias" + } + } + } + } + }, + "processor": { + "properties": { + "error": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.error.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.error.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.error.stacktraces", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.error.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.error.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.error.validation.errors", + "type": "alias" + } + } + } + } + }, + "metric": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.decoding.errors", + "type": "alias" + } + } + }, + "transformations": { + "path": "beat.stats.apm-server.processor.metric.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.metric.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.metric.validation.errors", + "type": "alias" + } + } + } + } + }, + "sourcemap": { + "properties": { + "counter": { + "path": "beat.stats.apm-server.processor.sourcemap.counter", + "type": "alias" + }, + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.decoding.errors", + "type": "alias" + } + } + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.sourcemap.validation.errors", + "type": "alias" + } + } + } + } + }, + "span": { + "properties": { + "transformations": { + "path": "beat.stats.apm-server.processor.span.transformations", + "type": "alias" + } + } + }, + "transaction": { + "properties": { + "decoding": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.decoding.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.decoding.errors", + "type": "alias" + } + } + }, + "frames": { + "path": "beat.stats.apm-server.processor.transaction.frames", + "type": "alias" + }, + "spans": { + "path": "beat.stats.apm-server.processor.transaction.spans", + "type": "alias" + }, + "stacktraces": { + "path": "beat.stats.apm-server.processor.transaction.stacktraces", + "type": "alias" + }, + "transactions": { + "path": "beat.stats.apm-server.processor.transaction.transactions", + "type": "alias" + }, + "transformations": { + "path": "beat.stats.apm-server.processor.transaction.transformations", + "type": "alias" + }, + "validation": { + "properties": { + "count": { + "path": "beat.stats.apm-server.processor.transaction.validation.count", + "type": "alias" + }, + "errors": { + "path": "beat.stats.apm-server.processor.transaction.validation.errors", + "type": "alias" + } + } + } + } + } + } + }, + "server": { + "properties": { + "concurrent": { + "properties": { + "wait": { + "properties": { + "ms": { + "path": "beat.stats.apm-server.server.concurrent.wait.ms", + "type": "alias" + } + } + } + } + }, + "request": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.request.count", + "type": "alias" + } + } + }, + "response": { + "properties": { + "count": { + "path": "beat.stats.apm-server.server.response.count", + "type": "alias" + }, + "errors": { + "properties": { + "closed": { + "path": "beat.stats.apm-server.server.response.errors.closed", + "type": "alias" + }, + "concurrency": { + "path": "beat.stats.apm-server.server.response.errors.concurrency", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.errors.count", + "type": "alias" + }, + "decode": { + "path": "beat.stats.apm-server.server.response.errors.decode", + "type": "alias" + }, + "forbidden": { + "path": "beat.stats.apm-server.server.response.errors.forbidden", + "type": "alias" + }, + "internal": { + "path": "beat.stats.apm-server.server.response.errors.internal", + "type": "alias" + }, + "method": { + "path": "beat.stats.apm-server.server.response.errors.method", + "type": "alias" + }, + "queue": { + "path": "beat.stats.apm-server.server.response.errors.queue", + "type": "alias" + }, + "ratelimit": { + "path": "beat.stats.apm-server.server.response.errors.ratelimit", + "type": "alias" + }, + "toolarge": { + "path": "beat.stats.apm-server.server.response.errors.toolarge", + "type": "alias" + }, + "unauthorized": { + "path": "beat.stats.apm-server.server.response.errors.unauthorized", + "type": "alias" + }, + "validate": { + "path": "beat.stats.apm-server.server.response.errors.validate", + "type": "alias" + } + } + }, + "valid": { + "properties": { + "accepted": { + "path": "beat.stats.apm-server.server.response.valid.accepted", + "type": "alias" + }, + "count": { + "path": "beat.stats.apm-server.server.response.valid.count", + "type": "alias" + }, + "ok": { + "path": "beat.stats.apm-server.server.response.valid.ok", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.period.us", + "type": "alias" + } + } + }, + "quota": { + "properties": { + "us": { + "path": "beat.stats.cgroup.cpu.cfs.quota.us", + "type": "alias" + } + } + } + } + }, + "id": { + "path": "beat.stats.cgroup.cpu.id", + "type": "alias" + }, + "stats": { + "properties": { + "periods": { + "path": "beat.stats.cgroup.cpu.stats.periods", + "type": "alias" + }, + "throttled": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpu.stats.throttled.ns", + "type": "alias" + }, + "periods": { + "path": "beat.stats.cgroup.cpu.stats.throttled.periods", + "type": "alias" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "path": "beat.stats.cgroup.cpuacct.id", + "type": "alias" + }, + "total": { + "properties": { + "ns": { + "path": "beat.stats.cgroup.cpuacct.total.ns", + "type": "alias" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.limit.bytes", + "type": "alias" + } + } + }, + "usage": { + "properties": { + "bytes": { + "path": "beat.stats.cgroup.memory.mem.usage.bytes", + "type": "alias" + } + } + } + } + }, + "memory": { + "properties": { + "id": { + "path": "beat.stats.cgroup.memory.id", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "system": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.system.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.system.time.ms", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.total.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.total.time.ms", + "type": "alias" + } + } + }, + "value": { + "path": "beat.stats.cpu.total.value", + "type": "alias" + } + } + }, + "user": { + "properties": { + "ticks": { + "path": "beat.stats.cpu.user.ticks", + "type": "alias" + }, + "time": { + "properties": { + "ms": { + "path": "beat.stats.cpu.user.time.ms", + "type": "alias" + } + } + } + } + } + } + }, + "handles": { + "properties": { + "limit": { + "properties": { + "hard": { + "path": "beat.stats.handles.limit.hard", + "type": "alias" + }, + "soft": { + "path": "beat.stats.handles.limit.soft", + "type": "alias" + } + } + }, + "open": { + "path": "beat.stats.handles.open", + "type": "alias" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "path": "beat.stats.info.ephemeral_id", + "type": "alias" + }, + "uptime": { + "properties": { + "ms": { + "path": "beat.stats.info.uptime.ms", + "type": "alias" + } + } + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "path": "beat.stats.memstats.gc_next", + "type": "alias" + }, + "memory_alloc": { + "path": "beat.stats.memstats.memory.alloc", + "type": "alias" + }, + "memory_total": { + "path": "beat.stats.memstats.memory.total", + "type": "alias" + }, + "rss": { + "path": "beat.stats.memstats.rss", + "type": "alias" + } + } + } + } + }, + "libbeat": { + "properties": { + "config": { + "properties": { + "module": { + "properties": { + "running": { + "path": "beat.stats.libbeat.config.running", + "type": "alias" + }, + "starts": { + "path": "beat.stats.libbeat.config.starts", + "type": "alias" + }, + "stops": { + "path": "beat.stats.libbeat.config.stops", + "type": "alias" + } + } + }, + "reloads": { + "path": "beat.stats.libbeat.config.reloads", + "type": "alias" + } + } + }, + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.output.events.acked", + "type": "alias" + }, + "active": { + "path": "beat.stats.libbeat.output.events.active", + "type": "alias" + }, + "batches": { + "path": "beat.stats.libbeat.output.events.batches", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.output.events.dropped", + "type": "alias" + }, + "duplicated": { + "path": "beat.stats.libbeat.output.events.duplicates", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.output.events.failed", + "type": "alias" + }, + "toomany": { + "path": "beat.stats.libbeat.output.events.toomany", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.output.events.total", + "type": "alias" + } + } + }, + "read": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.read.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.read.errors", + "type": "alias" + } + } + }, + "type": { + "path": "beat.stats.libbeat.output.type", + "type": "alias" + }, + "write": { + "properties": { + "bytes": { + "path": "beat.stats.libbeat.output.write.bytes", + "type": "alias" + }, + "errors": { + "path": "beat.stats.libbeat.output.write.errors", + "type": "alias" + } + } + } + } + }, + "pipeline": { + "properties": { + "clients": { + "path": "beat.stats.libbeat.pipeline.clients", + "type": "alias" + }, + "events": { + "properties": { + "active": { + "path": "beat.stats.libbeat.pipeline.events.active", + "type": "alias" + }, + "dropped": { + "path": "beat.stats.libbeat.pipeline.events.dropped", + "type": "alias" + }, + "failed": { + "path": "beat.stats.libbeat.pipeline.events.failed", + "type": "alias" + }, + "filtered": { + "path": "beat.stats.libbeat.pipeline.events.filtered", + "type": "alias" + }, + "published": { + "path": "beat.stats.libbeat.pipeline.events.published", + "type": "alias" + }, + "retry": { + "path": "beat.stats.libbeat.pipeline.events.retry", + "type": "alias" + }, + "total": { + "path": "beat.stats.libbeat.pipeline.events.total", + "type": "alias" + } + } + }, + "queue": { + "properties": { + "acked": { + "path": "beat.stats.libbeat.pipeline.queue.acked", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "cpu": { + "properties": { + "cores": { + "path": "beat.stats.system.cpu.cores", + "type": "alias" + } + } + }, + "load": { + "properties": { + "1": { + "path": "beat.stats.system.load.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.5", + "type": "alias" + }, + "norm": { + "properties": { + "1": { + "path": "beat.stats.system.load.norm.1", + "type": "alias" + }, + "15": { + "path": "beat.stats.system.load.norm.15", + "type": "alias" + }, + "5": { + "path": "beat.stats.system.load.norm.5", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "ccr_auto_follow_stats": { + "properties": { + "follower": { + "properties": { + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + } + } + }, + "number_of_failed_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.failed.follow_indices.count", + "type": "alias" + }, + "number_of_failed_remote_cluster_state_requests": { + "path": "elasticsearch.ccr.auto_follow.failed.remote_cluster_state_requests.count", + "type": "alias" + }, + "number_of_successful_follow_indices": { + "path": "elasticsearch.ccr.auto_follow.success.follow_indices.count", + "type": "alias" + } + } + }, + "ccr_stats": { + "properties": { + "bytes_read": { + "path": "elasticsearch.ccr.bytes_read", + "type": "alias" + }, + "failed_read_requests": { + "path": "elasticsearch.ccr.requests.failed.read.count", + "type": "alias" + }, + "failed_write_requests": { + "path": "elasticsearch.ccr.requests.failed.write.count", + "type": "alias" + }, + "follower_aliases_version": { + "path": "elasticsearch.ccr.follower.aliases_version", + "type": "alias" + }, + "follower_global_checkpoint": { + "path": "elasticsearch.ccr.follower.global_checkpoint", + "type": "alias" + }, + "follower_index": { + "path": "elasticsearch.ccr.follower.index", + "type": "alias" + }, + "follower_mapping_version": { + "path": "elasticsearch.ccr.follower.mapping_version", + "type": "alias" + }, + "follower_max_seq_no": { + "path": "elasticsearch.ccr.follower.max_seq_no", + "type": "alias" + }, + "follower_settings_version": { + "path": "elasticsearch.ccr.follower.settings_version", + "type": "alias" + }, + "last_requested_seq_no": { + "path": "elasticsearch.ccr.last_requested_seq_no", + "type": "alias" + }, + "leader_global_checkpoint": { + "path": "elasticsearch.ccr.leader.global_checkpoint", + "type": "alias" + }, + "leader_index": { + "path": "elasticsearch.ccr.leader.index", + "type": "alias" + }, + "leader_max_seq_no": { + "path": "elasticsearch.ccr.leader.max_seq_no", + "type": "alias" + }, + "operations_read": { + "path": "elasticsearch.ccr.follower.operations.read.count", + "type": "alias" + }, + "operations_written": { + "path": "elasticsearch.ccr.follower.operations_written", + "type": "alias" + }, + "outstanding_read_requests": { + "path": "elasticsearch.ccr.requests.outstanding.read.count", + "type": "alias" + }, + "outstanding_write_requests": { + "path": "elasticsearch.ccr.requests.outstanding.write.count", + "type": "alias" + }, + "remote_cluster": { + "path": "elasticsearch.ccr.remote_cluster", + "type": "alias" + }, + "shard_id": { + "path": "elasticsearch.ccr.follower.shard.number", + "type": "alias" + }, + "successful_read_requests": { + "path": "elasticsearch.ccr.requests.successful.read.count", + "type": "alias" + }, + "successful_write_requests": { + "path": "elasticsearch.ccr.requests.successful.write.count", + "type": "alias" + }, + "total_read_remote_exec_time_millis": { + "path": "elasticsearch.ccr.total_time.read.remote_exec.ms", + "type": "alias" + }, + "total_read_time_millis": { + "path": "elasticsearch.ccr.total_time.read.ms", + "type": "alias" + }, + "total_write_time_millis": { + "path": "elasticsearch.ccr.total_time.write.ms", + "type": "alias" + }, + "write_buffer_operation_count": { + "path": "elasticsearch.ccr.write_buffer.operation.count", + "type": "alias" + }, + "write_buffer_size_in_bytes": { + "path": "elasticsearch.ccr.write_buffer.size.bytes", + "type": "alias" + } + } + }, + "ceph": { + "properties": { + "cluster_disk": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "cluster_health": { + "properties": { + "overall_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "timechecks": { + "properties": { + "epoch": { + "type": "long" + }, + "round": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + } + } + }, + "cluster_status": { + "properties": { + "degraded": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "misplace": { + "properties": { + "objects": { + "type": "long" + }, + "ratio": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "osd": { + "properties": { + "epoch": { + "type": "long" + }, + "full": { + "type": "boolean" + }, + "nearfull": { + "type": "boolean" + }, + "num_in_osds": { + "type": "long" + }, + "num_osds": { + "type": "long" + }, + "num_remapped_pgs": { + "type": "long" + }, + "num_up_osds": { + "type": "long" + } + } + }, + "pg": { + "properties": { + "avail_bytes": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "total_bytes": { + "type": "long" + }, + "used_bytes": { + "type": "long" + } + } + }, + "pg_state": { + "properties": { + "count": { + "type": "long" + }, + "state_name": { + "type": "long" + }, + "version": { + "type": "long" + } + } + }, + "traffic": { + "properties": { + "read_bytes": { + "type": "long" + }, + "read_op_per_sec": { + "type": "long" + }, + "write_bytes": { + "type": "long" + }, + "write_op_per_sec": { + "type": "long" + } + } + }, + "version": { + "type": "long" + } + } + }, + "mgr_osd_perf": { + "properties": { + "id": { + "type": "long" + }, + "stats": { + "properties": { + "apply_latency_ms": { + "type": "long" + }, + "apply_latency_ns": { + "type": "long" + }, + "commit_latency_ms": { + "type": "long" + }, + "commit_latency_ns": { + "type": "long" + } + } + } + } + }, + "mgr_osd_pool_stats": { + "properties": { + "client_io_rate": { + "type": "object" + }, + "pool_id": { + "type": "long" + }, + "pool_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "monitor_health": { + "properties": { + "available": { + "properties": { + "kb": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + }, + "health": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_updated": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "store_stats": { + "properties": { + "last_updated": { + "type": "long" + }, + "log": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "misc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "sst": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "kb": { + "type": "long" + } + } + }, + "used": { + "properties": { + "kb": { + "type": "long" + } + } + } + } + }, + "osd_df": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pg_num": { + "type": "long" + }, + "total": { + "properties": { + "byte": { + "type": "long" + } + } + }, + "used": { + "properties": { + "byte": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "osd_tree": { + "properties": { + "children": { + "ignore_above": 1024, + "type": "keyword" + }, + "crush_weight": { + "type": "float" + }, + "depth": { + "type": "long" + }, + "device_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "exists": { + "type": "boolean" + }, + "father": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary_affinity": { + "type": "float" + }, + "reweight": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "type_id": { + "type": "long" + } + } + }, + "pool_disk": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "objects": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "kb": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "cloud": { + "properties": { + "account": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "availability_zone": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "instance": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "machine": { + "properties": { + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "project": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "region": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster_state": { + "properties": { + "master_node": { + "path": "elasticsearch.cluster.stats.state.master_node", + "type": "alias" + }, + "nodes_hash": { + "path": "elasticsearch.cluster.stats.state.nodes_hash", + "type": "alias" + }, + "state_uuid": { + "path": "elasticsearch.cluster.stats.state.state_uuid", + "type": "alias" + }, + "status": { + "path": "elasticsearch.cluster.stats.status", + "type": "alias" + }, + "version": { + "path": "elasticsearch.cluster.stats.state.version", + "type": "alias" + } + } + }, + "cluster_stats": { + "properties": { + "indices": { + "properties": { + "count": { + "path": "elasticsearch.cluster.stats.indices.total", + "type": "alias" + }, + "shards": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.indices.shards.count", + "type": "alias" + } + } + } + } + }, + "nodes": { + "properties": { + "count": { + "properties": { + "total": { + "path": "elasticsearch.cluster.stats.nodes.count", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "max_uptime_in_millis": { + "path": "elasticsearch.cluster.stats.nodes.jvm.max_uptime.ms", + "type": "alias" + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.cluster.stats.nodes.jvm.memory.heap.used.bytes", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "cluster_uuid": { + "path": "elasticsearch.cluster.id", + "type": "alias" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "consul": { + "properties": { + "agent": { + "properties": { + "autopilot": { + "properties": { + "healthy": { + "type": "boolean" + } + } + }, + "runtime": { + "properties": { + "alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "garbage_collector": { + "properties": { + "pause": { + "properties": { + "current": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "runs": { + "type": "long" + } + } + }, + "goroutines": { + "type": "long" + }, + "heap_objects": { + "type": "long" + }, + "malloc_count": { + "type": "long" + }, + "sys": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "container": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "tag": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "runtime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "couchbase": { + "properties": { + "bucket": { + "properties": { + "data": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "fetches": { + "type": "double" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "item_count": { + "type": "long" + }, + "memory": { + "properties": { + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ops_per_sec": { + "type": "double" + }, + "quota": { + "properties": { + "ram": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "use": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cluster": { + "properties": { + "hdd": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "max_bucket_count": { + "type": "long" + }, + "quota": { + "properties": { + "index_memory": { + "properties": { + "mb": { + "type": "double" + } + } + }, + "memory": { + "properties": { + "mb": { + "type": "double" + } + } + } + } + }, + "ram": { + "properties": { + "quota": { + "properties": { + "total": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "per_node": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "by_data": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "value": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "node": { + "properties": { + "cmd_get": { + "type": "double" + }, + "couch": { + "properties": { + "docs": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "spatial": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "views": { + "properties": { + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "disk_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu_utilization_rate": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "current_items": { + "properties": { + "total": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ep_bg_fetched": { + "type": "long" + }, + "get_hits": { + "type": "double" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "mcd_memory": { + "properties": { + "allocated": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "reserved": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "double" + }, + "swap": { + "properties": { + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "vb_replica_curr_items": { + "type": "long" + } + } + } + } + }, + "couchdb": { + "properties": { + "server": { + "properties": { + "couchdb": { + "properties": { + "auth_cache_hits": { + "type": "long" + }, + "auth_cache_misses": { + "type": "long" + }, + "database_reads": { + "type": "long" + }, + "database_writes": { + "type": "long" + }, + "open_databases": { + "type": "long" + }, + "open_os_files": { + "type": "long" + }, + "request_time": { + "type": "long" + } + } + }, + "httpd": { + "properties": { + "bulk_requests": { + "type": "long" + }, + "clients_requesting_changes": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "temporary_view_reads": { + "type": "long" + }, + "view_reads": { + "type": "long" + } + } + }, + "httpd_request_methods": { + "properties": { + "COPY": { + "type": "long" + }, + "DELETE": { + "type": "long" + }, + "GET": { + "type": "long" + }, + "HEAD": { + "type": "long" + }, + "POST": { + "type": "long" + }, + "PUT": { + "type": "long" + } + } + }, + "httpd_status_codes": { + "properties": { + "200": { + "type": "long" + }, + "201": { + "type": "long" + }, + "202": { + "type": "long" + }, + "301": { + "type": "long" + }, + "304": { + "type": "long" + }, + "400": { + "type": "long" + }, + "401": { + "type": "long" + }, + "403": { + "type": "long" + }, + "404": { + "type": "long" + }, + "405": { + "type": "long" + }, + "409": { + "type": "long" + }, + "412": { + "type": "long" + }, + "500": { + "type": "long" + } + } + } + } + } + } + }, + "destination": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dll": { + "properties": { + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "dns": { + "properties": { + "answers": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "data": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ttl": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "header_flags": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "op_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "question": { + "properties": { + "class": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "subdomain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "resolved_ip": { + "type": "ip" + }, + "response_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "docker": { + "properties": { + "container": { + "properties": { + "command": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "ip_addresses": { + "type": "ip" + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "root_fs": { + "type": "long" + }, + "rw": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cpu": { + "properties": { + "core": { + "properties": { + "*": { + "properties": { + "norm": { + "properties": { + "pct": { + "type": "object" + } + } + }, + "pct": { + "type": "object" + }, + "ticks": { + "type": "object" + } + } + } + } + }, + "kernel": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "reads": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "summary": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "total": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "rate": { + "type": "long" + }, + "service_time": { + "type": "long" + }, + "wait_time": { + "type": "long" + } + } + }, + "writes": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "actor": { + "properties": { + "attributes": { + "type": "object" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "from": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "healthcheck": { + "properties": { + "event": { + "properties": { + "end_date": { + "type": "date" + }, + "exit_code": { + "type": "long" + }, + "output": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_date": { + "type": "date" + } + } + }, + "failingstreak": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "image": { + "properties": { + "created": { + "type": "date" + }, + "id": { + "properties": { + "current": { + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "type": "object" + }, + "size": { + "properties": { + "regular": { + "type": "long" + }, + "virtual": { + "type": "long" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "info": { + "properties": { + "containers": { + "properties": { + "paused": { + "type": "long" + }, + "running": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "images": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "commit": { + "properties": { + "peak": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "fail": { + "properties": { + "count": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "limit": { + "type": "long" + }, + "private_working_set": { + "properties": { + "total": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "*": { + "type": "object" + } + } + }, + "usage": { + "properties": { + "max": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "inbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "outbound": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + } + } + }, + "ecs": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "elasticsearch": { + "properties": { + "ccr": { + "properties": { + "auto_follow": { + "properties": { + "failed": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + }, + "remote_cluster_state_requests": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "success": { + "properties": { + "follow_indices": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "bytes_read": { + "type": "long" + }, + "follower": { + "properties": { + "aliases_version": { + "type": "long" + }, + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "mapping_version": { + "type": "long" + }, + "max_seq_no": { + "type": "long" + }, + "operations": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "operations_written": { + "type": "long" + }, + "settings_version": { + "type": "long" + }, + "shard": { + "properties": { + "number": { + "type": "long" + } + } + }, + "time_since_last_read": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "last_requested_seq_no": { + "type": "long" + }, + "leader": { + "properties": { + "global_checkpoint": { + "type": "long" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "max_seq_no": { + "type": "long" + } + } + }, + "read_exceptions": { + "type": "nested" + }, + "remote_cluster": { + "ignore_above": 1024, + "type": "keyword" + }, + "requests": { + "properties": { + "failed": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "outstanding": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "successful": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "shard_id": { + "type": "long" + }, + "total_time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + }, + "remote_exec": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_buffer": { + "properties": { + "operation": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cluster": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pending_task": { + "properties": { + "insert_order": { + "type": "long" + }, + "priority": { + "type": "long" + }, + "source": { + "ignore_above": 1024, + "type": "keyword" + }, + "time_in_queue": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "state": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "shards": { + "properties": { + "count": { + "type": "long" + }, + "docs": { + "properties": { + "total": { + "type": "long" + } + } + }, + "primaries": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + } + } + }, + "license": { + "properties": { + "expiry_date_in_millis": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "nodes": { + "properties": { + "count": { + "type": "long" + }, + "data": { + "type": "long" + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "max_uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "master": { + "type": "long" + }, + "stats": { + "properties": { + "data": { + "type": "long" + } + } + } + } + }, + "stack": { + "properties": { + "apm": { + "properties": { + "found": { + "type": "boolean" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "type": "boolean" + }, + "enabled": { + "type": "boolean" + } + } + } + } + } + } + }, + "state": { + "properties": { + "master_node": { + "ignore_above": 1024, + "type": "keyword" + }, + "nodes_hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "enrich": { + "properties": { + "executed_searches": { + "properties": { + "total": { + "type": "long" + } + } + }, + "executing_policy": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "cancellable": { + "type": "boolean" + }, + "id": { + "type": "long" + }, + "parent_task_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "task": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "running": { + "properties": { + "nano": { + "type": "long" + } + } + }, + "start": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "queue": { + "properties": { + "size": { + "type": "long" + } + } + }, + "remote_requests": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "created": { + "type": "long" + }, + "hidden": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "recovery": { + "properties": { + "id": { + "type": "long" + }, + "index": { + "properties": { + "files": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "recovered": { + "type": "long" + }, + "reused": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "size": { + "properties": { + "recovered_in_bytes": { + "type": "long" + }, + "reused_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "source": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stage": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "stop_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "target": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "translog": { + "properties": { + "percent": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "total_on_start": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "verify_index": { + "properties": { + "check_index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "shards": { + "properties": { + "total": { + "type": "long" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "primaries": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + }, + "count": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "total": { + "properties": { + "bulk": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "properties": { + "bytes": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "is_throttled": { + "type": "boolean" + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "total": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "evictions": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "external_total_time_in_millis": { + "type": "long" + }, + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "evictions": { + "type": "long" + }, + "hit_count": { + "type": "long" + }, + "memory_size_in_bytes": { + "type": "long" + }, + "miss_count": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ml": { + "properties": { + "job": { + "properties": { + "data": { + "properties": { + "invalid_date": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "data_counts": { + "properties": { + "invalid_date_count": { + "type": "long" + }, + "processed_record_count": { + "type": "long" + } + } + }, + "forecasts_stats": { + "properties": { + "total": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "model_size": { + "properties": { + "memory_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "jvm": { + "properties": { + "memory": { + "properties": { + "heap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "nonheap": { + "properties": { + "init": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "master": { + "type": "boolean" + }, + "mlockall": { + "type": "boolean" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "mlockall": { + "type": "boolean" + } + } + }, + "stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "operations": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "deleted": { + "type": "long" + } + } + }, + "fielddata": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "indexing": { + "properties": { + "index_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "index_total": { + "properties": { + "count": { + "type": "long" + } + } + }, + "throttle_time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "query_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "request_cache": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "query_time": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "query_total": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "segments": { + "properties": { + "count": { + "type": "long" + }, + "doc_values": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "fixed_bit_set": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "index_writer": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "norms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "points": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "stored_fields": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "term_vectors": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "terms": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "version_map": { + "properties": { + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "collection": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "double" + } + } + } + } + }, + "pools": { + "properties": { + "old": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "survivor": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "young": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "peak_max": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs": { + "properties": { + "quota": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "elapsed_periods": { + "properties": { + "count": { + "type": "long" + } + } + }, + "time_throttled": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "times_throttled": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "control_group": { + "ignore_above": 1024, + "type": "keyword" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "cpu": { + "properties": { + "load_avg": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "pct": { + "type": "double" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "get": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "index": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "search": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "queue": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "number": { + "type": "long" + }, + "primary": { + "type": "boolean" + }, + "relocating_node": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "envoyproxy": { + "properties": { + "server": { + "properties": { + "cluster_manager": { + "properties": { + "active_clusters": { + "type": "long" + }, + "cluster_added": { + "type": "long" + }, + "cluster_modified": { + "type": "long" + }, + "cluster_removed": { + "type": "long" + }, + "cluster_updated": { + "type": "long" + }, + "cluster_updated_via_merge": { + "type": "long" + }, + "update_merge_cancelled": { + "type": "long" + }, + "update_out_of_merge_window": { + "type": "long" + }, + "warming_clusters": { + "type": "long" + } + } + }, + "filesystem": { + "properties": { + "flushed_by_timer": { + "type": "long" + }, + "reopen_failed": { + "type": "long" + }, + "write_buffered": { + "type": "long" + }, + "write_completed": { + "type": "long" + }, + "write_failed": { + "type": "long" + }, + "write_total_buffered": { + "type": "long" + } + } + }, + "http2": { + "properties": { + "header_overflow": { + "type": "long" + }, + "headers_cb_no_stream": { + "type": "long" + }, + "rx_messaging_error": { + "type": "long" + }, + "rx_reset": { + "type": "long" + }, + "too_many_header_frames": { + "type": "long" + }, + "trailers": { + "type": "long" + }, + "tx_reset": { + "type": "long" + } + } + }, + "listener_manager": { + "properties": { + "listener_added": { + "type": "long" + }, + "listener_create_failure": { + "type": "long" + }, + "listener_create_success": { + "type": "long" + }, + "listener_modified": { + "type": "long" + }, + "listener_removed": { + "type": "long" + }, + "listener_stopped": { + "type": "long" + }, + "total_listeners_active": { + "type": "long" + }, + "total_listeners_draining": { + "type": "long" + }, + "total_listeners_warming": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "admin_overrides_active": { + "type": "long" + }, + "deprecated_feature_use": { + "type": "long" + }, + "load_error": { + "type": "long" + }, + "load_success": { + "type": "long" + }, + "num_keys": { + "type": "long" + }, + "num_layers": { + "type": "long" + }, + "override_dir_exists": { + "type": "long" + }, + "override_dir_not_exists": { + "type": "long" + } + } + }, + "server": { + "properties": { + "concurrency": { + "type": "long" + }, + "days_until_first_cert_expiring": { + "type": "long" + }, + "debug_assertion_failures": { + "type": "long" + }, + "dynamic_unknown_fields": { + "type": "long" + }, + "hot_restart_epoch": { + "type": "long" + }, + "live": { + "type": "long" + }, + "memory_allocated": { + "type": "long" + }, + "memory_heap_size": { + "type": "long" + }, + "parent_connections": { + "type": "long" + }, + "state": { + "type": "long" + }, + "static_unknown_fields": { + "type": "long" + }, + "stats_recent_lookups": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + }, + "version": { + "type": "long" + }, + "watchdog_mega_miss": { + "type": "long" + }, + "watchdog_miss": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "overflow": { + "type": "long" + } + } + } + } + } + } + }, + "error": { + "properties": { + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "message": { + "norms": false, + "type": "text" + }, + "stack_trace": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "etcd": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "disk": { + "properties": { + "backend_commit_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "mvcc_db_total_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "wal_fsync_duration": { + "properties": { + "ns": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "leader": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "followers": { + "properties": { + "counts": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + } + } + } + } + }, + "latency": { + "properties": { + "follower": { + "properties": { + "latency": { + "properties": { + "standardDeviation": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "followers": { + "properties": { + "latency": { + "properties": { + "average": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "current": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "maximum": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "minimum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "go_memstats_alloc": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "client_grpc_received": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "client_grpc_sent": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "self": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leaderinfo": { + "properties": { + "leader": { + "ignore_above": 1024, + "type": "keyword" + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "recv": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "send": { + "properties": { + "appendrequest": { + "properties": { + "count": { + "type": "long" + } + } + }, + "bandwidthrate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "pkgrate": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "starttime": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "grpc_handled": { + "properties": { + "count": { + "type": "long" + } + } + }, + "grpc_started": { + "properties": { + "count": { + "type": "long" + } + } + }, + "has_leader": { + "type": "byte" + }, + "leader_changes": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_committed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_failed": { + "properties": { + "count": { + "type": "long" + } + } + }, + "proposals_pending": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "store": { + "properties": { + "compareanddelete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "compareandswap": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "create": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "delete": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "expire": { + "properties": { + "count": { + "type": "long" + } + } + }, + "gets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "sets": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "update": { + "properties": { + "fail": { + "type": "long" + }, + "success": { + "type": "long" + } + } + }, + "watchers": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "action": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "dataset": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "end": { + "type": "date" + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingested": { + "type": "date" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "module": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "outcome": { + "ignore_above": 1024, + "type": "keyword" + }, + "provider": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "risk_score": { + "type": "float" + }, + "risk_score_norm": { + "type": "float" + }, + "sequence": { + "type": "long" + }, + "severity": { + "type": "long" + }, + "start": { + "type": "date" + }, + "timezone": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "fields": { + "type": "object" + }, + "file": { + "properties": { + "accessed": { + "type": "date" + }, + "attributes": { + "ignore_above": 1024, + "type": "keyword" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "created": { + "type": "date" + }, + "ctime": { + "type": "date" + }, + "device": { + "ignore_above": 1024, + "type": "keyword" + }, + "directory": { + "ignore_above": 1024, + "type": "keyword" + }, + "drive_letter": { + "ignore_above": 1, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "gid": { + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "inode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mime_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "mtime": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "owner": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "size": { + "type": "long" + }, + "target_path": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "golang": { + "properties": { + "expvar": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "heap": { + "properties": { + "allocations": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "frees": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "mallocs": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + }, + "gc": { + "properties": { + "cpu_fraction": { + "type": "float" + }, + "next_gc_limit": { + "type": "long" + }, + "pause": { + "properties": { + "avg": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "max": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "sum": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total_count": { + "type": "long" + }, + "total_pause": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "system": { + "properties": { + "obtained": { + "type": "long" + }, + "released": { + "type": "long" + }, + "stack": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "graphite": { + "properties": { + "server": { + "properties": { + "example": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "haproxy": { + "properties": { + "info": { + "properties": { + "busy_polling": { + "type": "long" + }, + "bytes": { + "properties": { + "out": { + "properties": { + "rate": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "compress": { + "properties": { + "bps": { + "properties": { + "in": { + "type": "long" + }, + "out": { + "type": "long" + }, + "rate_limit": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "current": { + "type": "long" + }, + "hard_max": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "dropped_logs": { + "type": "long" + }, + "failed_resolutions": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "jobs": { + "type": "long" + }, + "listeners": { + "type": "long" + }, + "memory": { + "properties": { + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "peers": { + "properties": { + "active": { + "type": "long" + }, + "connected": { + "type": "long" + } + } + }, + "pipes": { + "properties": { + "free": { + "type": "long" + }, + "max": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "allocated": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "process_num": { + "type": "long" + }, + "processes": { + "type": "long" + }, + "requests": { + "properties": { + "max": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "run_queue": { + "type": "long" + }, + "session": { + "properties": { + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "sockets": { + "properties": { + "max": { + "type": "long" + } + } + }, + "ssl": { + "properties": { + "backend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "cache_misses": { + "type": "long" + }, + "cached_lookups": { + "type": "long" + }, + "frontend": { + "properties": { + "key_rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "session_reuse": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stopping": { + "type": "long" + }, + "tasks": { + "type": "long" + }, + "threads": { + "type": "long" + }, + "ulimit_n": { + "type": "long" + }, + "unstoppable_jobs": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "zlib_mem_usage": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "stat": { + "properties": { + "agent": { + "properties": { + "check": { + "properties": { + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "type": "long" + }, + "fall": { + "type": "long" + }, + "health": { + "type": "long" + }, + "rise": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "check": { + "properties": { + "agent": { + "properties": { + "last": { + "type": "long" + } + } + }, + "code": { + "type": "long" + }, + "down": { + "type": "long" + }, + "duration": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "health": { + "properties": { + "fail": { + "type": "long" + }, + "last": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "client": { + "properties": { + "aborted": { + "type": "long" + } + } + }, + "component_type": { + "type": "long" + }, + "compressor": { + "properties": { + "bypassed": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "response": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "connection": { + "properties": { + "attempt": { + "properties": { + "total": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "hits": { + "type": "long" + }, + "lookup": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "idle": { + "properties": { + "limit": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "rate": { + "type": "long" + }, + "rate_max": { + "type": "long" + }, + "retried": { + "type": "long" + }, + "reuse": { + "properties": { + "total": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "cookie": { + "ignore_above": 1024, + "type": "keyword" + }, + "downtime": { + "type": "long" + }, + "header": { + "properties": { + "rewrite": { + "properties": { + "failed": { + "properties": { + "total": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "last_change": { + "type": "long" + }, + "load_balancing_algorithm": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "proxy": { + "properties": { + "id": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "queue": { + "properties": { + "limit": { + "type": "long" + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "connection": { + "properties": { + "errors": { + "type": "long" + } + } + }, + "denied": { + "type": "long" + }, + "denied_by_connection_rules": { + "type": "long" + }, + "denied_by_session_rules": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "intercepted": { + "type": "long" + }, + "queued": { + "properties": { + "current": { + "type": "long" + }, + "max": { + "type": "long" + } + } + }, + "rate": { + "properties": { + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "redispatched": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response": { + "properties": { + "denied": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "http": { + "properties": { + "1xx": { + "type": "long" + }, + "2xx": { + "type": "long" + }, + "3xx": { + "type": "long" + }, + "4xx": { + "type": "long" + }, + "5xx": { + "type": "long" + }, + "other": { + "type": "long" + } + } + }, + "time": { + "properties": { + "avg": { + "type": "long" + } + } + } + } + }, + "selected": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "aborted": { + "type": "long" + }, + "active": { + "type": "long" + }, + "backup": { + "type": "long" + }, + "id": { + "type": "long" + } + } + }, + "service_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "session": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "rate": { + "properties": { + "limit": { + "type": "long" + }, + "max": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "total": { + "type": "long" + } + } + }, + "source": { + "properties": { + "address": { + "norms": false, + "type": "text" + } + } + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "throttle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "tracked": { + "properties": { + "id": { + "type": "long" + } + } + }, + "weight": { + "type": "long" + } + } + } + } + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "containerized": { + "type": "boolean" + }, + "cpu": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "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" + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "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" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "headers": { + "type": "object" + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "referrer": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "response": { + "properties": { + "body": { + "properties": { + "bytes": { + "type": "long" + }, + "content": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "bytes": { + "type": "long" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "headers": { + "type": "object" + }, + "phrase": { + "ignore_above": 1024, + "type": "keyword" + }, + "status_code": { + "type": "long" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index_recovery": { + "properties": { + "shards": { + "properties": { + "start_time_in_millis": { + "path": "elasticsearch.index.recovery.start_time.ms", + "type": "alias" + }, + "stop_time_in_millis": { + "path": "elasticsearch.index.recovery.stop_time.ms", + "type": "alias" + } + } + } + } + }, + "index_stats": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.docs.count", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.primaries.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.primaries.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.primaries.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.primaries.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.primaries.segments.count", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.primaries.store.size_in_bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.fielddata.memory_size_in_bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.total.indexing.index_time_in_millis", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.total.indexing.index_total", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.index.total.indexing.throttle_time_in_millis", + "type": "alias" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "path": "elasticsearch.index.total.merges.total_size_in_bytes", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.query_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "path": "elasticsearch.index.total.refresh.total_time_in_millis", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.index.total.request_cache.memory_size_in_bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.total.search.query_time_in_millis", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.total.search.query_total", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.index.total.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.doc_values_memory_in_bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.fixed_bit_set_memory_in_bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.index_writer_memory_in_bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.index.total.segments.memory_in_bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.norms_memory_in_bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.points_memory_in_bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.stored_fields_memory_in_bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.term_vectors_memory_in_bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.terms_memory_in_bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.index.total.segments.version_map_memory_in_bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "path": "elasticsearch.index.total.store.size_in_bytes", + "type": "alias" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.index.summary.primaries.indexing.index.time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.index.summary.primaries.indexing.index.count", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "path": "elasticsearch.index.summary.total.indexing.index.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.index.summary.total.search.query.time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.index.summary.total.search.query.count", + "type": "alias" + } + } + } + } + } + } + } + } + }, + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "job_stats": { + "properties": { + "forecasts_stats": { + "properties": { + "total": { + "path": "elasticsearch.ml.job.forecasts_stats.total", + "type": "alias" + } + } + }, + "job_id": { + "path": "elasticsearch.ml.job.id", + "type": "alias" + } + } + }, + "jolokia": { + "properties": { + "agent": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secured": { + "type": "boolean" + }, + "server": { + "properties": { + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "url": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "kafka": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + }, + "log": { + "properties": { + "flush_rate": { + "type": "float" + } + } + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + }, + "replication": { + "properties": { + "leader_elections": { + "type": "float" + }, + "unclean_leader_elections": { + "type": "float" + } + } + }, + "request": { + "properties": { + "channel": { + "properties": { + "queue": { + "properties": { + "size": { + "type": "long" + } + } + } + } + }, + "fetch": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + }, + "produce": { + "properties": { + "failed": { + "type": "float" + }, + "failed_per_second": { + "type": "float" + } + } + } + } + }, + "session": { + "properties": { + "zookeeper": { + "properties": { + "disconnect": { + "type": "float" + }, + "expire": { + "type": "float" + }, + "readonly": { + "type": "float" + }, + "sync": { + "type": "float" + } + } + } + } + }, + "topic": { + "properties": { + "messages_in": { + "type": "float" + }, + "net": { + "properties": { + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "rejected": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + } + } + } + } + } + } + }, + "consumer": { + "properties": { + "bytes_consumed": { + "type": "float" + }, + "fetch_rate": { + "type": "float" + }, + "in": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "kafka_commits": { + "type": "float" + }, + "max_lag": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "messages_in": { + "type": "float" + }, + "records_consumed": { + "type": "float" + }, + "zookeeper_commits": { + "type": "float" + } + } + }, + "consumergroup": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "client": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "member_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "consumer_lag": { + "type": "long" + }, + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "meta": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "partition": { + "type": "long" + }, + "topic": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "partition": { + "properties": { + "broker": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "offset": { + "properties": { + "newest": { + "type": "long" + }, + "oldest": { + "type": "long" + } + } + }, + "partition": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "id": { + "type": "long" + }, + "insync_replica": { + "type": "boolean" + }, + "is_leader": { + "type": "boolean" + }, + "leader": { + "type": "long" + }, + "replica": { + "type": "long" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "topic_broker_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "topic_id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "producer": { + "properties": { + "available_buffer_bytes": { + "type": "float" + }, + "batch_size_avg": { + "type": "float" + }, + "batch_size_max": { + "type": "long" + }, + "io_wait": { + "type": "float" + }, + "mbean": { + "ignore_above": 1024, + "type": "keyword" + }, + "message_rate": { + "type": "float" + }, + "out": { + "properties": { + "bytes_per_sec": { + "type": "float" + } + } + }, + "record_error_rate": { + "type": "float" + }, + "record_retry_rate": { + "type": "float" + }, + "record_send_rate": { + "type": "float" + }, + "record_size_avg": { + "type": "float" + }, + "record_size_max": { + "type": "long" + }, + "records_per_request": { + "type": "float" + }, + "request_rate": { + "type": "float" + }, + "response_rate": { + "type": "float" + } + } + }, + "topic": { + "properties": { + "error": { + "properties": { + "code": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kibana": { + "properties": { + "settings": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "locale": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport_address": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "host": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "index": { + "ignore_above": 1024, + "type": "keyword" + }, + "kibana": { + "properties": { + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "distro": { + "ignore_above": 1024, + "type": "keyword" + }, + "distroRelease": { + "ignore_above": 1024, + "type": "keyword" + }, + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "type": "long" + }, + "total_in_bytes": { + "type": "long" + }, + "used_in_bytes": { + "type": "long" + } + } + }, + "platform": { + "ignore_above": 1024, + "type": "keyword" + }, + "platformRelease": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "properties": { + "ms": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "resident_set_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "request": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_time": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "max": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "snapshot": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "usage": { + "properties": { + "index": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "status": { + "properties": { + "metrics": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "overall": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + } + } + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "path": "kibana.stats.concurrent_connections", + "type": "alias" + }, + "kibana": { + "properties": { + "response_time": { + "properties": { + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "status": { + "path": "kibana.stats.kibana.status", + "type": "alias" + }, + "uuid": { + "path": "service.id", + "type": "alias" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "path": "kibana.stats.os.load.15m", + "type": "alias" + }, + "1m": { + "path": "kibana.stats.os.load.1m", + "type": "alias" + }, + "5m": { + "path": "kibana.stats.os.load.5m", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "free_in_bytes": { + "path": "kibana.stats.os.memory.free_in_bytes", + "type": "alias" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "path": "kibana.stats.process.event_loop_delay.ms", + "type": "alias" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "path": "kibana.stats.process.memory.heap.size_limit.bytes", + "type": "alias" + } + } + }, + "resident_set_size_in_bytes": { + "path": "kibana.stats.process.memory.resident_set_size.bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "kibana.stats.process.uptime.ms", + "type": "alias" + } + } + }, + "requests": { + "properties": { + "disconnects": { + "path": "kibana.stats.request.disconnects", + "type": "alias" + }, + "total": { + "path": "kibana.stats.request.total", + "type": "alias" + } + } + }, + "response_times": { + "properties": { + "average": { + "path": "kibana.stats.response_time.avg.ms", + "type": "alias" + }, + "max": { + "path": "kibana.stats.response_time.max.ms", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "kubernetes": { + "properties": { + "annotations": { + "properties": { + "*": { + "type": "object" + } + } + }, + "apiserver": { + "properties": { + "audit": { + "properties": { + "event": { + "properties": { + "count": { + "type": "long" + } + } + }, + "rejected": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "etcd": { + "properties": { + "object": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "request": { + "properties": { + "client": { + "ignore_above": 1024, + "type": "keyword" + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "content_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "count": { + "type": "long" + }, + "current": { + "properties": { + "count": { + "type": "long" + } + } + }, + "dry_run": { + "ignore_above": 1024, + "type": "keyword" + }, + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + }, + "group": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + }, + "longrunning": { + "properties": { + "count": { + "type": "long" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "subresource": { + "ignore_above": 1024, + "type": "keyword" + }, + "verb": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "container": { + "properties": { + "cpu": { + "properties": { + "limit": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "request": { + "properties": { + "cores": { + "type": "float" + }, + "nanocores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "image": { + "ignore_above": 1024, + "type": "keyword" + }, + "logs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "request": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "rootfs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "type": "boolean" + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "restarts": { + "type": "long" + } + } + } + } + }, + "controllermanager": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "collector": { + "properties": { + "count": { + "type": "long" + }, + "eviction": { + "properties": { + "count": { + "type": "long" + } + } + }, + "health": { + "properties": { + "pct": { + "type": "long" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "workqueue": { + "properties": { + "adds": { + "properties": { + "count": { + "type": "long" + } + } + }, + "depth": { + "properties": { + "count": { + "type": "long" + } + } + }, + "longestrunning": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "retries": { + "properties": { + "count": { + "type": "long" + } + } + }, + "unfinished": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cronjob": { + "properties": { + "active": { + "properties": { + "count": { + "type": "long" + } + } + }, + "concurrency": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "deadline": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "is_suspended": { + "type": "boolean" + }, + "last_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "next_schedule": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "schedule": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "daemonset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "ready": { + "type": "long" + }, + "unavailable": { + "type": "long" + } + } + } + } + }, + "deployment": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "paused": { + "type": "boolean" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "unavailable": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "event": { + "properties": { + "count": { + "type": "long" + }, + "involved_object": { + "properties": { + "api_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "kind": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "message": { + "copy_to": [ + "message" + ], + "norms": false, + "type": "text" + }, + "metadata": { + "properties": { + "generate_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "resource_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "self_link": { + "ignore_above": 1024, + "type": "keyword" + }, + "timestamp": { + "properties": { + "created": { + "type": "date" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "reason": { + "ignore_above": 1024, + "type": "keyword" + }, + "source": { + "properties": { + "component": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "properties": { + "first_occurrence": { + "type": "date" + }, + "last_occurrence": { + "type": "date" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "namespace": { + "ignore_above": 1024, + "type": "keyword" + }, + "node": { + "properties": { + "cpu": { + "properties": { + "allocatable": { + "properties": { + "cores": { + "type": "float" + } + } + }, + "capacity": { + "properties": { + "cores": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "allocatable": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "pod": { + "properties": { + "allocatable": { + "properties": { + "total": { + "type": "long" + } + } + }, + "capacity": { + "properties": { + "total": { + "type": "long" + } + } + } + } + }, + "runtime": { + "properties": { + "imagefs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "disk_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "out_of_disk": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid_pressure": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "unschedulable": { + "type": "boolean" + } + } + } + } + }, + "persistentvolume": { + "properties": { + "capacity": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "persistentvolumeclaim": { + "properties": { + "access_mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "request_storage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "storage_class": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pod": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "nanocores": { + "type": "double" + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + } + } + }, + "host_ip": { + "type": "ip" + }, + "ip": { + "type": "ip" + }, + "memory": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "major_page_faults": { + "type": "double" + }, + "page_faults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + }, + "limit": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "node": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "working_set": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network": { + "properties": { + "rx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + }, + "tx": { + "properties": { + "bytes": { + "type": "double" + }, + "errors": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + }, + "status": { + "properties": { + "phase": { + "ignore_above": 1024, + "type": "keyword" + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduled": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uid": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "proxy": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "sync": { + "properties": { + "networkprogramming": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "rules": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "replicaset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "available": { + "type": "long" + }, + "desired": { + "type": "long" + }, + "labeled": { + "type": "long" + }, + "observed": { + "type": "long" + }, + "ready": { + "type": "long" + } + } + } + } + }, + "resourcequota": { + "properties": { + "created": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "quota": { + "type": "double" + }, + "resource": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "scheduler": { + "properties": { + "client": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "code": { + "ignore_above": 1024, + "type": "keyword" + }, + "handler": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "http": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + }, + "duration": { + "properties": { + "us": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "response": { + "properties": { + "size": { + "properties": { + "bytes": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "leader": { + "properties": { + "is_master": { + "type": "boolean" + } + } + }, + "method": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "operation": { + "ignore_above": 1024, + "type": "keyword" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "sec": { + "type": "double" + } + } + }, + "fds": { + "properties": { + "open": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "resident": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "started": { + "properties": { + "sec": { + "type": "double" + } + } + } + } + }, + "result": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheduling": { + "properties": { + "duration": { + "properties": { + "seconds": { + "properties": { + "count": { + "type": "long" + }, + "percentile": { + "properties": { + "*": { + "type": "object" + } + } + }, + "sum": { + "type": "double" + } + } + } + } + }, + "e2e": { + "properties": { + "duration": { + "properties": { + "us": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "object" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + }, + "pod": { + "properties": { + "attempts": { + "properties": { + "count": { + "type": "long" + } + } + }, + "preemption": { + "properties": { + "victims": { + "properties": { + "bucket": { + "properties": { + "*": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "sum": { + "type": "long" + } + } + } + } + } + } + } + } + } + } + }, + "service": { + "properties": { + "cluster_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "created": { + "type": "date" + }, + "external_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "external_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_balancer_ip": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "statefulset": { + "properties": { + "created": { + "type": "long" + }, + "generation": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "replicas": { + "properties": { + "desired": { + "type": "long" + }, + "observed": { + "type": "long" + } + } + } + } + }, + "storageclass": { + "properties": { + "created": { + "type": "date" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "provisioner": { + "ignore_above": 1024, + "type": "keyword" + }, + "reclaim_policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "volume_binding_mode": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "system": { + "properties": { + "container": { + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "usage": { + "properties": { + "core": { + "properties": { + "ns": { + "type": "double" + } + } + }, + "nanocores": { + "type": "double" + } + } + } + } + }, + "memory": { + "properties": { + "majorpagefaults": { + "type": "double" + }, + "pagefaults": { + "type": "double" + }, + "rss": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "workingset": { + "properties": { + "bytes": { + "type": "double" + } + } + } + } + }, + "start_time": { + "type": "date" + } + } + }, + "volume": { + "properties": { + "fs": { + "properties": { + "available": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "capacity": { + "properties": { + "bytes": { + "type": "double" + } + } + }, + "inodes": { + "properties": { + "count": { + "type": "double" + }, + "free": { + "type": "double" + }, + "used": { + "type": "double" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "double" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "kvm": { + "properties": { + "dommemstat": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "stat": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + } + } + }, + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "labels": { + "type": "object" + }, + "license": { + "properties": { + "status": { + "path": "elasticsearch.cluster.stats.license.status", + "type": "alias" + }, + "type": { + "path": "elasticsearch.cluster.stats.license.type", + "type": "alias" + } + } + }, + "linux": { + "properties": { + "conntrack": { + "properties": { + "summary": { + "properties": { + "drop": { + "type": "long" + }, + "early_drop": { + "type": "long" + }, + "entries": { + "type": "long" + }, + "found": { + "type": "long" + }, + "ignore": { + "type": "long" + }, + "insert_failed": { + "type": "long" + }, + "invalid": { + "type": "long" + }, + "search_restart": { + "type": "long" + } + } + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "ksm": { + "properties": { + "stats": { + "properties": { + "full_scans": { + "type": "long" + }, + "pages_shared": { + "type": "long" + }, + "pages_sharing": { + "type": "long" + }, + "pages_unshared": { + "type": "long" + }, + "stable_node_chains": { + "type": "long" + }, + "stable_node_dups": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + } + } + }, + "pageinfo": { + "properties": { + "buddy_info": { + "properties": { + "DMA": { + "properties": { + "0": { + "type": "long" + }, + "1": { + "type": "long" + }, + "10": { + "type": "long" + }, + "2": { + "type": "long" + }, + "3": { + "type": "long" + }, + "4": { + "type": "long" + }, + "5": { + "type": "long" + }, + "6": { + "type": "long" + }, + "7": { + "type": "long" + }, + "8": { + "type": "long" + }, + "9": { + "type": "long" + } + } + } + } + }, + "nodes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "log": { + "properties": { + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "logger": { + "ignore_above": 1024, + "type": "keyword" + }, + "origin": { + "properties": { + "file": { + "properties": { + "line": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "function": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "original": { + "ignore_above": 1024, + "type": "keyword" + }, + "syslog": { + "properties": { + "facility": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "priority": { + "type": "long" + }, + "severity": { + "properties": { + "code": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "logstash": { + "properties": { + "node": { + "properties": { + "jvm": { + "properties": { + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "filtered": { + "type": "long" + }, + "in": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + } + } + }, + "uptime_in_millis": { + "type": "long" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "type": "long" + }, + "1m": { + "type": "long" + }, + "5m": { + "type": "long" + } + } + } + } + } + } + }, + "pipelines": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "out": { + "type": "long" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + }, + "max_queue_size_in_bytes": { + "type": "long" + }, + "queue_size_in_bytes": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vertices": { + "properties": { + "duration_in_millis": { + "type": "long" + }, + "events_in": { + "type": "long" + }, + "events_out": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "pipeline_ephemeral_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "queue_push_duration_in_millis": { + "type": "float" + } + } + } + }, + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "double" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "logstash_state": { + "properties": { + "pipeline": { + "properties": { + "hash": { + "path": "logstash.node.state.pipeline.hash", + "type": "alias" + }, + "id": { + "path": "logstash.node.state.pipeline.id", + "type": "alias" + } + } + } + } + }, + "logstash_stats": { + "properties": { + "events": { + "properties": { + "duration_in_millis": { + "path": "logstash.node.stats.events.duration_in_millis", + "type": "alias" + }, + "in": { + "path": "logstash.node.stats.events.in", + "type": "alias" + }, + "out": { + "path": "logstash.node.stats.events.out", + "type": "alias" + } + } + }, + "jvm": { + "properties": { + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_max_in_bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "logstash.node.stats.jvm.mem.heap_used_in_bytes", + "type": "alias" + } + } + }, + "uptime_in_millis": { + "path": "logstash.node.stats.jvm.uptime_in_millis", + "type": "alias" + } + } + }, + "logstash": { + "properties": { + "uuid": { + "path": "logstash.node.stats.logstash.uuid", + "type": "alias" + }, + "version": { + "path": "logstash.node.stats.logstash.version", + "type": "alias" + } + } + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "logstash.node.stats.os.cgroup.cpuacct.usage_nanos", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "15m": { + "path": "logstash.node.stats.os.cpu.load_average.15m", + "type": "alias" + }, + "1m": { + "path": "logstash.node.stats.os.cpu.load_average.1m", + "type": "alias" + }, + "5m": { + "path": "logstash.node.stats.os.cpu.load_average.5m", + "type": "alias" + } + } + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_elapsed_periods", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.number_of_times_throttled", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "logstash.node.stats.os.cgroup.cpu.stat.time_throttled_nanos", + "type": "alias" + } + } + } + } + } + } + }, + "pipelines": { + "type": "nested" + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "logstash.node.stats.process.cpu.percent", + "type": "alias" + } + } + } + } + }, + "queue": { + "properties": { + "events_count": { + "path": "logstash.node.stats.queue.events_count", + "type": "alias" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + } + } + }, + "memcached": { + "properties": { + "stats": { + "properties": { + "bytes": { + "properties": { + "current": { + "type": "long" + }, + "limit": { + "type": "long" + } + } + }, + "cmd": { + "properties": { + "get": { + "type": "long" + }, + "set": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "evictions": { + "type": "long" + }, + "get": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "items": { + "properties": { + "current": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "threads": { + "type": "long" + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "written": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "message": { + "norms": false, + "type": "text" + }, + "metricset": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "period": { + "type": "long" + } + } + }, + "mongodb": { + "properties": { + "collstats": { + "properties": { + "collection": { + "ignore_above": 1024, + "type": "keyword" + }, + "commands": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "getmore": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "insert": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "lock": { + "properties": { + "read": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "queries": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "remove": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "update": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + } + } + }, + "dbstats": { + "properties": { + "avg_obj_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "collections": { + "type": "long" + }, + "data_file_version": { + "properties": { + "major": { + "type": "long" + }, + "minor": { + "type": "long" + } + } + }, + "data_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "db": { + "ignore_above": 1024, + "type": "keyword" + }, + "extent_free_list": { + "properties": { + "num": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "index_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "indexes": { + "type": "long" + }, + "ns_size_mb": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "num_extents": { + "type": "long" + }, + "objects": { + "type": "long" + }, + "storage_size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "metrics": { + "properties": { + "commands": { + "properties": { + "aggregate": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "build_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "coll_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "connection_pool_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "count": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "db_stats": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "distinct": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "find": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_cmd_line_opts": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_log": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_more": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "get_parameter": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "host_info": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "insert": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_master": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "is_self": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_collections": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "last_commands": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_databased": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "list_indexes": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "ping": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "profile": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_rbid": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_get_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_heartbeat": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "replset_update_position": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "server_status": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "update": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "whatsmyuri": { + "properties": { + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "cursor": { + "properties": { + "open": { + "properties": { + "no_timeout": { + "type": "long" + }, + "pinned": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "timed_out": { + "type": "long" + } + } + }, + "document": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "get_last_error": { + "properties": { + "write_timeouts": { + "type": "long" + }, + "write_wait": { + "properties": { + "count": { + "type": "long" + }, + "ms": { + "type": "long" + } + } + } + } + }, + "operation": { + "properties": { + "scan_and_order": { + "type": "long" + }, + "write_conflicts": { + "type": "long" + } + } + }, + "query_executor": { + "properties": { + "scanned_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "scanned_indexes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "replication": { + "properties": { + "apply": { + "properties": { + "attempts_to_become_secondary": { + "type": "long" + }, + "batches": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + } + } + }, + "buffer": { + "properties": { + "count": { + "type": "long" + }, + "max_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "executor": { + "properties": { + "counters": { + "properties": { + "cancels": { + "type": "long" + }, + "event_created": { + "type": "long" + }, + "event_wait": { + "type": "long" + }, + "scheduled": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "failures": { + "type": "long" + }, + "netcmd": { + "type": "long" + }, + "work": { + "type": "long" + }, + "work_at": { + "type": "long" + } + } + }, + "waits": { + "type": "long" + } + } + }, + "event_waiters": { + "type": "long" + }, + "network_interface": { + "ignore_above": 1024, + "type": "keyword" + }, + "queues": { + "properties": { + "free": { + "type": "long" + }, + "in_progress": { + "properties": { + "dbwork": { + "type": "long" + }, + "exclusive": { + "type": "long" + }, + "network": { + "type": "long" + } + } + }, + "ready": { + "type": "long" + }, + "sleepers": { + "type": "long" + } + } + }, + "shutting_down": { + "type": "boolean" + }, + "unsignaled_events": { + "type": "long" + } + } + }, + "initial_sync": { + "properties": { + "completed": { + "type": "long" + }, + "failed_attempts": { + "type": "long" + }, + "failures": { + "type": "long" + } + } + }, + "network": { + "properties": { + "bytes": { + "type": "long" + }, + "getmores": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "ops": { + "type": "long" + }, + "reders_created": { + "type": "long" + } + } + }, + "preload": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "indexes": { + "properties": { + "count": { + "type": "long" + }, + "time": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "storage": { + "properties": { + "free_list": { + "properties": { + "search": { + "properties": { + "bucket_exhausted": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "scanned": { + "type": "long" + } + } + } + } + } + } + }, + "ttl": { + "properties": { + "deleted_documents": { + "properties": { + "count": { + "type": "long" + } + } + }, + "passes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "replstatus": { + "properties": { + "headroom": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "lag": { + "properties": { + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "members": { + "properties": { + "arbiter": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "down": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "primary": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "optime": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "recovering": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rollback": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "secondary": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + }, + "optimes": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "startup2": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unhealthy": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "unknown": { + "properties": { + "count": { + "type": "long" + }, + "hosts": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "oplog": { + "properties": { + "first": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "last": { + "properties": { + "timestamp": { + "type": "long" + } + } + }, + "size": { + "properties": { + "allocated": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "window": { + "type": "long" + } + } + }, + "optimes": { + "properties": { + "applied": { + "type": "long" + }, + "durable": { + "type": "long" + }, + "last_committed": { + "type": "long" + } + } + }, + "server_date": { + "type": "date" + }, + "set_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "status": { + "properties": { + "asserts": { + "properties": { + "msg": { + "type": "long" + }, + "regular": { + "type": "long" + }, + "rollovers": { + "type": "long" + }, + "user": { + "type": "long" + }, + "warning": { + "type": "long" + } + } + }, + "background_flushing": { + "properties": { + "average": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "flushes": { + "type": "long" + }, + "last": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "last_finished": { + "type": "date" + }, + "total": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "connections": { + "properties": { + "available": { + "type": "long" + }, + "current": { + "type": "long" + }, + "total_created": { + "type": "long" + } + } + }, + "extra_info": { + "properties": { + "heap_usage": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + } + } + }, + "global_lock": { + "properties": { + "active_clients": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "current_queue": { + "properties": { + "readers": { + "type": "long" + }, + "total": { + "type": "long" + }, + "writers": { + "type": "long" + } + } + }, + "total_time": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "journaling": { + "properties": { + "commits": { + "type": "long" + }, + "commits_in_write_lock": { + "type": "long" + }, + "compression": { + "type": "long" + }, + "early_commits": { + "type": "long" + }, + "journaled": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "times": { + "properties": { + "commits": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "commits_in_write_lock": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "dt": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "prep_log_buffer": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "remap_private_view": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_data_files": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write_to_journal": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "write_to_data_files": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "local_time": { + "type": "date" + }, + "locks": { + "properties": { + "collection": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "database": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "global": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "meta_data": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + }, + "oplog": { + "properties": { + "acquire": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "deadlock": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + }, + "wait": { + "properties": { + "count": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + }, + "us": { + "properties": { + "R": { + "type": "long" + }, + "W": { + "type": "long" + }, + "r": { + "type": "long" + }, + "w": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "memory": { + "properties": { + "bits": { + "type": "long" + }, + "mapped": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "mapped_with_journal": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "resident": { + "properties": { + "mb": { + "type": "long" + } + } + }, + "virtual": { + "properties": { + "mb": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "requests": { + "type": "long" + } + } + }, + "ops": { + "properties": { + "counters": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "latencies": { + "properties": { + "commands": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "reads": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + }, + "latency": { + "type": "long" + } + } + } + } + }, + "replicated": { + "properties": { + "command": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "getmore": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "query": { + "type": "long" + }, + "update": { + "type": "long" + } + } + } + } + }, + "process": { + "path": "process.name", + "type": "alias" + }, + "storage_engine": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "wired_tiger": { + "properties": { + "cache": { + "properties": { + "dirty": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "maximum": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "pages": { + "properties": { + "evicted": { + "type": "long" + }, + "read": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "concurrent_transactions": { + "properties": { + "read": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + }, + "write": { + "properties": { + "available": { + "type": "long" + }, + "out": { + "type": "long" + }, + "total_tickets": { + "type": "long" + } + } + } + } + }, + "log": { + "properties": { + "flushes": { + "type": "long" + }, + "max_file_size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "scans": { + "type": "long" + }, + "size": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "syncs": { + "type": "long" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "writes": { + "type": "long" + } + } + } + } + }, + "write_backs_queued": { + "type": "boolean" + } + } + } + } + }, + "munin": { + "properties": { + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "plugin": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "mysql": { + "properties": { + "galera_status": { + "properties": { + "apply": { + "properties": { + "oooe": { + "type": "double" + }, + "oool": { + "type": "double" + }, + "window": { + "type": "double" + } + } + }, + "cert": { + "properties": { + "deps_distance": { + "type": "double" + }, + "index_size": { + "type": "long" + }, + "interval": { + "type": "double" + } + } + }, + "cluster": { + "properties": { + "conf_id": { + "type": "long" + }, + "size": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "commit": { + "properties": { + "oooe": { + "type": "double" + }, + "window": { + "type": "long" + } + } + }, + "connected": { + "ignore_above": 1024, + "type": "keyword" + }, + "evs": { + "properties": { + "evict": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "flow_ctl": { + "properties": { + "paused": { + "type": "double" + }, + "paused_ns": { + "type": "long" + }, + "recv": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "last_committed": { + "type": "long" + }, + "local": { + "properties": { + "bf_aborts": { + "type": "long" + }, + "cert_failures": { + "type": "long" + }, + "commits": { + "type": "long" + }, + "recv": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "replays": { + "type": "long" + }, + "send": { + "properties": { + "queue": { + "type": "long" + }, + "queue_avg": { + "type": "double" + }, + "queue_max": { + "type": "long" + }, + "queue_min": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ready": { + "ignore_above": 1024, + "type": "keyword" + }, + "received": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "repl": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "data_bytes": { + "type": "long" + }, + "keys": { + "type": "long" + }, + "keys_bytes": { + "type": "long" + }, + "other_bytes": { + "type": "long" + } + } + } + } + }, + "performance": { + "properties": { + "events_statements": { + "properties": { + "avg": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "count": { + "properties": { + "star": { + "type": "long" + } + } + }, + "digest": { + "norms": false, + "type": "text" + }, + "last": { + "properties": { + "seen": { + "type": "date" + } + } + }, + "max": { + "properties": { + "timer": { + "properties": { + "wait": { + "type": "long" + } + } + } + } + }, + "quantile": { + "properties": { + "95": { + "type": "long" + } + } + } + } + }, + "table_io_waits": { + "properties": { + "count": { + "properties": { + "fetch": { + "type": "long" + } + } + }, + "index": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "object": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "schema": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "status": { + "properties": { + "aborted": { + "properties": { + "clients": { + "type": "long" + }, + "connects": { + "type": "long" + } + } + }, + "binlog": { + "properties": { + "cache": { + "properties": { + "disk_use": { + "type": "long" + }, + "use": { + "type": "long" + } + } + } + } + }, + "bytes": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "ssl": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "table": { + "properties": { + "open_cache": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + }, + "overflows": { + "type": "long" + } + } + } + } + } + } + }, + "command": { + "properties": { + "delete": { + "type": "long" + }, + "insert": { + "type": "long" + }, + "select": { + "type": "long" + }, + "update": { + "type": "long" + } + } + }, + "connection": { + "properties": { + "errors": { + "properties": { + "accept": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "max": { + "type": "long" + }, + "peer_address": { + "type": "long" + }, + "select": { + "type": "long" + }, + "tcpwrap": { + "type": "long" + } + } + } + } + }, + "connections": { + "type": "long" + }, + "created": { + "properties": { + "tmp": { + "properties": { + "disk_tables": { + "type": "long" + }, + "files": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + } + } + }, + "delayed": { + "properties": { + "errors": { + "type": "long" + }, + "insert_threads": { + "type": "long" + }, + "writes": { + "type": "long" + } + } + }, + "flush_commands": { + "type": "long" + }, + "handler": { + "properties": { + "commit": { + "type": "long" + }, + "delete": { + "type": "long" + }, + "external_lock": { + "type": "long" + }, + "mrr_init": { + "type": "long" + }, + "prepare": { + "type": "long" + }, + "read": { + "properties": { + "first": { + "type": "long" + }, + "key": { + "type": "long" + }, + "last": { + "type": "long" + }, + "next": { + "type": "long" + }, + "prev": { + "type": "long" + }, + "rnd": { + "type": "long" + }, + "rnd_next": { + "type": "long" + } + } + }, + "rollback": { + "type": "long" + }, + "savepoint": { + "type": "long" + }, + "savepoint_rollback": { + "type": "long" + }, + "update": { + "type": "long" + }, + "write": { + "type": "long" + } + } + }, + "innodb": { + "properties": { + "buffer_pool": { + "properties": { + "bytes": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + } + } + }, + "dump_status": { + "type": "long" + }, + "load_status": { + "type": "long" + }, + "pages": { + "properties": { + "data": { + "type": "long" + }, + "dirty": { + "type": "long" + }, + "flushed": { + "type": "long" + }, + "free": { + "type": "long" + }, + "latched": { + "type": "long" + }, + "misc": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "pool": { + "properties": { + "reads": { + "type": "long" + }, + "resize_status": { + "type": "long" + }, + "wait_free": { + "type": "long" + } + } + }, + "read": { + "properties": { + "ahead": { + "type": "long" + }, + "ahead_evicted": { + "type": "long" + }, + "ahead_rnd": { + "type": "long" + }, + "requests": { + "type": "long" + } + } + }, + "write_requests": { + "type": "long" + } + } + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "reads": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + } + } + }, + "max_used_connections": { + "type": "long" + }, + "open": { + "properties": { + "files": { + "type": "long" + }, + "streams": { + "type": "long" + }, + "tables": { + "type": "long" + } + } + }, + "opened_tables": { + "type": "long" + }, + "queries": { + "type": "long" + }, + "questions": { + "type": "long" + }, + "threads": { + "properties": { + "cached": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "created": { + "type": "long" + }, + "running": { + "type": "long" + } + } + } + } + } + } + }, + "nats": { + "properties": { + "connection": { + "properties": { + "idle_time": { + "type": "long" + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_bytes": { + "type": "long" + }, + "subscriptions": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "connections": { + "properties": { + "total": { + "type": "long" + } + } + }, + "route": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "ip": { + "type": "ip" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "pending_size": { + "type": "long" + }, + "port": { + "type": "long" + }, + "remote_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "subscriptions": { + "type": "long" + } + } + }, + "routes": { + "properties": { + "total": { + "type": "long" + } + } + }, + "server": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "type": "date" + } + } + }, + "stats": { + "properties": { + "cores": { + "type": "long" + }, + "cpu": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "http": { + "properties": { + "req_stats": { + "properties": { + "uri": { + "properties": { + "connz": { + "type": "long" + }, + "root": { + "type": "long" + }, + "routez": { + "type": "long" + }, + "subsz": { + "type": "long" + }, + "varz": { + "type": "long" + } + } + } + } + } + } + }, + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "mem": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "messages": { + "type": "long" + } + } + }, + "remotes": { + "type": "long" + }, + "slow_consumers": { + "type": "long" + }, + "total_connections": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "subscriptions": { + "properties": { + "cache": { + "properties": { + "fanout": { + "properties": { + "avg": { + "type": "double" + }, + "max": { + "type": "long" + } + } + }, + "hit_rate": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "size": { + "type": "long" + } + } + }, + "inserts": { + "type": "long" + }, + "matches": { + "type": "long" + }, + "removes": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "application": { + "ignore_above": 1024, + "type": "keyword" + }, + "bytes": { + "type": "long" + }, + "community_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "direction": { + "ignore_above": 1024, + "type": "keyword" + }, + "forwarded_ip": { + "type": "ip" + }, + "iana_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "inner": { + "properties": { + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "packets": { + "type": "long" + }, + "protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "transport": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "nginx": { + "properties": { + "stubstatus": { + "properties": { + "accepts": { + "type": "long" + }, + "active": { + "type": "long" + }, + "current": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "handled": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "reading": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "waiting": { + "type": "long" + }, + "writing": { + "type": "long" + } + } + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.operations.count", + "type": "alias" + }, + "read_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.read.operations.count", + "type": "alias" + }, + "write_operations": { + "path": "elasticsearch.node.stats.fs.io_stats.total.write.operations.count", + "type": "alias" + } + } + } + } + }, + "summary": { + "properties": { + "available": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + } + } + }, + "total": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.available.bytes", + "type": "alias" + }, + "total_in_bytes": { + "path": "elasticsearch.node.stats.fs.summary.total.bytes", + "type": "alias" + } + } + } + } + }, + "indices": { + "properties": { + "docs": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.docs.count", + "type": "alias" + } + } + }, + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.fielddata.memory.bytes", + "type": "alias" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.index_time.ms", + "type": "alias" + }, + "index_total": { + "path": "elasticsearch.node.stats.indices.indexing.index_total.count", + "type": "alias" + }, + "throttle_time_in_millis": { + "path": "elasticsearch.node.stats.indices.indexing.throttle_time.ms", + "type": "alias" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.query_cache.memory.bytes", + "type": "alias" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "path": "elasticsearch.node.stats.indices.request_cache.memory.bytes", + "type": "alias" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "path": "elasticsearch.node.stats.indices.search.query_time.ms", + "type": "alias" + }, + "query_total": { + "path": "elasticsearch.node.stats.indices.search.query_total.count", + "type": "alias" + } + } + }, + "segments": { + "properties": { + "count": { + "path": "elasticsearch.node.stats.indices.segments.count", + "type": "alias" + }, + "doc_values_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.doc_values.memory.bytes", + "type": "alias" + }, + "fixed_bit_set_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.fixed_bit_set.memory.bytes", + "type": "alias" + }, + "index_writer_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.index_writer.memory.bytes", + "type": "alias" + }, + "memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.memory.bytes", + "type": "alias" + }, + "norms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.norms.memory.bytes", + "type": "alias" + }, + "points_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.points.memory.bytes", + "type": "alias" + }, + "stored_fields_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.stored_fields.memory.bytes", + "type": "alias" + }, + "term_vectors_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.term_vectors.memory.bytes", + "type": "alias" + }, + "terms_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.terms.memory.bytes", + "type": "alias" + }, + "version_map_memory_in_bytes": { + "path": "elasticsearch.node.stats.indices.segments.version_map.memory.bytes", + "type": "alias" + } + } + }, + "store": { + "properties": { + "size": { + "properties": { + "bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + }, + "size_in_bytes": { + "path": "elasticsearch.node.stats.indices.store.size.bytes", + "type": "alias" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.old.collection.ms", + "type": "alias" + } + } + }, + "young": { + "properties": { + "collection_count": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.count", + "type": "alias" + }, + "collection_time_in_millis": { + "path": "elasticsearch.node.stats.jvm.gc.collectors.young.collection.ms", + "type": "alias" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.max.bytes", + "type": "alias" + }, + "heap_used_in_bytes": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.bytes", + "type": "alias" + }, + "heap_used_percent": { + "path": "elasticsearch.node.stats.jvm.mem.heap.used.pct", + "type": "alias" + } + } + } + } + }, + "node_id": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.cfs.quota.us", + "type": "alias" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.elapsed_periods.count", + "type": "alias" + }, + "number_of_times_throttled": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.times_throttled.count", + "type": "alias" + }, + "time_throttled_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpu.stat.time_throttled.ns", + "type": "alias" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "path": "elasticsearch.node.stats.os.cgroup.cpuacct.usage.ns", + "type": "alias" + } + } + }, + "memory": { + "properties": { + "control_group": { + "path": "elasticsearch.node.stats.os.cgroup.memory.control_group", + "type": "alias" + }, + "limit_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.limit.bytes", + "type": "alias" + }, + "usage_in_bytes": { + "path": "elasticsearch.node.stats.os.cgroup.memory.usage.bytes", + "type": "alias" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "path": "elasticsearch.node.stats.os.cpu.load_avg.1m", + "type": "alias" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "path": "elasticsearch.node.stats.process.cpu.pct", + "type": "alias" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.bulk.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.bulk.rejected.count", + "type": "alias" + } + } + }, + "get": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.get.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.get.rejected.count", + "type": "alias" + } + } + }, + "index": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.index.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.index.rejected.count", + "type": "alias" + } + } + }, + "search": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.search.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.search.rejected.count", + "type": "alias" + } + } + }, + "write": { + "properties": { + "queue": { + "path": "elasticsearch.node.stats.thread_pool.write.queue.count", + "type": "alias" + }, + "rejected": { + "path": "elasticsearch.node.stats.thread_pool.write.rejected.count", + "type": "alias" + } + } + } + } + } + } + }, + "observer": { + "properties": { + "egress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "ingress": { + "properties": { + "interface": { + "properties": { + "alias": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "zone": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "organization": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "package": { + "properties": { + "architecture": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "checksum": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "install_scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "installed": { + "type": "date" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "size": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "php_fpm": { + "properties": { + "pool": { + "properties": { + "connections": { + "properties": { + "accepted": { + "type": "long" + }, + "listen_queue_len": { + "type": "long" + }, + "max_listen_queue": { + "type": "long" + }, + "queued": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "process_manager": { + "ignore_above": 1024, + "type": "keyword" + }, + "processes": { + "properties": { + "active": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "max_active": { + "type": "long" + }, + "max_children_reached": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "slow_requests": { + "type": "long" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + } + } + }, + "process": { + "properties": { + "last_request_cpu": { + "type": "long" + }, + "last_request_memory": { + "type": "long" + }, + "request_duration": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "script": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_since": { + "type": "long" + }, + "start_time": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "postgresql": { + "properties": { + "activity": { + "properties": { + "application_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "backend_start": { + "type": "date" + }, + "backend_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "database": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "oid": { + "type": "long" + } + } + }, + "pid": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "query_start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_change": { + "type": "date" + }, + "transaction_start": { + "type": "date" + }, + "user": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "wait_event": { + "ignore_above": 1024, + "type": "keyword" + }, + "wait_event_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "waiting": { + "type": "boolean" + } + } + }, + "bgwriter": { + "properties": { + "buffers": { + "properties": { + "allocated": { + "type": "long" + }, + "backend": { + "type": "long" + }, + "backend_fsync": { + "type": "long" + }, + "checkpoints": { + "type": "long" + }, + "clean": { + "type": "long" + }, + "clean_full": { + "type": "long" + } + } + }, + "checkpoints": { + "properties": { + "requested": { + "type": "long" + }, + "scheduled": { + "type": "long" + }, + "times": { + "properties": { + "sync": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "stats_reset": { + "type": "date" + } + } + }, + "database": { + "properties": { + "blocks": { + "properties": { + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "time": { + "properties": { + "read": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "write": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "conflicts": { + "type": "long" + }, + "deadlocks": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "number_of_backends": { + "type": "long" + }, + "oid": { + "type": "long" + }, + "rows": { + "properties": { + "deleted": { + "type": "long" + }, + "fetched": { + "type": "long" + }, + "inserted": { + "type": "long" + }, + "returned": { + "type": "long" + }, + "updated": { + "type": "long" + } + } + }, + "stats_reset": { + "type": "date" + }, + "temporary": { + "properties": { + "bytes": { + "type": "long" + }, + "files": { + "type": "long" + } + } + }, + "transactions": { + "properties": { + "commit": { + "type": "long" + }, + "rollback": { + "type": "long" + } + } + } + } + }, + "statement": { + "properties": { + "database": { + "properties": { + "oid": { + "type": "long" + } + } + }, + "query": { + "properties": { + "calls": { + "type": "long" + }, + "id": { + "type": "long" + }, + "memory": { + "properties": { + "local": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "shared": { + "properties": { + "dirtied": { + "type": "long" + }, + "hit": { + "type": "long" + }, + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + }, + "temp": { + "properties": { + "read": { + "type": "long" + }, + "written": { + "type": "long" + } + } + } + } + }, + "rows": { + "type": "long" + }, + "text": { + "ignore_above": 1024, + "type": "keyword" + }, + "time": { + "properties": { + "max": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "mean": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "min": { + "properties": { + "ms": { + "type": "float" + } + } + }, + "stddev": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "total": { + "properties": { + "ms": { + "type": "float" + } + } + } + } + } + } + }, + "user": { + "properties": { + "id": { + "type": "long" + } + } + } + } + } + } + }, + "process": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "cpu": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "start_time": { + "type": "date" + } + } + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "parent": { + "properties": { + "args": { + "ignore_above": 1024, + "type": "keyword" + }, + "args_count": { + "type": "long" + }, + "code_signature": { + "properties": { + "exists": { + "type": "boolean" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "trusted": { + "type": "boolean" + }, + "valid": { + "type": "boolean" + } + } + }, + "command_line": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "entity_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "executable": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "type": "long" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha512": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pe": { + "properties": { + "company": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "file_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "original_file_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "product": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "pgid": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "ppid": { + "type": "long" + }, + "start": { + "type": "date" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "thread": { + "properties": { + "id": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "title": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + }, + "working_directory": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "prometheus": { + "properties": { + "labels": { + "properties": { + "*": { + "type": "object" + } + } + }, + "metrics": { + "properties": { + "*": { + "type": "object" + } + } + }, + "query": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "rabbitmq": { + "properties": { + "connection": { + "properties": { + "channel_max": { + "type": "long" + }, + "channels": { + "type": "long" + }, + "client_provided": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "frame_max": { + "type": "long" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "octet_count": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "packet_count": { + "properties": { + "pending": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "peer": { + "properties": { + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + } + } + }, + "port": { + "type": "long" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "exchange": { + "properties": { + "auto_delete": { + "type": "boolean" + }, + "durable": { + "type": "boolean" + }, + "internal": { + "type": "boolean" + }, + "messages": { + "properties": { + "publish_in": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "publish_out": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "node": { + "properties": { + "disk": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "fd": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "gc": { + "properties": { + "num": { + "properties": { + "count": { + "type": "long" + } + } + }, + "reclaimed": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "io": { + "properties": { + "file_handle": { + "properties": { + "open_attempt": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + } + } + }, + "read": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + }, + "reopen": { + "properties": { + "count": { + "type": "long" + } + } + }, + "seek": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "sync": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "avg": { + "properties": { + "ms": { + "type": "long" + } + } + }, + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + } + } + } + } + }, + "mem": { + "properties": { + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "mnesia": { + "properties": { + "disk": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "ram": { + "properties": { + "tx": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "msg": { + "properties": { + "store_read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "store_write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "proc": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "processors": { + "type": "long" + }, + "queue": { + "properties": { + "index": { + "properties": { + "journal_write": { + "properties": { + "count": { + "type": "long" + } + } + }, + "read": { + "properties": { + "count": { + "type": "long" + } + } + }, + "write": { + "properties": { + "count": { + "type": "long" + } + } + } + } + } + } + }, + "run": { + "properties": { + "queue": { + "type": "long" + } + } + }, + "socket": { + "properties": { + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "type": "long" + } + } + }, + "queue": { + "properties": { + "arguments": { + "properties": { + "max_priority": { + "type": "long" + } + } + }, + "auto_delete": { + "type": "boolean" + }, + "consumers": { + "properties": { + "count": { + "type": "long" + }, + "utilisation": { + "properties": { + "pct": { + "type": "long" + } + } + } + } + }, + "disk": { + "properties": { + "reads": { + "properties": { + "count": { + "type": "long" + } + } + }, + "writes": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "durable": { + "type": "boolean" + }, + "exclusive": { + "type": "boolean" + }, + "memory": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "messages": { + "properties": { + "persistent": { + "properties": { + "count": { + "type": "long" + } + } + }, + "ready": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "total": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + }, + "unacknowledged": { + "properties": { + "count": { + "type": "long" + }, + "details": { + "properties": { + "rate": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vhost": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "redis": { + "properties": { + "info": { + "properties": { + "clients": { + "properties": { + "biggest_input_buf": { + "type": "long" + }, + "blocked": { + "type": "long" + }, + "connected": { + "type": "long" + }, + "longest_output_list": { + "type": "long" + }, + "max_input_buffer": { + "type": "long" + }, + "max_output_buffer": { + "type": "long" + } + } + }, + "cluster": { + "properties": { + "enabled": { + "type": "boolean" + } + } + }, + "cpu": { + "properties": { + "used": { + "properties": { + "sys": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "sys_children": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "user_children": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "active_defrag": { + "properties": { + "is_running": { + "type": "boolean" + } + } + }, + "allocator": { + "ignore_above": 1024, + "type": "keyword" + }, + "allocator_stats": { + "properties": { + "active": { + "type": "long" + }, + "allocated": { + "type": "long" + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "resident": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + } + } + }, + "fragmentation": { + "properties": { + "bytes": { + "type": "long" + }, + "ratio": { + "type": "float" + } + } + }, + "max": { + "properties": { + "policy": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "type": "long" + } + } + }, + "used": { + "properties": { + "dataset": { + "type": "long" + }, + "lua": { + "type": "long" + }, + "peak": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "value": { + "type": "long" + } + } + } + } + }, + "persistence": { + "properties": { + "aof": { + "properties": { + "bgrewrite": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "enabled": { + "type": "boolean" + }, + "fsync": { + "properties": { + "delayed": { + "type": "long" + }, + "pending": { + "type": "long" + } + } + }, + "rewrite": { + "properties": { + "buffer": { + "properties": { + "size": { + "type": "long" + } + } + }, + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "scheduled": { + "type": "boolean" + } + } + }, + "size": { + "properties": { + "base": { + "type": "long" + }, + "current": { + "type": "long" + } + } + }, + "write": { + "properties": { + "last_status": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "loading": { + "type": "boolean" + }, + "rdb": { + "properties": { + "bgsave": { + "properties": { + "current_time": { + "properties": { + "sec": { + "type": "long" + } + } + }, + "in_progress": { + "type": "boolean" + }, + "last_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "last_time": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + }, + "copy_on_write": { + "properties": { + "last_size": { + "type": "long" + } + } + }, + "last_save": { + "properties": { + "changes_since": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + } + } + }, + "replication": { + "properties": { + "backlog": { + "properties": { + "active": { + "type": "long" + }, + "first_byte_offset": { + "type": "long" + }, + "histlen": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "connected_slaves": { + "type": "long" + }, + "master": { + "properties": { + "last_io_seconds_ago": { + "type": "long" + }, + "link_status": { + "ignore_above": 1024, + "type": "keyword" + }, + "offset": { + "type": "long" + }, + "second_offset": { + "type": "long" + }, + "sync": { + "properties": { + "in_progress": { + "type": "boolean" + }, + "last_io_seconds_ago": { + "type": "long" + }, + "left_bytes": { + "type": "long" + } + } + } + } + }, + "master_offset": { + "type": "long" + }, + "role": { + "ignore_above": 1024, + "type": "keyword" + }, + "slave": { + "properties": { + "is_readonly": { + "type": "boolean" + }, + "offset": { + "type": "long" + }, + "priority": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "arch_bits": { + "ignore_above": 1024, + "type": "keyword" + }, + "build_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "config_file": { + "ignore_above": 1024, + "type": "keyword" + }, + "gcc_version": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_dirty": { + "ignore_above": 1024, + "type": "keyword" + }, + "git_sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "hz": { + "type": "long" + }, + "lru_clock": { + "type": "long" + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "multiplexing_api": { + "ignore_above": 1024, + "type": "keyword" + }, + "run_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "tcp_port": { + "type": "long" + }, + "uptime": { + "type": "long" + } + } + }, + "slowlog": { + "properties": { + "count": { + "type": "long" + } + } + }, + "stats": { + "properties": { + "active_defrag": { + "properties": { + "hits": { + "type": "long" + }, + "key_hits": { + "type": "long" + }, + "key_misses": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "commands_processed": { + "type": "long" + }, + "connections": { + "properties": { + "received": { + "type": "long" + }, + "rejected": { + "type": "long" + } + } + }, + "instantaneous": { + "properties": { + "input_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ops_per_sec": { + "type": "long" + }, + "output_kbps": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "keys": { + "properties": { + "evicted": { + "type": "long" + }, + "expired": { + "type": "long" + } + } + }, + "keyspace": { + "properties": { + "hits": { + "type": "long" + }, + "misses": { + "type": "long" + } + } + }, + "latest_fork_usec": { + "type": "long" + }, + "migrate_cached_sockets": { + "type": "long" + }, + "net": { + "properties": { + "input": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "output": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "pubsub": { + "properties": { + "channels": { + "type": "long" + }, + "patterns": { + "type": "long" + } + } + }, + "slave_expires_tracked_keys": { + "type": "long" + }, + "sync": { + "properties": { + "full": { + "type": "long" + }, + "partial": { + "properties": { + "err": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "key": { + "properties": { + "expire": { + "properties": { + "ttl": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "length": { + "type": "long" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "keyspace": { + "properties": { + "avg_ttl": { + "type": "long" + }, + "expires": { + "type": "long" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "keys": { + "type": "long" + } + } + } + } + }, + "registry": { + "properties": { + "data": { + "properties": { + "bytes": { + "ignore_above": 1024, + "type": "keyword" + }, + "strings": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hive": { + "ignore_above": 1024, + "type": "keyword" + }, + "key": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "value": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "related": { + "properties": { + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "user": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "rule": { + "properties": { + "author": { + "ignore_above": 1024, + "type": "keyword" + }, + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "license": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "ruleset": { + "ignore_above": 1024, + "type": "keyword" + }, + "uuid": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "server": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "service": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "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" + }, + "node": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "shard": { + "properties": { + "index": { + "path": "elasticsearch.index.name", + "type": "alias" + }, + "node": { + "path": "elasticsearch.node.id", + "type": "alias" + }, + "primary": { + "path": "elasticsearch.shard.primary", + "type": "alias" + }, + "shard": { + "path": "elasticsearch.shard.number", + "type": "alias" + }, + "state": { + "path": "elasticsearch.shard.state", + "type": "alias" + } + } + }, + "source": { + "properties": { + "address": { + "ignore_above": 1024, + "type": "keyword" + }, + "as": { + "properties": { + "number": { + "type": "long" + }, + "organization": { + "properties": { + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "bytes": { + "type": "long" + }, + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "geo": { + "properties": { + "city_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "continent_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "country_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "location": { + "type": "geo_point" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_iso_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "region_name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "ip": { + "type": "ip" + }, + "mac": { + "ignore_above": 1024, + "type": "keyword" + }, + "nat": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "packets": { + "type": "long" + }, + "port": { + "type": "long" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "source_node": { + "properties": { + "name": { + "path": "elasticsearch.node.name", + "type": "alias" + }, + "uuid": { + "path": "elasticsearch.node.id", + "type": "alias" + } + } + }, + "stack_stats": { + "properties": { + "apm": { + "properties": { + "found": { + "path": "elasticsearch.cluster.stats.stack.apm.found", + "type": "alias" + } + } + }, + "xpack": { + "properties": { + "ccr": { + "properties": { + "available": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.available", + "type": "alias" + }, + "enabled": { + "path": "elasticsearch.cluster.stats.stack.xpack.ccr.enabled", + "type": "alias" + } + } + } + } + } + } + }, + "system": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "idle": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "user": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cores": { + "type": "long" + }, + "idle": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "iowait": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "irq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "nice": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "softirq": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "steal": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "system": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "user": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + } + } + } + } + }, + "diskio": { + "properties": { + "io": { + "properties": { + "ops": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "iostat": { + "properties": { + "await": { + "type": "float" + }, + "busy": { + "type": "float" + }, + "queue": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "read": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + }, + "request": { + "properties": { + "avg_size": { + "type": "float" + } + } + }, + "service_time": { + "type": "float" + }, + "write": { + "properties": { + "await": { + "type": "float" + }, + "per_sec": { + "properties": { + "bytes": { + "type": "float" + } + } + }, + "request": { + "properties": { + "merges_per_sec": { + "type": "float" + }, + "per_sec": { + "type": "float" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + }, + "serial_number": { + "ignore_above": 1024, + "type": "keyword" + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "count": { + "type": "long" + }, + "time": { + "type": "long" + } + } + } + } + }, + "entropy": { + "properties": { + "available_bits": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "filesystem": { + "properties": { + "available": { + "type": "long" + }, + "device_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "files": { + "type": "long" + }, + "free": { + "type": "long" + }, + "free_files": { + "type": "long" + }, + "mount_point": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "type": "long" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fsstat": { + "properties": { + "count": { + "type": "long" + }, + "total_files": { + "type": "long" + }, + "total_size": { + "properties": { + "free": { + "type": "long" + }, + "total": { + "type": "long" + }, + "used": { + "type": "long" + } + } + } + } + }, + "load": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "cores": { + "type": "long" + }, + "norm": { + "properties": { + "1": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "15": { + "scaling_factor": 100, + "type": "scaled_float" + }, + "5": { + "scaling_factor": 100, + "type": "scaled_float" + } + } + } + } + }, + "memory": { + "properties": { + "actual": { + "properties": { + "free": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "free": { + "type": "long" + }, + "hugepages": { + "properties": { + "default_size": { + "type": "long" + }, + "free": { + "type": "long" + }, + "reserved": { + "type": "long" + }, + "surplus": { + "type": "long" + }, + "swap": { + "properties": { + "out": { + "properties": { + "fallback": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "type": "long" + } + } + } + } + }, + "page_stats": { + "properties": { + "direct_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "kswapd_efficiency": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pgfree": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgscan_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_direct": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "pgsteal_kswapd": { + "properties": { + "pages": { + "type": "long" + } + } + } + } + }, + "swap": { + "properties": { + "free": { + "type": "long" + }, + "in": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "out": { + "properties": { + "pages": { + "type": "long" + } + } + }, + "readahead": { + "properties": { + "cached": { + "type": "long" + }, + "pages": { + "type": "long" + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "total": { + "type": "long" + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "errors": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "network_summary": { + "properties": { + "icmp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "ip": { + "properties": { + "*": { + "type": "object" + } + } + }, + "tcp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp": { + "properties": { + "*": { + "type": "object" + } + } + }, + "udp_lite": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "process": { + "properties": { + "cgroup": { + "properties": { + "blkio": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "total": { + "properties": { + "bytes": { + "type": "long" + }, + "ios": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "cfs": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "quota": { + "properties": { + "us": { + "type": "long" + } + } + }, + "shares": { + "type": "long" + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "rt": { + "properties": { + "period": { + "properties": { + "us": { + "type": "long" + } + } + }, + "runtime": { + "properties": { + "us": { + "type": "long" + } + } + } + } + }, + "stats": { + "properties": { + "periods": { + "type": "long" + }, + "throttled": { + "properties": { + "ns": { + "type": "long" + }, + "periods": { + "type": "long" + } + } + } + } + } + } + }, + "cpuacct": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "percpu": { + "type": "object" + }, + "stats": { + "properties": { + "system": { + "properties": { + "ns": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "memory": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "kmem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "kmem_tcp": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "memsw": { + "properties": { + "failures": { + "type": "long" + }, + "limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "usage": { + "properties": { + "bytes": { + "type": "long" + }, + "max": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "stats": { + "properties": { + "active_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "active_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "cache": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memory_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "hierarchical_memsw_limit": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_anon": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "inactive_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "major_page_faults": { + "type": "long" + }, + "mapped_file": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "page_faults": { + "type": "long" + }, + "pages_in": { + "type": "long" + }, + "pages_out": { + "type": "long" + }, + "rss": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "rss_huge": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "swap": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "unevictable": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "cmdline": { + "ignore_above": 2048, + "type": "keyword" + }, + "cpu": { + "properties": { + "start_time": { + "type": "date" + }, + "system": { + "properties": { + "ticks": { + "type": "long" + } + } + }, + "total": { + "properties": { + "norm": { + "properties": { + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + }, + "ticks": { + "type": "long" + }, + "value": { + "type": "long" + } + } + }, + "user": { + "properties": { + "ticks": { + "type": "long" + } + } + } + } + }, + "env": { + "type": "object" + }, + "fd": { + "properties": { + "limit": { + "properties": { + "hard": { + "type": "long" + }, + "soft": { + "type": "long" + } + } + }, + "open": { + "type": "long" + } + } + }, + "memory": { + "properties": { + "rss": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + }, + "share": { + "type": "long" + }, + "size": { + "type": "long" + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "summary": { + "properties": { + "dead": { + "type": "long" + }, + "idle": { + "type": "long" + }, + "running": { + "type": "long" + }, + "sleeping": { + "type": "long" + }, + "stopped": { + "type": "long" + }, + "total": { + "type": "long" + }, + "unknown": { + "type": "long" + }, + "zombie": { + "type": "long" + } + } + } + } + }, + "raid": { + "properties": { + "blocks": { + "properties": { + "synced": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "disks": { + "properties": { + "active": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "spare": { + "type": "long" + }, + "states": { + "properties": { + "*": { + "type": "object" + } + } + }, + "total": { + "type": "long" + } + } + }, + "level": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "sync_action": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "service": { + "properties": { + "exec_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "load_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "resources": { + "properties": { + "cpu": { + "properties": { + "usage": { + "properties": { + "ns": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "usage": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "network": { + "properties": { + "in": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + }, + "out": { + "properties": { + "bytes": { + "type": "long" + }, + "packets": { + "type": "long" + } + } + } + } + }, + "tasks": { + "properties": { + "count": { + "type": "long" + } + } + } + } + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "state_since": { + "type": "date" + }, + "sub_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit_file": { + "properties": { + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "vendor_preset": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "socket": { + "properties": { + "local": { + "properties": { + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "process": { + "properties": { + "cmdline": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "remote": { + "properties": { + "etld_plus_one": { + "ignore_above": 1024, + "type": "keyword" + }, + "host": { + "ignore_above": 1024, + "type": "keyword" + }, + "host_error": { + "ignore_above": 1024, + "type": "keyword" + }, + "ip": { + "type": "ip" + }, + "port": { + "type": "long" + } + } + }, + "summary": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + }, + "listening": { + "type": "long" + } + } + }, + "tcp": { + "properties": { + "all": { + "properties": { + "close_wait": { + "type": "long" + }, + "closing": { + "type": "long" + }, + "count": { + "type": "long" + }, + "established": { + "type": "long" + }, + "fin_wait1": { + "type": "long" + }, + "fin_wait2": { + "type": "long" + }, + "last_ack": { + "type": "long" + }, + "listening": { + "type": "long" + }, + "orphan": { + "type": "long" + }, + "syn_recv": { + "type": "long" + }, + "syn_sent": { + "type": "long" + }, + "time_wait": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + }, + "udp": { + "properties": { + "all": { + "properties": { + "count": { + "type": "long" + } + } + }, + "memory": { + "type": "long" + } + } + } + } + } + } + }, + "uptime": { + "properties": { + "duration": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + }, + "users": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "leader": { + "type": "long" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "remote": { + "type": "boolean" + }, + "remote_host": { + "ignore_above": 1024, + "type": "keyword" + }, + "scope": { + "ignore_above": 1024, + "type": "keyword" + }, + "seat": { + "ignore_above": 1024, + "type": "keyword" + }, + "service": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "systemd": { + "properties": { + "fragment_path": { + "ignore_above": 1024, + "type": "keyword" + }, + "unit": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tags": { + "ignore_above": 1024, + "type": "keyword" + }, + "threat": { + "properties": { + "framework": { + "ignore_above": 1024, + "type": "keyword" + }, + "tactic": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "technique": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "timeseries": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "timestamp": { + "path": "@timestamp", + "type": "alias" + }, + "tls": { + "properties": { + "cipher": { + "ignore_above": 1024, + "type": "keyword" + }, + "client": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "server_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + }, + "supported_ciphers": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "curve": { + "ignore_above": 1024, + "type": "keyword" + }, + "established": { + "type": "boolean" + }, + "next_protocol": { + "ignore_above": 1024, + "type": "keyword" + }, + "resumed": { + "type": "boolean" + }, + "server": { + "properties": { + "certificate": { + "ignore_above": 1024, + "type": "keyword" + }, + "certificate_chain": { + "ignore_above": 1024, + "type": "keyword" + }, + "hash": { + "properties": { + "md5": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha1": { + "ignore_above": 1024, + "type": "keyword" + }, + "sha256": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "issuer": { + "ignore_above": 1024, + "type": "keyword" + }, + "ja3s": { + "ignore_above": 1024, + "type": "keyword" + }, + "not_after": { + "type": "date" + }, + "not_before": { + "type": "date" + }, + "subject": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + }, + "version_protocol": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "tracing": { + "properties": { + "trace": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "transaction": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "traefik": { + "properties": { + "health": { + "properties": { + "response": { + "properties": { + "avg_time": { + "properties": { + "us": { + "type": "long" + } + } + }, + "count": { + "type": "long" + }, + "status_codes": { + "properties": { + "*": { + "type": "object" + } + } + } + } + }, + "uptime": { + "properties": { + "sec": { + "type": "long" + } + } + } + } + } + } + }, + "type": { + "ignore_above": 1024, + "type": "keyword" + }, + "url": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "extension": { + "ignore_above": 1024, + "type": "keyword" + }, + "fragment": { + "ignore_above": 1024, + "type": "keyword" + }, + "full": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "password": { + "ignore_above": 1024, + "type": "keyword" + }, + "path": { + "ignore_above": 1024, + "type": "keyword" + }, + "port": { + "type": "long" + }, + "query": { + "ignore_above": 1024, + "type": "keyword" + }, + "registered_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "scheme": { + "ignore_above": 1024, + "type": "keyword" + }, + "top_level_domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "username": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "email": { + "ignore_above": 1024, + "type": "keyword" + }, + "full_name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "group": { + "properties": { + "domain": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "hash": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "user_agent": { + "properties": { + "device": { + "properties": { + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "original": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "properties": { + "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" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "uwsgi": { + "properties": { + "status": { + "properties": { + "core": { + "properties": { + "id": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "properties": { + "offloaded": { + "type": "long" + }, + "routed": { + "type": "long" + }, + "static": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "worker_pid": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "total": { + "properties": { + "exceptions": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "read_errors": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "write_errors": { + "type": "long" + } + } + }, + "worker": { + "properties": { + "accepting": { + "type": "long" + }, + "avg_rt": { + "type": "long" + }, + "delta_requests": { + "type": "long" + }, + "exceptions": { + "type": "long" + }, + "harakiri_count": { + "type": "long" + }, + "id": { + "type": "long" + }, + "pid": { + "type": "long" + }, + "requests": { + "type": "long" + }, + "respawn_count": { + "type": "long" + }, + "rss": { + "type": "long" + }, + "running_time": { + "type": "long" + }, + "signal_queue": { + "type": "long" + }, + "signals": { + "type": "long" + }, + "status": { + "ignore_above": 1024, + "type": "keyword" + }, + "tx": { + "type": "long" + }, + "vsz": { + "type": "long" + } + } + } + } + } + } + }, + "vlan": { + "properties": { + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "vsphere": { + "properties": { + "datastore": { + "properties": { + "capacity": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + }, + "pct": { + "scaling_factor": 1000, + "type": "scaled_float" + } + } + } + } + }, + "fstype": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "host": { + "properties": { + "cpu": { + "properties": { + "free": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "total": { + "properties": { + "mhz": { + "type": "long" + } + } + }, + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "total": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "used": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "virtualmachine": { + "properties": { + "cpu": { + "properties": { + "used": { + "properties": { + "mhz": { + "type": "long" + } + } + } + } + }, + "custom_fields": { + "type": "object" + }, + "host": { + "properties": { + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "memory": { + "properties": { + "free": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + }, + "used": { + "properties": { + "guest": { + "properties": { + "bytes": { + "type": "long" + } + } + }, + "host": { + "properties": { + "bytes": { + "type": "long" + } + } + } + } + } + } + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "network_names": { + "ignore_above": 1024, + "type": "keyword" + }, + "os": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + }, + "vulnerability": { + "properties": { + "category": { + "ignore_above": 1024, + "type": "keyword" + }, + "classification": { + "ignore_above": 1024, + "type": "keyword" + }, + "description": { + "fields": { + "text": { + "norms": false, + "type": "text" + } + }, + "ignore_above": 1024, + "type": "keyword" + }, + "enumeration": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "reference": { + "ignore_above": 1024, + "type": "keyword" + }, + "report_id": { + "ignore_above": 1024, + "type": "keyword" + }, + "scanner": { + "properties": { + "vendor": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "score": { + "properties": { + "base": { + "type": "float" + }, + "environmental": { + "type": "float" + }, + "temporal": { + "type": "float" + }, + "version": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "severity": { + "ignore_above": 1024, + "type": "keyword" + } + } + }, + "windows": { + "properties": { + "perfmon": { + "properties": { + "instance": { + "ignore_above": 1024, + "type": "keyword" + }, + "metrics": { + "properties": { + "*": { + "properties": { + "*": { + "type": "object" + } + } + } + } + } + } + }, + "service": { + "properties": { + "display_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "exit_code": { + "ignore_above": 1024, + "type": "keyword" + }, + "id": { + "ignore_above": 1024, + "type": "keyword" + }, + "name": { + "ignore_above": 1024, + "type": "keyword" + }, + "path_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "pid": { + "type": "long" + }, + "start_name": { + "ignore_above": 1024, + "type": "keyword" + }, + "start_type": { + "ignore_above": 1024, + "type": "keyword" + }, + "state": { + "ignore_above": 1024, + "type": "keyword" + }, + "uptime": { + "properties": { + "ms": { + "type": "long" + } + } + } + } + } + } + }, + "zookeeper": { + "properties": { + "connection": { + "properties": { + "interest_ops": { + "type": "long" + }, + "queued": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "mntr": { + "properties": { + "approximate_data_size": { + "type": "long" + }, + "ephemerals_count": { + "type": "long" + }, + "followers": { + "type": "long" + }, + "hostname": { + "ignore_above": 1024, + "type": "keyword" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "max_file_descriptor_count": { + "type": "long" + }, + "num_alive_connections": { + "type": "long" + }, + "open_file_descriptor_count": { + "type": "long" + }, + "outstanding_requests": { + "type": "long" + }, + "packets": { + "properties": { + "received": { + "type": "long" + }, + "sent": { + "type": "long" + } + } + }, + "pending_syncs": { + "type": "long" + }, + "server_state": { + "ignore_above": 1024, + "type": "keyword" + }, + "synced_followers": { + "type": "long" + }, + "version": { + "path": "service.version", + "type": "alias" + }, + "watch_count": { + "type": "long" + }, + "znode_count": { + "type": "long" + } + } + }, + "server": { + "properties": { + "connections": { + "type": "long" + }, + "count": { + "type": "long" + }, + "epoch": { + "type": "long" + }, + "latency": { + "properties": { + "avg": { + "type": "long" + }, + "max": { + "type": "long" + }, + "min": { + "type": "long" + } + } + }, + "mode": { + "ignore_above": 1024, + "type": "keyword" + }, + "node_count": { + "type": "long" + }, + "outstanding": { + "type": "long" + }, + "received": { + "type": "long" + }, + "sent": { + "type": "long" + }, + "version_date": { + "type": "date" + }, + "zxid": { + "ignore_above": 1024, + "type": "keyword" + } + } + } + } + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "lifecycle": { + "name": "metricbeat", + "rollover_alias": "metricbeat-8.0.0" + }, + "mapping": { + "total_fields": { + "limit": "10000" + } + }, + "max_docvalue_fields_search": "200", + "number_of_replicas": "1", + "number_of_shards": "1", + "query": { + "default_field": [ + "message", + "tags", + "agent.ephemeral_id", + "agent.id", + "agent.name", + "agent.type", + "agent.version", + "as.organization.name", + "client.address", + "client.as.organization.name", + "client.domain", + "client.geo.city_name", + "client.geo.continent_name", + "client.geo.country_iso_code", + "client.geo.country_name", + "client.geo.name", + "client.geo.region_iso_code", + "client.geo.region_name", + "client.mac", + "client.registered_domain", + "client.top_level_domain", + "client.user.domain", + "client.user.email", + "client.user.full_name", + "client.user.group.domain", + "client.user.group.id", + "client.user.group.name", + "client.user.hash", + "client.user.id", + "client.user.name", + "cloud.account.id", + "cloud.availability_zone", + "cloud.instance.id", + "cloud.instance.name", + "cloud.machine.type", + "cloud.provider", + "cloud.region", + "container.id", + "container.image.name", + "container.image.tag", + "container.name", + "container.runtime", + "destination.address", + "destination.as.organization.name", + "destination.domain", + "destination.geo.city_name", + "destination.geo.continent_name", + "destination.geo.country_iso_code", + "destination.geo.country_name", + "destination.geo.name", + "destination.geo.region_iso_code", + "destination.geo.region_name", + "destination.mac", + "destination.registered_domain", + "destination.top_level_domain", + "destination.user.domain", + "destination.user.email", + "destination.user.full_name", + "destination.user.group.domain", + "destination.user.group.id", + "destination.user.group.name", + "destination.user.hash", + "destination.user.id", + "destination.user.name", + "dns.answers.class", + "dns.answers.data", + "dns.answers.name", + "dns.answers.type", + "dns.header_flags", + "dns.id", + "dns.op_code", + "dns.question.class", + "dns.question.name", + "dns.question.registered_domain", + "dns.question.subdomain", + "dns.question.top_level_domain", + "dns.question.type", + "dns.response_code", + "dns.type", + "ecs.version", + "error.code", + "error.id", + "error.message", + "error.stack_trace", + "error.type", + "event.action", + "event.category", + "event.code", + "event.dataset", + "event.hash", + "event.id", + "event.kind", + "event.module", + "event.original", + "event.outcome", + "event.provider", + "event.timezone", + "event.type", + "file.device", + "file.directory", + "file.extension", + "file.gid", + "file.group", + "file.hash.md5", + "file.hash.sha1", + "file.hash.sha256", + "file.hash.sha512", + "file.inode", + "file.mode", + "file.name", + "file.owner", + "file.path", + "file.target_path", + "file.type", + "file.uid", + "geo.city_name", + "geo.continent_name", + "geo.country_iso_code", + "geo.country_name", + "geo.name", + "geo.region_iso_code", + "geo.region_name", + "group.domain", + "group.id", + "group.name", + "hash.md5", + "hash.sha1", + "hash.sha256", + "hash.sha512", + "host.architecture", + "host.geo.city_name", + "host.geo.continent_name", + "host.geo.country_iso_code", + "host.geo.country_name", + "host.geo.name", + "host.geo.region_iso_code", + "host.geo.region_name", + "host.hostname", + "host.id", + "host.mac", + "host.name", + "host.os.family", + "host.os.full", + "host.os.kernel", + "host.os.name", + "host.os.platform", + "host.os.version", + "host.type", + "host.user.domain", + "host.user.email", + "host.user.full_name", + "host.user.group.domain", + "host.user.group.id", + "host.user.group.name", + "host.user.hash", + "host.user.id", + "host.user.name", + "http.request.body.content", + "http.request.method", + "http.request.referrer", + "http.response.body.content", + "http.version", + "log.level", + "log.logger", + "log.origin.file.name", + "log.origin.function", + "log.original", + "log.syslog.facility.name", + "log.syslog.severity.name", + "network.application", + "network.community_id", + "network.direction", + "network.iana_number", + "network.name", + "network.protocol", + "network.transport", + "network.type", + "observer.geo.city_name", + "observer.geo.continent_name", + "observer.geo.country_iso_code", + "observer.geo.country_name", + "observer.geo.name", + "observer.geo.region_iso_code", + "observer.geo.region_name", + "observer.hostname", + "observer.mac", + "observer.name", + "observer.os.family", + "observer.os.full", + "observer.os.kernel", + "observer.os.name", + "observer.os.platform", + "observer.os.version", + "observer.product", + "observer.serial_number", + "observer.type", + "observer.vendor", + "observer.version", + "organization.id", + "organization.name", + "os.family", + "os.full", + "os.kernel", + "os.name", + "os.platform", + "os.version", + "package.architecture", + "package.checksum", + "package.description", + "package.install_scope", + "package.license", + "package.name", + "package.path", + "package.version", + "process.args", + "text", + "process.executable", + "process.hash.md5", + "process.hash.sha1", + "process.hash.sha256", + "process.hash.sha512", + "process.name", + "text", + "text", + "text", + "text", + "text", + "process.thread.name", + "process.title", + "process.working_directory", + "server.address", + "server.as.organization.name", + "server.domain", + "server.geo.city_name", + "server.geo.continent_name", + "server.geo.country_iso_code", + "server.geo.country_name", + "server.geo.name", + "server.geo.region_iso_code", + "server.geo.region_name", + "server.mac", + "server.registered_domain", + "server.top_level_domain", + "server.user.domain", + "server.user.email", + "server.user.full_name", + "server.user.group.domain", + "server.user.group.id", + "server.user.group.name", + "server.user.hash", + "server.user.id", + "server.user.name", + "service.ephemeral_id", + "service.id", + "service.name", + "service.node.name", + "service.state", + "service.type", + "service.version", + "source.address", + "source.as.organization.name", + "source.domain", + "source.geo.city_name", + "source.geo.continent_name", + "source.geo.country_iso_code", + "source.geo.country_name", + "source.geo.name", + "source.geo.region_iso_code", + "source.geo.region_name", + "source.mac", + "source.registered_domain", + "source.top_level_domain", + "source.user.domain", + "source.user.email", + "source.user.full_name", + "source.user.group.domain", + "source.user.group.id", + "source.user.group.name", + "source.user.hash", + "source.user.id", + "source.user.name", + "threat.framework", + "threat.tactic.id", + "threat.tactic.name", + "threat.tactic.reference", + "threat.technique.id", + "threat.technique.name", + "threat.technique.reference", + "tracing.trace.id", + "tracing.transaction.id", + "url.domain", + "url.extension", + "url.fragment", + "url.full", + "url.original", + "url.password", + "url.path", + "url.query", + "url.registered_domain", + "url.scheme", + "url.top_level_domain", + "url.username", + "user.domain", + "user.email", + "user.full_name", + "user.group.domain", + "user.group.id", + "user.group.name", + "user.hash", + "user.id", + "user.name", + "user_agent.device.name", + "user_agent.name", + "text", + "user_agent.original", + "user_agent.os.family", + "user_agent.os.full", + "user_agent.os.kernel", + "user_agent.os.name", + "user_agent.os.platform", + "user_agent.os.version", + "user_agent.version", + "text", + "agent.hostname", + "timeseries.instance", + "cloud.project.id", + "cloud.image.id", + "host.os.build", + "host.os.codename", + "kubernetes.pod.name", + "kubernetes.pod.uid", + "kubernetes.namespace", + "kubernetes.node.name", + "kubernetes.replicaset.name", + "kubernetes.deployment.name", + "kubernetes.statefulset.name", + "kubernetes.container.name", + "kubernetes.container.image", + "jolokia.agent.version", + "jolokia.agent.id", + "jolokia.server.product", + "jolokia.server.version", + "jolokia.server.vendor", + "jolokia.url", + "metricset.name", + "service.address", + "service.hostname", + "type", + "systemd.fragment_path", + "systemd.unit", + "aerospike.namespace.name", + "aerospike.namespace.node.host", + "aerospike.namespace.node.name", + "apache.status.hostname", + "beat.id", + "beat.type", + "beat.state.service.id", + "beat.state.service.name", + "beat.state.service.version", + "beat.state.input.names", + "beat.state.beat.host", + "beat.state.beat.name", + "beat.state.beat.type", + "beat.state.beat.uuid", + "beat.state.beat.version", + "beat.state.cluster.uuid", + "beat.state.host.containerized", + "beat.state.host.os.kernel", + "beat.state.host.os.name", + "beat.state.host.os.platform", + "beat.state.host.os.version", + "beat.state.module.names", + "beat.state.output.name", + "beat.state.queue.name", + "beat.stats.beat.name", + "beat.stats.beat.host", + "beat.stats.beat.type", + "beat.stats.beat.uuid", + "beat.stats.beat.version", + "beat.stats.info.ephemeral_id", + "beat.stats.cgroup.cpu.id", + "beat.stats.cgroup.cpuacct.id", + "beat.stats.cgroup.memory.id", + "beat.stats.libbeat.output.type", + "ceph.cluster_health.overall_status", + "ceph.cluster_health.timechecks.round.status", + "ceph.mgr_osd_pool_stats.pool_name", + "ceph.monitor_health.health", + "ceph.monitor_health.name", + "ceph.osd_df.name", + "ceph.osd_df.device_class", + "ceph.osd_tree.name", + "ceph.osd_tree.type", + "ceph.osd_tree.children", + "ceph.osd_tree.status", + "ceph.osd_tree.device_class", + "ceph.osd_tree.father", + "ceph.pool_disk.name", + "couchbase.bucket.name", + "couchbase.bucket.type", + "couchbase.node.hostname", + "docker.container.command", + "docker.container.status", + "docker.container.tags", + "docker.event.status", + "docker.event.id", + "docker.event.from", + "docker.event.type", + "docker.event.action", + "docker.event.actor.id", + "docker.healthcheck.status", + "docker.healthcheck.event.output", + "docker.image.id.current", + "docker.image.id.parent", + "docker.image.tags", + "docker.info.id", + "docker.network.interface", + "elasticsearch.cluster.name", + "elasticsearch.cluster.id", + "elasticsearch.cluster.state.id", + "elasticsearch.node.id", + "elasticsearch.node.name", + "elasticsearch.ccr.remote_cluster", + "elasticsearch.ccr.leader.index", + "elasticsearch.ccr.follower.index", + "elasticsearch.cluster.stats.version", + "elasticsearch.cluster.stats.state.nodes_hash", + "elasticsearch.cluster.stats.state.master_node", + "elasticsearch.cluster.stats.state.version", + "elasticsearch.cluster.stats.state.state_uuid", + "elasticsearch.cluster.stats.status", + "elasticsearch.cluster.stats.license.status", + "elasticsearch.cluster.stats.license.type", + "elasticsearch.enrich.executing_policy.name", + "elasticsearch.enrich.executing_policy.task.task", + "elasticsearch.enrich.executing_policy.task.action", + "elasticsearch.enrich.executing_policy.task.parent_task_id", + "elasticsearch.index.uuid", + "elasticsearch.index.status", + "elasticsearch.index.name", + "elasticsearch.index.recovery.index.files.percent", + "elasticsearch.index.recovery.name", + "elasticsearch.index.recovery.type", + "elasticsearch.index.recovery.stage", + "elasticsearch.index.recovery.translog.percent", + "elasticsearch.index.recovery.target.transport_address", + "elasticsearch.index.recovery.target.id", + "elasticsearch.index.recovery.target.host", + "elasticsearch.index.recovery.target.name", + "elasticsearch.index.recovery.source.transport_address", + "elasticsearch.index.recovery.source.id", + "elasticsearch.index.recovery.source.host", + "elasticsearch.index.recovery.source.name", + "elasticsearch.ml.job.id", + "elasticsearch.ml.job.state", + "elasticsearch.ml.job.model_size.memory_status", + "elasticsearch.node.version", + "elasticsearch.node.jvm.version", + "elasticsearch.node.stats.os.cgroup.memory.control_group", + "elasticsearch.cluster.pending_task.source", + "elasticsearch.shard.state", + "elasticsearch.shard.relocating_node.name", + "elasticsearch.shard.relocating_node.id", + "elasticsearch.shard.source_node.name", + "elasticsearch.shard.source_node.uuid", + "etcd.api_version", + "etcd.leader.leader", + "etcd.self.id", + "etcd.self.leaderinfo.leader", + "etcd.self.leaderinfo.starttime", + "etcd.self.leaderinfo.uptime", + "etcd.self.name", + "etcd.self.starttime", + "etcd.self.state", + "golang.expvar.cmdline", + "golang.heap.cmdline", + "graphite.server.example", + "haproxy.stat.status", + "haproxy.stat.service_name", + "haproxy.stat.cookie", + "haproxy.stat.load_balancing_algorithm", + "haproxy.stat.check.status", + "haproxy.stat.check.health.last", + "haproxy.stat.proxy.name", + "haproxy.stat.proxy.mode", + "haproxy.stat.agent.status", + "haproxy.stat.agent.description", + "haproxy.stat.agent.check.description", + "haproxy.stat.source.address", + "http.response.code", + "http.response.phrase", + "kafka.broker.address", + "kafka.topic.name", + "kafka.partition.topic_id", + "kafka.partition.topic_broker_id", + "kafka.broker.mbean", + "kafka.consumer.mbean", + "kafka.consumergroup.broker.address", + "kafka.consumergroup.id", + "kafka.consumergroup.topic", + "kafka.consumergroup.meta", + "kafka.consumergroup.client.id", + "kafka.consumergroup.client.host", + "kafka.consumergroup.client.member_id", + "kafka.partition.topic.name", + "kafka.partition.broker.address", + "kafka.producer.mbean", + "kibana.settings.uuid", + "kibana.settings.name", + "kibana.settings.index", + "kibana.settings.host", + "kibana.settings.transport_address", + "kibana.settings.version", + "kibana.settings.status", + "kibana.settings.locale", + "kibana.stats.kibana.status", + "kibana.stats.usage.index", + "kibana.stats.name", + "kibana.stats.index", + "kibana.stats.host.name", + "kibana.stats.status", + "kibana.stats.os.distro", + "kibana.stats.os.distroRelease", + "kibana.stats.os.platform", + "kibana.stats.os.platformRelease", + "kibana.status.name", + "kibana.status.status.overall.state", + "kubernetes.apiserver.request.client", + "kubernetes.apiserver.request.resource", + "kubernetes.apiserver.request.subresource", + "kubernetes.apiserver.request.scope", + "kubernetes.apiserver.request.verb", + "kubernetes.apiserver.request.code", + "kubernetes.apiserver.request.content_type", + "kubernetes.apiserver.request.dry_run", + "kubernetes.apiserver.request.kind", + "kubernetes.apiserver.request.component", + "kubernetes.apiserver.request.group", + "kubernetes.apiserver.request.version", + "kubernetes.apiserver.request.handler", + "kubernetes.apiserver.request.method", + "kubernetes.apiserver.request.host", + "kubernetes.controllermanager.handler", + "kubernetes.controllermanager.code", + "kubernetes.controllermanager.method", + "kubernetes.controllermanager.host", + "kubernetes.controllermanager.name", + "kubernetes.controllermanager.zone", + "kubernetes.event.message", + "kubernetes.event.reason", + "kubernetes.event.type", + "kubernetes.event.source.component", + "kubernetes.event.source.host", + "kubernetes.event.metadata.generate_name", + "kubernetes.event.metadata.name", + "kubernetes.event.metadata.namespace", + "kubernetes.event.metadata.resource_version", + "kubernetes.event.metadata.uid", + "kubernetes.event.metadata.self_link", + "kubernetes.event.involved_object.api_version", + "kubernetes.event.involved_object.kind", + "kubernetes.event.involved_object.name", + "kubernetes.event.involved_object.resource_version", + "kubernetes.event.involved_object.uid", + "kubernetes.proxy.handler", + "kubernetes.proxy.code", + "kubernetes.proxy.method", + "kubernetes.proxy.host", + "kubernetes.scheduler.handler", + "kubernetes.scheduler.code", + "kubernetes.scheduler.method", + "kubernetes.scheduler.host", + "kubernetes.scheduler.name", + "kubernetes.scheduler.result", + "kubernetes.scheduler.operation", + "kubernetes.container.id", + "kubernetes.container.status.phase", + "kubernetes.container.status.reason", + "kubernetes.cronjob.name", + "kubernetes.cronjob.schedule", + "kubernetes.cronjob.concurrency", + "kubernetes.daemonset.name", + "kubernetes.node.status.ready", + "kubernetes.node.status.memory_pressure", + "kubernetes.node.status.disk_pressure", + "kubernetes.node.status.out_of_disk", + "kubernetes.node.status.pid_pressure", + "kubernetes.persistentvolume.name", + "kubernetes.persistentvolume.phase", + "kubernetes.persistentvolume.storage_class", + "kubernetes.persistentvolumeclaim.name", + "kubernetes.persistentvolumeclaim.volume_name", + "kubernetes.persistentvolumeclaim.phase", + "kubernetes.persistentvolumeclaim.access_mode", + "kubernetes.persistentvolumeclaim.storage_class", + "kubernetes.pod.status.phase", + "kubernetes.pod.status.ready", + "kubernetes.pod.status.scheduled", + "kubernetes.resourcequota.name", + "kubernetes.resourcequota.type", + "kubernetes.resourcequota.resource", + "kubernetes.service.name", + "kubernetes.service.cluster_ip", + "kubernetes.service.external_name", + "kubernetes.service.external_ip", + "kubernetes.service.load_balancer_ip", + "kubernetes.service.type", + "kubernetes.service.ingress_ip", + "kubernetes.service.ingress_hostname", + "kubernetes.storageclass.name", + "kubernetes.storageclass.provisioner", + "kubernetes.storageclass.reclaim_policy", + "kubernetes.storageclass.volume_binding_mode", + "kubernetes.system.container", + "kubernetes.volume.name", + "kvm.name", + "kvm.dommemstat.stat.name", + "kvm.dommemstat.name", + "kvm.status.state", + "logstash.node.state.pipeline.id", + "logstash.node.state.pipeline.hash", + "logstash.node.jvm.version", + "logstash.node.stats.logstash.uuid", + "logstash.node.stats.logstash.version", + "logstash.node.stats.pipelines.id", + "logstash.node.stats.pipelines.hash", + "logstash.node.stats.pipelines.queue.type", + "logstash.node.stats.pipelines.vertices.pipeline_ephemeral_id", + "logstash.node.stats.pipelines.vertices.id", + "mongodb.collstats.db", + "mongodb.collstats.collection", + "mongodb.collstats.name", + "mongodb.dbstats.db", + "mongodb.metrics.replication.executor.network_interface", + "mongodb.replstatus.set_name", + "mongodb.replstatus.members.primary.host", + "mongodb.replstatus.members.primary.optime", + "mongodb.replstatus.members.secondary.hosts", + "mongodb.replstatus.members.secondary.optimes", + "mongodb.replstatus.members.recovering.hosts", + "mongodb.replstatus.members.unknown.hosts", + "mongodb.replstatus.members.startup2.hosts", + "mongodb.replstatus.members.arbiter.hosts", + "mongodb.replstatus.members.down.hosts", + "mongodb.replstatus.members.rollback.hosts", + "mongodb.replstatus.members.unhealthy.hosts", + "mongodb.status.storage_engine.name", + "munin.plugin.name", + "mysql.galera_status.cluster.status", + "mysql.galera_status.connected", + "mysql.galera_status.evs.evict", + "mysql.galera_status.evs.state", + "mysql.galera_status.local.state", + "mysql.galera_status.ready", + "mysql.performance.events_statements.digest", + "mysql.performance.table_io_waits.object.schema", + "mysql.performance.table_io_waits.object.name", + "mysql.performance.table_io_waits.index.name", + "nats.server.id", + "nats.connection.name", + "nats.route.remote_id", + "nginx.stubstatus.hostname", + "php_fpm.pool.name", + "php_fpm.pool.process_manager", + "php_fpm.process.state", + "php_fpm.process.script", + "postgresql.activity.database.name", + "postgresql.activity.user.name", + "postgresql.activity.application_name", + "postgresql.activity.client.address", + "postgresql.activity.client.hostname", + "postgresql.activity.backend_type", + "postgresql.activity.state", + "postgresql.activity.query", + "postgresql.activity.wait_event", + "postgresql.activity.wait_event_type", + "postgresql.database.name", + "postgresql.statement.query.text", + "rabbitmq.vhost", + "rabbitmq.connection.name", + "rabbitmq.connection.state", + "rabbitmq.connection.type", + "rabbitmq.connection.host", + "rabbitmq.connection.peer.host", + "rabbitmq.connection.client_provided.name", + "rabbitmq.exchange.name", + "rabbitmq.node.name", + "rabbitmq.node.type", + "rabbitmq.queue.name", + "rabbitmq.queue.state", + "redis.info.memory.max.policy", + "redis.info.memory.allocator", + "redis.info.persistence.rdb.bgsave.last_status", + "redis.info.persistence.aof.bgrewrite.last_status", + "redis.info.persistence.aof.write.last_status", + "redis.info.replication.role", + "redis.info.replication.master.link_status", + "redis.info.server.git_sha1", + "redis.info.server.git_dirty", + "redis.info.server.build_id", + "redis.info.server.mode", + "redis.info.server.arch_bits", + "redis.info.server.multiplexing_api", + "redis.info.server.gcc_version", + "redis.info.server.run_id", + "redis.info.server.config_file", + "redis.key.name", + "redis.key.id", + "redis.key.type", + "redis.keyspace.id", + "process.state", + "system.diskio.name", + "system.diskio.serial_number", + "system.filesystem.device_name", + "system.filesystem.type", + "system.filesystem.mount_point", + "system.network.name", + "system.process.state", + "system.process.cmdline", + "system.process.cgroup.id", + "system.process.cgroup.path", + "system.process.cgroup.cpu.id", + "system.process.cgroup.cpu.path", + "system.process.cgroup.cpuacct.id", + "system.process.cgroup.cpuacct.path", + "system.process.cgroup.memory.id", + "system.process.cgroup.memory.path", + "system.process.cgroup.blkio.id", + "system.process.cgroup.blkio.path", + "system.raid.name", + "system.raid.status", + "system.raid.level", + "system.raid.sync_action", + "system.service.name", + "system.service.load_state", + "system.service.state", + "system.service.sub_state", + "system.service.exec_code", + "system.service.unit_file.state", + "system.service.unit_file.vendor_preset", + "system.socket.remote.host", + "system.socket.remote.etld_plus_one", + "system.socket.remote.host_error", + "system.socket.process.cmdline", + "system.users.id", + "system.users.seat", + "system.users.path", + "system.users.type", + "system.users.service", + "system.users.state", + "system.users.scope", + "system.users.remote_host", + "uwsgi.status.worker.status", + "vsphere.datastore.name", + "vsphere.datastore.fstype", + "vsphere.host.name", + "vsphere.host.network_names", + "vsphere.virtualmachine.host.id", + "vsphere.virtualmachine.host.hostname", + "vsphere.virtualmachine.name", + "vsphere.virtualmachine.os", + "vsphere.virtualmachine.network_names", + "windows.perfmon.instance", + "windows.service.id", + "windows.service.name", + "windows.service.display_name", + "windows.service.start_type", + "windows.service.start_name", + "windows.service.path_name", + "windows.service.state", + "windows.service.exit_code", + "zookeeper.mntr.hostname", + "zookeeper.mntr.server_state", + "zookeeper.server.mode", + "zookeeper.server.zxid", + "fields.*" + ] + }, + "refresh_interval": "5s", + "routing": { + "allocation": { + "include": { + "_tier_preference": "data_content" + } + } + } + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-es-6-2019.02.04", + "mappings": { + "date_detection": false, + "dynamic": false, + "properties": { + "ccr_stats": { + "properties": { + "follower_global_checkpoint": { + "type": "long" + }, + "follower_index": { + "type": "keyword" + }, + "leader_global_checkpoint": { + "type": "long" + }, + "leader_index": { + "type": "keyword" + }, + "leader_max_seq_no": { + "type": "long" + }, + "operations_written": { + "type": "long" + }, + "remote_cluster": { + "type": "keyword" + }, + "shard_id": { + "type": "integer" + }, + "time_since_last_read_millis": { + "type": "long" + } + } + }, + "cluster_state": { + "properties": { + "nodes_hash": { + "type": "integer" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "index_stats": { + "properties": { + "index": { + "type": "keyword" + }, + "primaries": { + "properties": { + "docs": { + "properties": { + "count": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "merges": { + "properties": { + "total_size_in_bytes": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "refresh": { + "properties": { + "total_time_in_millis": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + }, + "store": { + "properties": { + "size_in_bytes": { + "type": "long" + } + } + } + } + } + } + }, + "indices_stats": { + "properties": { + "_all": { + "properties": { + "primaries": { + "properties": { + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "indexing": { + "properties": { + "index_total": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "job_stats": { + "properties": { + "job_id": { + "type": "keyword" + } + } + }, + "node_stats": { + "properties": { + "fs": { + "properties": { + "io_stats": { + "properties": { + "total": { + "properties": { + "operations": { + "type": "long" + }, + "read_operations": { + "type": "long" + }, + "write_operations": { + "type": "long" + } + } + } + } + }, + "total": { + "properties": { + "available_in_bytes": { + "type": "long" + } + } + } + } + }, + "indices": { + "properties": { + "fielddata": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "indexing": { + "properties": { + "index_time_in_millis": { + "type": "long" + }, + "index_total": { + "type": "long" + }, + "throttle_time_in_millis": { + "type": "long" + } + } + }, + "query_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "request_cache": { + "properties": { + "memory_size_in_bytes": { + "type": "long" + } + } + }, + "search": { + "properties": { + "query_time_in_millis": { + "type": "long" + }, + "query_total": { + "type": "long" + } + } + }, + "segments": { + "properties": { + "count": { + "type": "integer" + }, + "doc_values_memory_in_bytes": { + "type": "long" + }, + "fixed_bit_set_memory_in_bytes": { + "type": "long" + }, + "index_writer_memory_in_bytes": { + "type": "long" + }, + "memory_in_bytes": { + "type": "long" + }, + "norms_memory_in_bytes": { + "type": "long" + }, + "points_memory_in_bytes": { + "type": "long" + }, + "stored_fields_memory_in_bytes": { + "type": "long" + }, + "term_vectors_memory_in_bytes": { + "type": "long" + }, + "terms_memory_in_bytes": { + "type": "long" + }, + "version_map_memory_in_bytes": { + "type": "long" + } + } + } + } + }, + "jvm": { + "properties": { + "gc": { + "properties": { + "collectors": { + "properties": { + "old": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + }, + "young": { + "properties": { + "collection_count": { + "type": "long" + }, + "collection_time_in_millis": { + "type": "long" + } + } + } + } + } + } + }, + "mem": { + "properties": { + "heap_max_in_bytes": { + "type": "long" + }, + "heap_used_in_bytes": { + "type": "long" + }, + "heap_used_percent": { + "type": "half_float" + } + } + } + } + }, + "node_id": { + "type": "keyword" + }, + "os": { + "properties": { + "cgroup": { + "properties": { + "cpu": { + "properties": { + "cfs_quota_micros": { + "type": "long" + }, + "stat": { + "properties": { + "number_of_elapsed_periods": { + "type": "long" + }, + "number_of_times_throttled": { + "type": "long" + }, + "time_throttled_nanos": { + "type": "long" + } + } + } + } + }, + "cpuacct": { + "properties": { + "usage_nanos": { + "type": "long" + } + } + } + } + }, + "cpu": { + "properties": { + "load_average": { + "properties": { + "1m": { + "type": "half_float" + } + } + } + } + } + } + }, + "process": { + "properties": { + "cpu": { + "properties": { + "percent": { + "type": "half_float" + } + } + } + } + }, + "thread_pool": { + "properties": { + "bulk": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "get": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "index": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "search": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + }, + "write": { + "properties": { + "queue": { + "type": "integer" + }, + "rejected": { + "type": "long" + } + } + } + } + } + } + }, + "shard": { + "properties": { + "index": { + "type": "keyword" + }, + "node": { + "type": "keyword" + }, + "primary": { + "type": "boolean" + }, + "state": { + "type": "keyword" + } + } + }, + "source_node": { + "properties": { + "name": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + } + } + }, + "state_uuid": { + "type": "keyword" + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-alerts-6", + "mappings": { + "dynamic": false, + "properties": { + "message": { + "type": "text" + }, + "metadata": { + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "link": { + "type": "keyword" + }, + "severity": { + "type": "short" + }, + "type": { + "type": "keyword" + }, + "version": { + "type": "keyword" + }, + "watch": { + "type": "keyword" + } + } + }, + "prefix": { + "type": "text" + }, + "resolved_timestamp": { + "type": "date" + }, + "suffix": { + "type": "text" + }, + "timestamp": { + "type": "date" + }, + "update_timestamp": { + "type": "date" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-kibana-6-2019.02.04", + "mappings": { + "dynamic": false, + "properties": { + "cluster_uuid": { + "type": "keyword" + }, + "kibana_stats": { + "properties": { + "concurrent_connections": { + "type": "long" + }, + "kibana": { + "properties": { + "status": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "os": { + "properties": { + "load": { + "properties": { + "15m": { + "type": "half_float" + }, + "1m": { + "type": "half_float" + }, + "5m": { + "type": "half_float" + } + } + } + } + }, + "process": { + "properties": { + "event_loop_delay": { + "type": "float" + }, + "memory": { + "properties": { + "heap": { + "properties": { + "size_limit": { + "type": "float" + } + } + }, + "resident_set_size_in_bytes": { + "type": "float" + } + } + } + } + }, + "requests": { + "properties": { + "disconnects": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "response_times": { + "properties": { + "average": { + "type": "float" + }, + "max": { + "type": "float" + } + } + }, + "timestamp": { + "type": "date" + }, + "usage": { + "properties": { + "index": { + "type": "keyword" + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} + +{ + "type": "index", + "value": { + "index": ".monitoring-beats-6-2019.02.04", + "mappings": { + "dynamic": false, + "properties": { + "beats_state": { + "properties": { + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "beats_stats": { + "properties": { + "beat": { + "properties": { + "type": { + "type": "keyword" + }, + "uuid": { + "type": "keyword" + }, + "version": { + "type": "keyword" + } + } + }, + "metrics": { + "properties": { + "apm-server": { + "properties": { + "processor": { + "properties": { + "error": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "metric": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "span": { + "properties": { + "transformations": { + "type": "long" + } + } + }, + "transaction": { + "properties": { + "transformations": { + "type": "long" + } + } + } + } + }, + "server": { + "properties": { + "request": { + "properties": { + "count": { + "type": "long" + } + } + }, + "response": { + "properties": { + "count": { + "type": "long" + }, + "errors": { + "properties": { + "closed": { + "type": "long" + }, + "concurrency": { + "type": "long" + }, + "decode": { + "type": "long" + }, + "forbidden": { + "type": "long" + }, + "internal": { + "type": "long" + }, + "method": { + "type": "long" + }, + "queue": { + "type": "long" + }, + "ratelimit": { + "type": "long" + }, + "toolarge": { + "type": "long" + }, + "unauthorized": { + "type": "long" + }, + "validate": { + "type": "long" + } + } + }, + "valid": { + "properties": { + "accepted": { + "type": "long" + }, + "ok": { + "type": "long" + } + } + } + } + } + } + } + } + }, + "beat": { + "properties": { + "cpu": { + "properties": { + "total": { + "properties": { + "value": { + "type": "long" + } + } + } + } + }, + "handles": { + "properties": { + "open": { + "type": "long" + } + } + }, + "info": { + "properties": { + "ephemeral_id": { + "type": "keyword" + } + } + }, + "memstats": { + "properties": { + "gc_next": { + "type": "long" + }, + "memory_alloc": { + "type": "long" + }, + "memory_total": { + "type": "long" + }, + "rss": { + "type": "long" + } + } + } + } + }, + "libbeat": { + "properties": { + "output": { + "properties": { + "events": { + "properties": { + "acked": { + "type": "long" + }, + "active": { + "type": "long" + }, + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "total": { + "type": "long" + } + } + }, + "read": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + }, + "write": { + "properties": { + "bytes": { + "type": "long" + }, + "errors": { + "type": "long" + } + } + } + } + }, + "pipeline": { + "properties": { + "events": { + "properties": { + "dropped": { + "type": "long" + }, + "failed": { + "type": "long" + }, + "published": { + "type": "long" + }, + "retry": { + "type": "long" + }, + "total": { + "type": "long" + } + } + } + } + } + } + }, + "system": { + "properties": { + "load": { + "properties": { + "1": { + "type": "double" + }, + "15": { + "type": "double" + }, + "5": { + "type": "double" + } + } + } + } + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + } + } + }, + "cluster_uuid": { + "type": "keyword" + }, + "metricset": { + "properties": { + "name": { + "fields": { + "keyword": { + "ignore_above": 256, + "type": "keyword" + } + }, + "type": "text" + } + } + }, + "timestamp": { + "format": "date_time", + "type": "date" + }, + "type": { + "type": "keyword" + } + } + }, + "settings": { + "index": { + "codec": "best_compression", + "format": "6", + "number_of_replicas": "1", + "number_of_shards": "1" + } + } + } +} \ No newline at end of file diff --git a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/alerts_list.ts b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/alerts_list.ts index 7b760dfb8b6a..cbb1d2729e74 100644 --- a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/alerts_list.ts +++ b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/alerts_list.ts @@ -50,12 +50,25 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { return createdAction; } + async function muteAlert(alertId: string) { + const { body: alert } = await supertest + .post(`/api/alerting/rule/${alertId}/_mute_all`) + .set('kbn-xsrf', 'foo'); + return alert; + } + + async function disableAlert(alertId: string) { + const { body: alert } = await supertest + .post(`/api/alerting/rule/${alertId}/_disable`) + .set('kbn-xsrf', 'foo'); + return alert; + } + async function refreshAlertsList() { await testSubjects.click('rulesTab'); } - // FLAKY: https://github.com/elastic/kibana/issues/95591 - describe.skip('alerts list', function () { + describe('alerts list', function () { before(async () => { await pageObjects.common.navigateToApp('triggersActions'); await testSubjects.click('rulesTab'); @@ -138,25 +151,13 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { it('should re-enable single alert', async () => { const createdAlert = await createAlert(); + await disableAlert(createdAlert.id); await refreshAlertsList(); await pageObjects.triggersActionsUI.searchAlerts(createdAlert.name); await testSubjects.click('collapsedItemActions'); await pageObjects.triggersActionsUI.toggleSwitch('disableSwitch'); - - await pageObjects.triggersActionsUI.ensureRuleActionToggleApplied( - createdAlert.name, - 'disableSwitch', - 'true' - ); - - await pageObjects.triggersActionsUI.searchAlerts(createdAlert.name); - - await testSubjects.click('collapsedItemActions'); - - await pageObjects.triggersActionsUI.toggleSwitch('disableSwitch'); - await pageObjects.triggersActionsUI.ensureRuleActionToggleApplied( createdAlert.name, 'disableSwitch', @@ -172,7 +173,6 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { await testSubjects.click('collapsedItemActions'); await pageObjects.triggersActionsUI.toggleSwitch('muteSwitch'); - await pageObjects.triggersActionsUI.ensureRuleActionToggleApplied( createdAlert.name, 'muteSwitch', @@ -182,25 +182,14 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { it('should unmute single alert', async () => { const createdAlert = await createAlert(); + await muteAlert(createdAlert.id); await refreshAlertsList(); - await pageObjects.triggersActionsUI.searchAlerts(createdAlert.name); - - await testSubjects.click('collapsedItemActions'); - - await pageObjects.triggersActionsUI.toggleSwitch('muteSwitch'); - - await pageObjects.triggersActionsUI.ensureRuleActionToggleApplied( - createdAlert.name, - 'muteSwitch', - 'true' - ); await pageObjects.triggersActionsUI.searchAlerts(createdAlert.name); await testSubjects.click('collapsedItemActions'); await pageObjects.triggersActionsUI.toggleSwitch('muteSwitch'); - await pageObjects.triggersActionsUI.ensureRuleActionToggleApplied( createdAlert.name, 'muteSwitch', diff --git a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts index 97f8b3f61dc8..b38b605bc1b6 100644 --- a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts +++ b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts @@ -93,14 +93,18 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { async function getAlertInstanceSummary(alertId: string) { const { body: summary } = await supertest - .get(`/internal/alerting/rule/${alertId}/_alert_summary`) + .get(`/internal/alerting/rule/${encodeURIComponent(alertId)}/_alert_summary`) .expect(200); return summary; } async function muteAlertInstance(alertId: string, alertInstanceId: string) { const { body: response } = await supertest - .post(`/api/alerting/rule/${alertId}/alert/${alertInstanceId}/_mute`) + .post( + `/api/alerting/rule/${encodeURIComponent(alertId)}/alert/${encodeURIComponent( + alertInstanceId + )}/_mute` + ) .set('kbn-xsrf', 'foo') .expect(204); @@ -640,17 +644,17 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { it('renders the muted inactive alert instances', async () => { // mute an alert instance that doesn't exist - await muteAlertInstance(alert.id, 'eu-east'); + await muteAlertInstance(alert.id, 'eu/east'); // refresh to see alert await browser.refresh(); const instancesList: any[] = await pageObjects.alertDetailsUI.getAlertInstancesList(); expect( - instancesList.filter((alertInstance) => alertInstance.instance === 'eu-east') + instancesList.filter((alertInstance) => alertInstance.instance === 'eu/east') ).to.eql([ { - instance: 'eu-east', + instance: 'eu/east', status: 'OK', start: '', duration: '', @@ -693,14 +697,14 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); it('allows the user unmute an inactive instance', async () => { - log.debug(`Ensuring eu-east is muted`); - await pageObjects.alertDetailsUI.ensureAlertInstanceMute('eu-east', true); + log.debug(`Ensuring eu/east is muted`); + await pageObjects.alertDetailsUI.ensureAlertInstanceMute('eu/east', true); - log.debug(`Unmuting eu-east`); - await pageObjects.alertDetailsUI.clickAlertInstanceMuteButton('eu-east'); + log.debug(`Unmuting eu/east`); + await pageObjects.alertDetailsUI.clickAlertInstanceMuteButton('eu/east'); - log.debug(`Ensuring eu-east is removed from list`); - await pageObjects.alertDetailsUI.ensureAlertInstanceExistance('eu-east', false); + log.debug(`Ensuring eu/east is removed from list`); + await pageObjects.alertDetailsUI.ensureAlertInstanceExistance('eu/east', false); }); }); diff --git a/x-pack/test/functional_with_es_ssl/page_objects/triggers_actions_ui_page.ts b/x-pack/test/functional_with_es_ssl/page_objects/triggers_actions_ui_page.ts index 5fa442e28903..8eeabf1f5d67 100644 --- a/x-pack/test/functional_with_es_ssl/page_objects/triggers_actions_ui_page.ts +++ b/x-pack/test/functional_with_es_ssl/page_objects/triggers_actions_ui_page.ts @@ -146,13 +146,7 @@ export function TriggersActionsPageProvider({ getService }: FtrProviderContext) }, async toggleSwitch(testSubject: string) { const switchBtn = await testSubjects.find(testSubject); - const valueBefore = await switchBtn.getAttribute('aria-checked'); await switchBtn.click(); - await retry.try(async () => { - const switchBtnAfter = await testSubjects.find(testSubject); - const valueAfter = await switchBtnAfter.getAttribute('aria-checked'); - expect(valueAfter).not.to.eql(valueBefore); - }); }, async clickCreateAlertButton() { const createBtn = await find.byCssSelector( @@ -194,9 +188,10 @@ export function TriggersActionsPageProvider({ getService }: FtrProviderContext) switchName: string, shouldBeCheckedAsString: string ) { - await retry.try(async () => { + await retry.tryForTime(30000, async () => { await this.searchAlerts(ruleName); await testSubjects.click('collapsedItemActions'); + const switchControl = await testSubjects.find(switchName); const isChecked = await switchControl.getAttribute('aria-checked'); expect(isChecked).to.eql(shouldBeCheckedAsString); diff --git a/yarn.lock b/yarn.lock index bc87ff50c55e..1c33d64afbec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1359,10 +1359,10 @@ dependencies: object-hash "^1.3.0" -"@elastic/charts@28.2.0": - version "28.2.0" - resolved "https://registry.yarnpkg.com/@elastic/charts/-/charts-28.2.0.tgz#3de65668242ed680f3acd72e2befb01a530c01c2" - integrity sha512-18fhbqnb7/5OrpgcoWcnZAfG9O7isRBAkjt2c+ycZoaTsSmPpSRAIlMxAMt36ZXxA7yaSwUVeI28uuKqb1odZg== +"@elastic/charts@29.0.0": + version "29.0.0" + resolved "https://registry.yarnpkg.com/@elastic/charts/-/charts-29.0.0.tgz#6f4ea5bba2caab9700e900fc0bb72685306d1184" + integrity sha512-df8fYiwOWzO7boIBXMsiWY9oHw5//WZJ2MogJ/38pZeDMRHwjIvQCzj1NL641ijFlFBfWwPSmPur9vbF5xTjbg== dependencies: "@popperjs/core" "^2.4.0" chroma-js "^2.1.0" @@ -1550,7 +1550,7 @@ "@types/node-jose" "1.1.0" node-jose "1.1.0" -"@elastic/safer-lodash-set@link:packages/elastic-safer-lodash-set": +"@elastic/safer-lodash-set@link:bazel-bin/packages/elastic-safer-lodash-set/npm_module": version "0.0.0" uid "" @@ -2585,7 +2585,7 @@ version "0.0.0" uid "" -"@kbn/babel-code-parser@link:packages/kbn-babel-code-parser": +"@kbn/babel-code-parser@link:bazel-bin/packages/kbn-babel-code-parser/npm_module": version "0.0.0" uid ""